Q. Is it mandatory to call a constructor to create an object?
β
Correct Answer: (A)
Yes
Explanation: Yes, you need a constructor every time you create an object in C++. If you do not specify any value for the object, then a default constructor is called and automatically assigns a default value to class variables.