User Forum

Subject :ICSO    Class : Class 6

Study the given QBASIC code carefully and answer the question that follow.
CLS
LET B = 1
ONE : If B < 40 THEN GOTO TWO ELSE GOTO THREE
TWO : PRINT B
B = B + 2
GOTO ONE
THREE : END
What will this QBASIC code print on screen?
A Even numbers between 1 and 40
B Odd numbers between 1 and 40
C Even numbers between 1 and 41
D Counting from 1 to 40


Ans 1:

Class : Class 7
GOTO?

Post Your Answer