What type of test cannot be handled by switch?
Integer test
char test
real test
floating point test
Which jump statement is used to skip a part of the code in the program?
return
continue
goto
break
Which statement is optional in switch statement?
Case
default
condition
Which type of loop does not contain any statement in its loop-body?
for loop
empty loop
while loop
infinite loop
Which statement is executed when there is no match is found ?
Break
else
case
What refers to the specified condition in a loop?
loop construct
loop control
initialization
none of these
Which loop is preferable to execute the loop body at least once?
do while
while
for
nested
Which loop is used to repeat a block of statements for specific number of times?
Which statement is used to transfer program control within a function?
looping statements
jump statement
conditional statement
decision
Where does the loop variable is updated in while loop?
Inside the program
anywhere
outside loop
inside the body of while