Computer Science, asked by ridhimag4408, 2 months ago

What is the difference between DO...UNTIL loop and WHILE...WEND loop in qbasic?​

Answers

Answered by shristirastogi15
3

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.

mark me as brain list

Similar questions