What would be the output of the following QBASIC code?
LET A = 9
LET B = 4
if (A < B) then
PRINT A/B
ELSE
PRINT A MOD B
END if
A2
B2.5
C1
D3
Pls explain
What would be the output of the following QBASIC code?
LET A = 9
LET B = 4
if (A < B) then
PRINT A/B
ELSE
PRINT A MOD B
END if
A2
B2.5
C1
D3