_______ statement is used to check a condition in BASIC.
Let
Print
If
Goto
ALU does all the _______.
Input
Output
Processing
Logical
_______ command is used for FALSE condition in IF statement.
IF
THEN
Both A and B
ELSE
_______ operator is used to check the given condition is “Not equal to” .
!=
-=
<>
><
_______ command is used for more condition in IF statement.
AND
NOT
Both a and b
None of these
______operator is used to check the condition “Less than or equal to”
<=
>=
==
<#
IfthenElse ifthenElse ifthenElseEnd if-this syntax is used for ___________ statement.
If---then---else
Else if with---then---else
If---then
All of these
If OR is used in IF statement, _______ conditions can be used.
Only One
One or more
Two
Three
70 IF M>60 AND N=THEN GOTO 40 ELSE GOTO 100. In the above code, if m=70 , N=75 the control will go to Line No. _______.
40
60
100
80
10 INPUT “Any two numbers”: A, B . In this line which are the variables.
10
INPUT
A and B
All the above.