Computer Science, asked by bhagyavmistry, 12 hours ago

which of the following punctuation is used to insert a gap between text in QBasic​

Answers

Answered by Skittle1
0

Answer:

CLS

INPUT "What is your name"; name$

PRINT "Hello, "; name$;  

INPUT "How old are you"; age

INPUT "What is your best computer game?", game$

PRINT "     name:"; name$

PRINT "      age:"; age; " years old"

PRINT "best game:"; game$

Explanation:

Similar questions