Contents

Which is the correct example of a binary operator?
a) ++                                      
b) --
c) dereferencing operator (*)            
d) +

d

Which is the correct example of a unary operator?
a) &       
b) ==      
c) --                        
d) /

c

Which is called ternary operator?
a)?:        
b) &&    
c) |||                        
d) ===

a

How many operators are supported by C++?
a) 30 operators    
b) 40 operators
c) 45 operators
d) 65 operators

c

While overloading binary operators using member function, it requires ___ argument/s.
a) 0                        
b) 1                        
c) 2                        
d) 3

b

Which of the following C++ operators can be overloaded?
a) size operator (size of)                                    
b) conditional operator
c) arithmetic operator                                     
d) class member operator

c