C++ Operator Overloading Question:
Download Questions PDF

Which of the following statements is NOT valid about operator overloading?
a) Only existing operators can be overloaded.
b) Overloaded operator must have at least one operand of its class type.
c) The overloaded operators follow the syntax rules of the original operator.
d) None of the mentioned

C++ Operator Overloading Interview Question
C++ Operator Overloading Interview Question

Answer:

d) None of the mentioned

Download C++ Operator Overloading Interview Questions And Answers PDF

Previous QuestionNext Question
Operator overloading is:
a) making c++ operator works with objects
b) giving new meaning to existing operator
c) making new operator
d) both a & b
How to declare operator function?
a) operator operator sign
b) operator
c) operator sign
d) None of the mentioned