Contents

The first expression in a for……loop is
a) step value of loop
b) value of the counter variable
c) condition statement
d) none of these

b

Which among the following is a unconditional control structure.
a) goto                                  
b) for
c) do-while                           
d) if-else

a

Continue statement
a) breaks loop and goes to next statement after loop
b) exits the program
c) does not break loop but starts new iteration
d) start from beginning of program

c

Do-while loop terminates when conditional expression returns?
a) one                                    
b) zero
c) none-zero                         
d) none of these

b

If the condition is missing in a for loop?
a) it is assumed to be present and taken to be false
b) it is assumed to present and taken to the true
c) it results in a syntax error
d) execution will be terminated

b

Loops in C Language are implemented using?
a) while block                      
b) for block
c) do while block 
d) all of these

d