Computer Science, asked by preeti6697, 10 months ago

what is QBASIC? write a program for using for and while loop in QBASIC.​

Answers

Answered by ashisch37
0

Answer:

O... LOOP Statement. Repeats a block of statements while a condition is true or until a condition becomes true.

Explanation:

Answered by allysia
1

What?

QBasic is an interpreter that runs codes of Basic.  Which means it reads the code line wise and stops in case any error found.

Program:

CLS

A=1

WHILE A<10;

PRINT "LOOP...EZSSSS"

A=A+1

WEND

Attachments:
Similar questions