Ravi wants to write a program to display name, class, section using QBASIC. Write the QBASIC program.
somyashree47:
pl answer
Answers
Answered by
0
Answer:
INPUT "NAME " , A$
INPUT "CLASS " , B$
INPUT "SECTION " , C$
PRINT "NAME = "; A$
PRINT "CLASS = "; B$
PRINT "SECTION = "; C$
The extra 'PRINT' added between input and the 2nd print is used to leave an empty line.
Hope it helps
Similar questions