NEW
Font size
Worksheetsnestedif _ And _ Or
Total questions: 10
Worksheet time: 5mins
Any statements inside an IF clause (section) can be executed multiple times.
FALSE
TRUE
It is possible to execute both the (block of) statements under if and the else clauses at the same time.
Yes
No
What is the output?
True
False
condition1
condition2
elif can be considered to be abbreviation of
nested if
if..else
else if
if..elif
What will be the output of above program
OLDDY
NEWDY
Error
None
To ensure that both conditions are true
Or
And
if
else
To ensure that one or both of the two conditions are true
Or
And
if
else
Choose the correct command to start the analog communication
Serial.Begin(9600)
Serial.begin(9600)
serial.Begin(9600)
serialBegin(9600)
How to read from a button
val=serialRead(A0)
val=analogRead(A0)
val=digitalRead(A0)
What is the output?
NUMBER is bigger than 3
nymber is bigger than 3
NUMBER is less than 3
nymber is less than 3
