Which of the following is an alternative to '?' operator?
for
If
switch
while
Which is the odd one out?
Sequentially
Selectively
Iteratively
Simply
Which of the statement's absence can cause a fall-through in a switch statement?
continue
goto
break
exit
Which part of if else will get executed if the test expression is true?
Both if and else part
only if
Only else
Either if or else.
What is the alternate name for a selection construct?
Condition construct
Sequence construct
Decision construct
Iteration construct
Which of the following is a selection statement?
None of these
What is the fall of control to the following cases of matching case called as?
Break-through
Exit-through
Fall-through
When will a Switch case exit from a matching case?
On reaching break
On reaching stop
On reaching exit
On reaching next 'case'
Which of the following construct means the execution of statements depending up on a condition test?
Selection construct
All of these