Concept Flow - Else–if ladder
Start
Check condition1
|Yes
Execute block1
End
No
Check condition2
|Yes
Execute block2
End
No
Check condition3
|Yes
Execute block3
End
No
Execute else block
End
The program checks each condition in order. When one condition is true, it runs that block and skips the rest. If none are true, it runs the else block.