Question Detail We can do constructor overloading in C++ ? TrueFalse Answer: Option BExplanation:constructor overloading can be done in C++. Similar Questions : 1. Data members and member functions are enclosed within ? unionstructureclassarray Answer: Option C 2. Classes that can be used to instantiate objects are called concrete classes. TrueFalse Answer: Option A 3. The objects can directly access ? Public membersPrivate membersBoth of aboveNone of above Answer: Option A 4. How we can access data members using objects ? object@datamemberobject*datamemberobject->datamemberobject.datamember Answer: Option D 5. The derived class constructor never passes any values to base class constructorcan pass arguments only to one base class constructor functionis responsible for passing the entire test of arguments needed by base class constructorsnone of above Answer: Option C Read more from - C++ Programming Questions Answers - Set 2