Concept Flow - Nested conditional execution
Start
Check Condition 1
No→Else Block of Condition 1
|Yes
Check Condition 2
No→Else Block of Condition 2
|Yes
Execute Block A
→End
First, the program checks the outer condition. If true, it checks the inner condition and executes code accordingly. If the outer condition is false, it executes the else block.