Multiple choice

The flow of a code can be controlled by

  1. conditional statements

  2. loop structures

  3. methods

  4. procedures

Reveal answer Fill a bubble to check yourself
A Correct answer
Explanation

Conditional statements like If...Then...Else allow code to execute different paths based on conditions. This controls program flow by making decisions at runtime. While loops also control flow, conditionals are the primary mechanism for branching logic.