Discover a wealth of knowledge and get your questions answered at IDNLearn.com. Discover prompt and accurate responses from our experts, ensuring you get the information you need quickly.

Sample program for Do While loop

Qbasic


Sagot :

Answer:

A "Do While" loop statement runs while a logical expression is true.

Explanation:

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.

Answer:

A "Do While" loop statement runs while a logical expression is true. Explanation: