Course Solutions Uncategorized (Answered) : 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 Loo

(Answered) : 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 Loo

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

Leave a Reply

Your email address will not be published. Required fields are marked *

Related Post