Multiple choice

The statements executed before the condition are tested in

  1. Do While……..loop

  2. Do loop While…………

  3. For……….Next loop

  4. For Each …………Next Loop

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

In Do...Loop While, the statements execute first, then the condition is tested. This guarantees at least one execution, unlike Do While...Loop where the condition is tested before execution.