What is the LAST message this loop will show?
Dim i as Integer
i = 1
Do Until i > 5
MsgBox i*100
i = i + 1
Loop
500
600
400
“i*100”
Expert Answer
The loop controlling Boolean expression is the last statement that a loop always shows . This check the condition after every step of the loop.
Here the last message in this loop would be i*100