Multiple choice

As per standards, which of the following statements should not be used in a structured program?

  1. For-Next

  2. Goto

  3. If-then-else

  4. Repeat-unit

  5. Break

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

Structured programming emphasizes clear, logical flow using control structures like loops and conditionals. The 'Goto' statement is discouraged because it creates 'spaghetti code' that is difficult to read and maintain.