Which Statements Are Correct #364
Which statements are correct?
This multiple choice question (MCQ) is related to the book/course gs gs108 CSharp. It can also be found in gs gs108 Object Oriented Concepts - Inheritance Implementation - Quiz No.1.
Which statements are correct?
If a base class consists of a member function fun() and a derived class do not have any function with this name. An object of derived class can access fun()
A class D can be derived from class C, which is derived from class B which in turn is derived from class A
If a base class and a derived class each include a member function with same name, the member function of the derived class will be called by object of derived class
All of the mentioned