Concept Flow - if-elif-else
Start
Check if condition1
|Yes
Execute block1
End
No
Check if condition2
|Yes
Execute block2
End
No
Execute else block
End
The script checks the first condition; if true, it runs its block and ends. Otherwise, it checks the next condition(s). If none match, it runs the else block.