What is inheritance Explain Part II FillinTheBlank Inheritan
     What is inheritance? Explain.  Part II: Fill-in-The-Blank.  Inheritance enables__________, which saves time in development and encourages using previously proven high-quality software.  An object of a(n)_  class can be treated as an object of its corresponding  _ class.  Inheritance is representative of a(n)  _relationship. A Manager object demonstrates this relationship because it can be treated as an Employee object.  The following class diagram is an example of_  inheritance.  When an object of a derived class is instantiated, the base class\'  _ is called implicitly or explicitly to initialize the data members of the base-class in the derived-class object. 
  
  Solution
1) Inheritance : could be defined as the process where one class acquires properties of another class and by this concept the hierrachy becomes managable.
 The class which inherits is called sub class and the class from which sub class inherits is calles super class.
 2) Inheritance enables software reusability which saves time in development and encourages using previuosly provn high - quallity software.
 3) An object on sub class could be treated as an object of its corresponding super class
 4) Inheritance is a representative of is-a relationship.
 5) Figure shown is an example of multiple inheritance.
 6) Base class constructor is called implicitly or explicitly

