Multiple choice The statements executed before the condition are tested in Do While……..loop Do loop While………… For……….Next loop 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.