Multiple choice

What is control flow? Something that...

  1. makes code more readable

  2. allows us to select between multiple outcomes

  3. allows functions to be called

  4. allows the interpreter to print values to the console

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

Control flow refers to the order in which individual statements, instructions, or function calls are executed. It allows programs to make decisions (branching) and repeat actions (looping) based on conditions.