Contents

Which statement terminates the execution of the loop?
a) default                                             

b) break
c) none of these                  

d) loop

b

Which statement control shift back to the beginning of the loop?
a) default                                             

b) break
c) continue                                           

d) loop

c

Which loop is preferred when programmer known, how many time loop executes?
a) for loop                                           

b) while loop
c) do while loop                   

d) nested loop

a

Which loop is preferred when programmer don’t know, how many time loop executes?
a) for loop                                            

b) while loop
c) do while loop                   

d) nested loop

b

Which loop is preferred when programmer want at least once loop executes?
a) for loop                                            

b) while loop
c) do while loop                  

d) nested loop

c

A loop within loop is called………….
a) for loop                                            

b) while loop
c) do while loop                   

d) nested loop

d