Which among the following is a simplest statement in C++?
null
compound
selection
looping
Which jump statement is used to skip a part of the code in the program?
return
continue
goto
break
Which header file is included in the program to use exit() function?
Iostream.h
process.h
stdio.h
math.h
Which loop is used to repeat a block of statements for specific number of times?
while
for
do while
none of these
What type of value will get when the expression of a selection statement evaluates to true?
Zero
non zero
negative
no value
What will occur when a break is missing in case statement?
fall through
end of switch
exit out of the case
What type of test cannot be handled by switch?
Integer test
char test
real test
floating point test
What refers to the specified condition in a loop?
loop construct
loop control
initialization
Where does the loop variable is updated in while loop?
Inside the program
anywhere
outside loop
inside the body of while
Which statement is executed when there is no match is found ?
Break
else
case
default