Multiple choice

Structured programs do not include

  1. Loops

  2. GOTO statements

  3. Do-While statements

  4. All of the above

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

Structured programming is a programming paradigm that aims to improve code clarity and quality by reducing the use of GOTO statements. Instead, it uses control structures like loops (for, while), conditionals (if-then-else), and subroutines. The absence of GOTO statements is a defining characteristic of structured programming.