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
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