Contents

Which of the following is used to repeat the execution of specific statement?
a) decision statement
b) loop structure
c) switch                                               
d) if…..else

b

One execution of a loop is known as……
a) cycle                                 
b) duration
c) iteration                          
d) test

c

How many types of loop structures are available in C++?
a) 4                        
b) 3                        
c) 2                        
d) 6

b

Explanation: while loop, do-while loop, for loop


Which of the following loop is available in C++?
a) while                                 
b) do…. while
c) for                                     
d) all of these

d

Which of the following is simplest loop in C++?
a) do….while                       
b) for
c) while                                 
d) for while

c

Which loop structure always execute at least once?
a) do…..while                     
b) for
c) while                                 
d) counter

a