User Forum

Subject :NCO    Class : Class 6

What is the output of the following QBasic program code?
REM A QBASIC Program
CLS
LET A$="5"
LET B$="4"
LET C$=A$+B$
PRINT "Sum=";C$
END
(a) Sum=9
(b) Sum=54
(c) Sum=5+4
(d) 54


Correct answer is B because there is $ sign

Ans 1:

Class : Class 9
The answer is a , $ sign indicates that the text is alphanumeric

Post Your Answer