O

Omkar Shekhavat • 1.09K Points
Master

Q. In the below example of constructor overloading, the following statement will call which constructor
Example obj = new Example (1,2,3);

Code:
class Example{
public: int a,b,c;
Example(){a=b=c=1;} //Constructor 1
Example(int a){a = a; b = c = 1;} //Constructor 2
Example(int a,int b){a = a; b = b; c = 1;} //Constructor 3
Example(int a,int b,int c){ a = a; b = b; c = c;} //Constructor 4
}
  • (A) Constructor 2
  • (B) Constructor 4
  • (C) Constrcutor 1
  • (D) Type mismatch error
  • Correct Answer - Option(B)
  • Views: 149
  • Filed under category C++

No solution found for this question.
Add Solution and get +2 points.

You must be Logged in to update hint/solution

Discusssion

Login to discuss.

Be the first to start discuss.


Question analytics