1.

Types of Inheritance OOPS

Answer»

Below are the 5 diferent types of inheritance USED in oops.
(1) Single Inheritance
(2) Multiple Inheritance
(3) Hierarchical Inheritance
(4) Multilevel Inheritance
(5) Hybrid Inheritance or Virtual Inheritance

Now Example of Inheritance are GIVEN below
(1)Single Inheritance :- In this ONE DERIVED class inherits from only one base class



single inheritance

(2)Multiple Inheritance:-In this we have single derived class may inherit from two or more than two base classes



Multiple inheritance

(3)Hierarchical Inheritance:- In this we have multiple derived classes inherits from a single base class



Hierarchical inheritance

(4)Multilevel Inheritance:-In this the derived class inherits from a class, which in turn inherits from some other class



Multilevel inheritance

(5)Hybrid Inheritance or Hybrid Inheritance:-Hybrid Inheritance is combination of Hierarchical and Mutilevel Inheritance.



Hybrid inheritance



Discussion

No Comment Found