Question Detail When a derived class inherits from many base classes, this process is known as ? multiple inheritancemultilevel inheritancedefault inheritancemultiplex inheritance Answer: Option A Similar Questions : 1. Which of the following cannot be passed to a function ? ArrayReference variableObjectFile Answer: Option D 2. & operator is ? address operatorindirection operatorlogical andlogical or Answer: Option A 3. Which of following valid option will not return a value in c++ ? freevoidemptynull Answer: Option B 4. Only one copy of the class is inherited, when it is defined as ? virtualpublicstaticprivate Answer: Option A 5. Even if we define a function in a class, then also we need to declare it first. TrueFalse Answer: Option BExplanation:If we define a function in a class, then also we do not need to declare it first. Read more from - C++ Programming Questions Answers - Set 2