NEW
Font size
WorksheetsUnit-9 QB64 statements
Total questions: 18
Worksheet time: 9mins
Which command is used in QB64 to Display a value, message or output on the monitor?
LET
INPUT
CLS
Which command is used in QB64 to Display a blank line?
LET
INPUT
CLS
Which statement is used to take input from the user during the program execution?
LET
INPUT
CLS
Which statement is used to add comments?
LET
INPUT
REM
Which statement is used to assigning a value to a variable within a program?
LET
INPUT
REM
Select a valid string variable.
HT%$
Nm$
Rl 24$
4Name$
How many types of variables are there?
Four
Two
Three
Seven
Which variable requires a dollar sign at the end ?
Numeric Variable
String Variable
When comma is used with print statement the items get closed to each other leaving no space
True
False
___________ command helps to insert comments that enable us to understand what the program is all about.
rem
The ___________ statement in QBasic is used to accept the data item from the user.
Input
output
To add values of x and y and store the sum in z
x=y+z
z=x+y
x+y=z
You can have only one INPUT statement in a program.
True
False
Which command is used in QB64 to Display a value, message or output on the monitor?
LET
INPUT
CLS
Which command is used in QB64 to Display a blank line?
LET
INPUT
CLS
A data value that does not change during the execution of a program is _____.
Variable
Constant
Character
In PRINT command, the message is closed in ______.
Double Quotes
Semicolons
Single Quotes
F3 key is pressed to execute or run the program to get the result.
True
False
