Contents

A sequence of instruction that is continually repeated is called………..
a) loop                                                  

b) program
c) algorithm                                         

d) flowchart

a

What is/are the advantages of loop?
a) save time                                         

b) save effort
c) both a & b                                       

d) none of these

c

Loop structure is also known as………..
a) repetitive structure
b) non-repetitive structure
c) both a & b                                       

d) none of these

a

What is/are the main purpose, that loops are used?
a) one                                                    

b) two
c) three                                                  

d) four

b

(to execute a statement for number of times, to execute a statement depending upon condition)



How many types of loops available in C?
a) one                                                    

b) two
c) three                                 

d) four

c

(while, do while, for)



Which loop executes one or more statement for a specified number of times?
a) while loop                                        

b) do while loop
c) for loop                                           

d) none of these

c