Which of the following operator cannot be overloaded?

Answers were Sorted based on User's Feedback



Which of the following operator cannot be overloaded?..

Answer / soundarya

sizeof
* pointer to member operator
. membership operator
:: scope resolution operator
?: conditional operator
can not be overloaded


using friend function these four operator can not be overloaded
=
()
[]
->

Is This Answer Correct ?    1 Yes 0 No

Which of the following operator cannot be overloaded?..

Answer / vidhya

Conditional Operator (?:)
Membership operator (.)
sizeof operator (sizeof())
.-> operator

Is This Answer Correct ?    0 Yes 0 No

Post New Answer

More C++ General Interview Questions

Can I make ios apps with c++?

0 Answers  


How long does this loop run: for(int x=0; x=3; x++) a) Never b) Three times c) Forever

17 Answers   Datavance, Quark, VEL, Wipro,


How do you flush a buffer in c++?

0 Answers  


What is iostream in c++ used for?

0 Answers  


What are disadvantages of pointers?

0 Answers  






How the compilers arranges the various sections in the executable image?

1 Answers  


Which sort is best for the set: 1 2 3 5 4 a) Quick Sort b) Bubble Sort c) Merge Sort

0 Answers  


Can comments be longer than one line?

0 Answers  


why and when we can declar member fuction as a private in the class?

0 Answers  


What it is and how it might be called (2 methods).

0 Answers  


Write a Program to find the largest of 4 no using macros.

0 Answers  


What is the difference between the functions memmove() and memcpy()?

0 Answers  


Categories