Multiple choice

Which of the following control structures is used in every program?

  1. Repetition

  2. Selection

  3. Sequence

  4. Switching

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

Sequence is fundamental - every program executes statements sequentially (one after another) by default. Even the simplest program must execute statements in order. Selection (if/else) and repetition (loops) are optional control structures that programs may or may not use. "Switching" is not a standard control structure category.