Multiple choice Which of the following is not a looping structure? IF-ELSE DO-WHILE FOR-NEXT 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.