Westonci.ca is your go-to source for answers, with a community ready to provide accurate and timely information. Connect with professionals on our platform to receive accurate answers to your questions quickly and efficiently. Explore comprehensive solutions to your questions from knowledgeable professionals across various fields on our platform.

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: