Multiple choice technology testing

Which looping statement is guaranteed to execute at least once

  1. For…NEXT

  2. While…Wend

  3. Loop

  4. Do…While

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

Do...While loops evaluate the condition after executing the loop body, ensuring the code inside runs at least once before checking whether to continue. For loops, While loops, and basic Loop statements check conditions before execution.