Open In App
Related Articles

C++ | Inheritance | Question 4

Improve Article
Improve
Save Article
Save
Like Article
Like




#include<iostream>
   
using namespace std;
class P {
public:
   void print()  { cout <<" Inside P"; }
};
   
class Q : public P {
public:
   void print() { cout <<" Inside Q"; }
};
   
class R: public Q { };
   
int main(void)
{
  R r; 
  r.print();
  return 0;
}


(A) Inside P
(B) Inside Q
(C) Compiler Error: Ambiguous call to print()


Answer: (B)

Explanation: The print function is not present in class R. So it is looked up in the inheritance hierarchy. print() is present in both classes P and Q, which of them should be called? The idea is, if there is multilevel inheritance, then function is linearly searched up in the inheritance hierarchy until a matching function is found.

Quiz of this Question

Whether you're preparing for your first job interview or aiming to upskill in this ever-evolving tech landscape, GeeksforGeeks Courses are your key to success. We provide top-quality content at affordable prices, all geared towards accelerating your growth in a time-bound manner. Join the millions we've already empowered, and we're here to do the same for you. Don't miss out - check it out now!

Last Updated : 28 Jun, 2021
Like Article
Save Article
Previous
Next
Similar Reads