Question Detail 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 Similar Questions : 1. The process of deriving a class from another derived class is known as ? single inheritancedual inheritancemultiple inheritancemultilevel inheritance Answer: Option D 2. Which among following is correct way of declaring object of a class ? Classname Objectname;Class Classname Objectname;Class Classname Object Objectname;Classname Object Objectname; Answer: Option A 3. Inheritance is transitive in nature. TrueFalse Answer: Option A 4. The default visibility mode while inheriting is ? publicprotectedprivatemay be any of above Answer: Option C 5. 66. A constructor function is generally defined In the private section of a classIn the public section of a classIn the protected section of a classNone of the above Answer: Option B Read more from - C++ Programming Questions Answers - Set 2