ANSI C approves how many maximum case labels?
a) 257
b) 275
c) 260
d) 259
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
Break statement is known as by which another name?
a) Exit Loop
b) Close Loop
c) Quit Loop
d) Escape Loop
Which statement is used to skip following statement of the loop?
a) break statement
b) continue statement
c) if statement
d) exit statement
Which are not looping structures?
a) for loop
b) while loop
c) do…while loop
d) if…else
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