Concept Flow - Nested conditional statements
Start
Check Condition 1
|Yes
Check Condition 2
|Yes
Execute Block A
End
No
Execute Block B
End
No
Execute Block C
End
First, check the outer condition. If true, check the inner condition. Depending on inner condition, run different code. If outer condition is false, run another code block.