Ask Question         Q & A         Articles        
Skip Navigation LinksHome > Discussion Topics > Discussions
Discuss this Question
0
Multi Level Inheritance means deriving a class from more than one class.
  • True
  • False
Answer : False
Previous Comments
0
how many type of inheritance is their in c++
On : 20-Apr-2011
Hierarchical  inheritance
             a
            / \
           b  c
Multiple inheritance
            a  b
             \  /
              c
Hybrid inheritance->it is the combination of one or more inheritances
Eg:        a
            /  \                  
           b   c
           |
           d
By : priyanka   On : 15-Mar-2012
There are five different inheritances supported in C++:

    (1) Simple / Single
    (2) Multilevel
    (3) Hierarchical
    (4) Multiple
    (5) Hybrid
single inheritance
         a
         |->b is derived from a
         b
multilevel inheritance
         a
          |
         b
          |
         c
By : priyanka   On : 15-Mar-2012
single inheritance,multiple inheritance,multi level inheritance,hybrid inheritance
By : priyanka   On : 15-Mar-2012
0
When a subclass is derived from a derived class then this  is known as the multilevel inheritance. The derived class is called the subclass or child class for it's parent class and this parent class works as the child class for it's just above ( parent ) class. Multilevel inheritance can go up to any number of level.
On : 18-Apr-2011
Your Comments
Ask a Question