InterviewSolution
 Saved Bookmarks
    				| 1. | 
                                    Which of the following operator is by default overloaded by the compiler?(a) *(b) + (c) + = (d) = = Based on the following program answer the questions (8) to (10) #includeusing namespace std;class Point {private: int x, y;public:Point(int x1,int y1){x=x1;y=y1;}void operator+(Point & pt3);void show() {cout << “x = ” << x << “y = ” << y; }};void Point: :operator + (Point & pt3){x+=pt3.x;y += pt3.y;}int main(){Point pt1(3, 2),pt2(5, 4);pt1+pt2;pt1.show();return 0;} | 
                            
| 
                                   
Answer»  Answer is (b) +  | 
                            |