Contents

The case block ends with…….
a) {                                                        

b)}
c) break                                

d) default

c

The conditional operator is also known as
a) relational operator         

b) binary operator
c) ternary operator           

d) chary operator

c

If you must make decision based on multiple choices, which of the following is best suited?
a) if                                                        

b) else
c) if-else                                

d) if-else-if

d

in C Language are implemented using?
a) while                                 

b) do-while
c) for                                                     

d) all of these

d

Which loop is faster than others C Language?
a) for                                                    

b) while
c) do-while                                           

d) if-else

a

The continue statement cannot be used with….
a) for                                                     

b) while
c) switch                                               

d) do while

c