Concept Flow - If–else statement
Start
Evaluate condition
Execute if-block
End if-block
Execute else-block
End else-block
Continue with rest of program
The program checks a condition. If true, it runs the 'if' part; if false, it runs the 'else' part. Then it continues.