
Modes of Inheritance Public mode: Mode of inheritance public means public member of base class becomes public in derived class and protected member of base class becomes protected in derived class. Public member of base class will become public member in derived class protected member of base class will become protected member in derived class Protected mode: Mode of Inheritance protected means both public member and protected members of the base class will become protected in derived class. Both public and protected member of Base class will become protected in derived class Private mode: Mode of Inheritance Private means both public member and protected members of the base class will become Private in derived class. Both public and protected member of the Base class will become Private member in derived class Types of Inheritance: There are following types of Inheritance: 1) Single Inheritance: Single inheritance allowed ...