Computer Studies
Fill in the blanks:
_________ option is used to store a program in the secondary memory for the future use.
Related Questions
Fill in the blanks:
Using _________ command, you can quit QBASIC and return to the desktop.
Fill in the blanks:
_________ are the set of instructions to a program.
Correct the errors in the following QBASIC program:
CLEAR
LET A = 15
TAKE B = 10
P = (A + B)2
DISPLAY P
ENDCorrect the errors in the following QBASIC program:
CLS
INPUT A = 10
LET B = 45
P = (A x B) / 5 + B
PRINT P
STOP