Concept Flow - If-elseif-else statements
Start
Check if condition1
|Yes
Execute block1
End
No
Check if condition2
|Yes
Execute block2
End
No
Execute else block
End
The program checks conditions in order. It runs the first true block and skips the rest. If none are true, it runs the else block.