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

If Symbol

The If symbol checks the provided boolean expression and branches to the True or False branch depending on whether the condition is met or not.

This symbol is also known as the branching symbol. The If symbol is a diamond shape with two branches.

  • True branch
  • False branch

 

Flowgorithm If Symbol

 

Specify the condition ( conditional expression ) in the diamond block. The True branch is executed when the condition is met, and the False branch is executed when it is not.