Concept Flow - If statement execution flow
Evaluate condition
Condition True?
No→Skip if block
Yes
Execute if block
Continue with rest of code
The program checks the condition. If true, it runs the code inside the if block. If false, it skips it and continues.