Multiple choice

A control structure used to create loops is

  1. sequence

  2. choice

  3. iteration

  4. none of the above

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

Iteration is the control structure that allows a block of code to be executed repeatedly, forming a loop. Sequence is the default execution order, and choice refers to conditional branching.