Course Content
Flowgorithm Expressions
Flowgorithm Expressions
0/1
Debug Flowgorithm Flowchart
Debug Flowgorithm Flowchart
0/1
Flowgorithm Control Statements
Flowgorithm Control Statements
0/1
Flowgorithm Loops
Flowgorithm Loops
0/1
Flowgorithm For Loop
Flowgorithm For Loop
0/1
Flowgorithm While Loop
Flowgorithm While Loop
0/1
Flowgorithm Do Loop
Flowgorithm Do Loop
0/1
Flowgorithm Nested Loops
Flowgorithm Nested Loops
0/1
Export Flowgorithm Flowchart
Export Flowgorithm Flowchart
0/1
Flowgorithm Intermediate
About Lesson

Flowgorithm Expressions

Flowgorithm Expressions are used to perform calculations, make decisions, and control the flow of the program. The building blocks of expressions are:

  • Operands
  • Operators
  • Symbols
  • Literals
  • Method calls

An expression evaluates to a single value. Flowgorithm Expressions can be broadly classified as:

  • Basic/Simple Expressions
  • Compound Expressions

Basic Expressions

Basic expressions cannot be reduced or simplified into smaller expressions.

General examples  are

Single literal values

25

a++

“Hello”

Compound Expressions 

Compound expressions are made up of basic expressions and can be simplified or broken down into several simple expressions.

Examples:

num1 + num2

( a + (b*c))

Â