Which command is used to take the value from the user and store it in a variable ?
PRINT
REM
LET
INPUT
Which of the following is the correct program for print " welcome " ?
LET A = WELCOME
PRINT A
END
LET A $ = " WELCOME "
PRINT A $
LET A = " WELCOME "
None of these
Which of the following is a combination of operators and operands ?
String
Expressions
Variable
Which command is used to choose the random numbers?
Loop
FOR…NEXT
Line numbers
RND
Which operator is used for string concatenation?
-
+
/
*
Which command is used to write remarks that are not executed ?
Which command is used to assign or put a value inside a variable?
Which statement is executing a set of commands if the given condition is true and another set of commands if the condition is false?
IF ............. THEN
END.......... IF
IF....... THEN..........ELSE
ELSE IF ............. THEN........... ELSE
Which among the following will change its value during the execution of a program?
Expression
Which keyword gives more choices when it is used in IF…THEN…ELSE?
THEN
ELSE IF
ELSE
END IF