Multiple choice

Which of the following is not a looping structure?

  1. IF-ELSE

  2. DO-WHILE

  3. FOR-NEXT

  4. WHILE

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

IF-ELSE is a conditional branching structure that executes different code blocks based on a condition. It does not repeat code execution. DO-WHILE, FOR-NEXT, and WHILE are all looping constructs that repeatedly execute code blocks.