Understand how a program can choose which instruction runs next.
print("First")
print("Second")
Line-by-line explanation- The first line runs first.
- The second line runs next.
- The output follows that same order.
A decision can change that path. Think of a road junction: the program chooses one road based on a yes-or-no condition.