Computer Science, asked by somyashree47, 5 months ago

Ravi wants to write a program to display name, class, section using QBASIC. Write the QBASIC program.​


somyashree47: pl answer
somyashree47: pl answer .
somyashree47: pl
somyashree47: answerrrrrr

Answers

Answered by nightread
0

Answer:

INPUT "NAME " , A$

INPUT "CLASS " , B$

INPUT "SECTION " , C$

PRINT

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