Which of the following also means same as that of iteration construct?
Condition construct
Decision construct
Sequence construct
Looping construct
Which clause is optional in a switch statement
Switch
Case
Default
finally
What is the fall of control to the following cases of matching case called as?
Break-through
Exit-through
Fall-through
goto
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
Iteration construct
All of these
Which of the following is an alternative to '?' operator?
for
If
switch
while
What is the comparison supported by switch statement?
Equality
Inequality
Approximate
Unequal comparisons
Which of the following means sequential execution of statements?
Alteration construct
Which of the following proceeds with repetition of a set of statements depending upon a condition test?
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.