Computer Science, asked by snehaanjali1306, 10 months ago

What is the difference between WHILE... WEND and DO UNTIL ? ​ PLEASE ANSWER AS FAST AS YOU CAN

Answers

Answered by selviarul1105
3

Answer:

Do While" loop statement runs while a logical expression is true. This means that as long as your expression stays true, your program will keep on running. Once the expression is false, your program stops running. A "Do Until" loop statement runs until a logical statement is true.

explanation:

While does not have a Until version. There is no statement to exit a While loop like Exit For or Exit Do.

hope it helps mark as the branilist plz

Similar questions