Question Detail We can do constructor overloading in C++ ? TrueFalse Answer: Option BExplanation:constructor overloading can be done in C++. Similar Questions : 1. The default visibility mode while inheriting is ? publicprotectedprivatemay be any of above Answer: Option C 2. What is default visibility mode for members of classes in C++ ? PrivatePublic ProtectedDepends Answer: Option A 3. We can do constructor overloading in C++ ? TrueFalse Answer: Option BExplanation:constructor overloading can be done in C++. 4. What is true about Constructor ? Its name is plural of class name.Its name has * symbol before it.Its name is same as of class name.Its name has # symbol before it. Answer: Option C 5. How we can access data members using objects ? object@datamemberobject*datamemberobject->datamemberobject.datamember Answer: Option D Read more from - C++ Programming Questions Answers - Set 2