Contents

What is the purpose of repetition structure is to?
a) execute a sequence of task                          
b) execute a procedure
c) repeat the execution of program
d) repeat an If statement once

c

As a computer processes instructions, one execution of loop is known as…….
a) cycle                                 
b) duration
c) iteration                          
d) test

c

Which loop structure always executes once?
a) do-while                          
b) for
c) while                                 
d) none of these

a

Which loop condition comes before the body of loop?
a) while loop                       
b) do-while loop
c) both a & b                       
d) none of these

a

Which loop condition comes after the body of loop?
a) while loop                        
b) do-while loop
c) for loop                            
d) both b & c

b

Which of the following loop is called counter loop?
a) for loop                           
b) while loop
c) do-while loop  
d) none of these

a