Computer Science, asked by Anonymous, 5 hours ago

use DO ...UNTIL LOOP TO PRINT ' QBASIC ' 5 TIMES​

Answers

Answered by prajapatikhushi317
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.

Answered by itzjkisok
1

Answer:

A Do…Until loop is used when we want to repeat a set of statements as long as the condition is false. The condition may be checked at the beginning of the loop or at the end of loop.

Similar questions