adplus-dvertising
frame-decoration

Question

Which constructor among the following will be called if a call is made like className(5,’a’);?

a.

className(int x=5,char c=’a’);

b.

int className(int x, char c, char d);

c.

className(int x, char c, int y);

d.

char className(char c,int x);

Answer: (a).className(int x=5,char c=’a’);

Engage with the Community - Add Your Comment

Confused About the Answer? Ask for Details Here.

Know the Explanation? Add it Here.

Q. Which constructor among the following will be called if a call is made like className(5,’a’);?

Similar Questions

Discover Related MCQs

Q. Which constructor definition will produce a compile time error?

Q. If there is a constructor with all the default arguments and arguments are not passed then _________________

Q. Which is the correct statement for default constructors?

Q. Which is a good alternative instead of having one zero argument constructor and one single argument constructor with default argument?

Q. What is upcasting?

Q. Which among the following is true for upcasting in inheritance?

Q. Which among the following is safe?

Q. Which among the following is best situation to use upcasting?

Q. Which property is shown most when upcasting is used?

Q. Upcasting and downcasting objects is same as casting primitive types.

Q. If multiple inheritance is implemented, which upcasting will be correct?

Q. If class C inherits class B and class B inherits class A ________________

Q. Upcasting is _____________________ without an explicit type cast.

Q. Which concept is needed because of implicit type casting use?

Q. When are the pointer types known for upcasting the objects?

Q. When are the object type known for upcasting the objects?

Q. If two classes are defined “Parent” and “Child” then which is the correct type upcast syntax in C++?

Q. What is downcasting?

Q. Which among the following is a mandatory condition for downcasting?

Q. Downcasting is _______________________