Contents

ANSI C approves how many maximum case labels?
a) 257   
b) 275   
c) 260    
d) 259

a

When in the program some statements are required to be implemented repeatedly, which structure is used?
a) loop control   
b) function structure
c) decision structure
d) control structure

a

Break statement is known as by which another name?
a) Exit Loop                       
b) Close Loop
c) Quit Loop                        
d) Escape Loop

a

Which statement is used to skip following statement of the loop?
a) break statement             
b) continue statement
c) if statement     
d) exit statement

b

Which are not looping structures?
a) for loop                            
b) while loop        
c) do…while loop                               
d) if…else

d

How many times the following code prints the string “hello” for(i=1;i<=50;i++)
printf(“Hello”);
a) 1                                                        
b) 50
c) Zero                                  
d) none of these

b