Question Detail The process of deriving a class from another derived class is known as ? single inheritancedual inheritancemultiple inheritancemultilevel inheritance Answer: Option D Similar Questions : 1. Which operators can not be overloaded ? Binary operatorTernary operatorUnary operatorAll can be overloaded Answer: Option B 2. Which among following is not a valid visibility mode in c++ program ? PrivatePublicProtectedLimited Answer: Option D 3. In C++ Functions can returns ? arraysreferenceobjectsall of above Answer: Option D 4. Only one copy of the class is inherited, when it is defined as ? virtualpublicstaticprivate Answer: Option A 5. We can do constructor overloading in C++ ? TrueFalse Answer: Option BExplanation:constructor overloading can be done in C++. Read more from - C++ Programming Questions Answers - Set 2