Computer Studies

Display the output of the following QBASIC program:

CLS
C = 3
D = C*2
START:
PRINT C,D
C = C + 2
IF C <=10 THEN GOTO START:
END

QBASIC

QBASIC: Conditional Statements

11 Likes

Answer

The output of the program is shown below:

3   6
5   6
7   6
9   6

Answered By

8 Likes


Related Questions