Computer Science, asked by Aakruti07, 11 hours ago

differentiate between for....next loop and do until loop with example (5 mark question)​

Answers

Answered by 3895bittu
0

Answer:

A "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

Similar questions