What type of test cannot be handled by switch?
Integer test
char test
real test
floating point test
Where does the loop variable is updated in while loop?
Inside the program
anywhere
outside loop
inside the body of while
What type of value will get when the expression of a selection statement evaluates to true?
Zero
non zero
negative
no value
Which among the following is a simplest statement in C++?
null
compound
selection
looping
Which operator is used in for loop when there is a need of more then one index?
conditional
size of
comma
logical
How can we create an infinite for loop?
Omitting the test expression
omitting the update expression
omitting the initialization
omitting the loop body
What will occur when a break is missing in case statement?
fall through
end of switch
exit out of the case
none of these
Which statement is executed when there is no match is found ?
Break
else
case
default
Which header file is included in the program to use exit() function?
Iostream.h
process.h
stdio.h
math.h
Which jump statement is used to skip a part of the code in the program?
return
continue
goto
break