Multiple choice

Which type of inheritance is not possible/allowed in Java using extends keyword?

  1. Multiple

  2. Multilevel

  3. Single

  4. Hierarchical

  5. None of the above

Reveal answer Fill a bubble to check yourself
A Correct answer
Explanation

Multiple inheritance is not possible by using extends keyword. We can implement interface to do multiple inheritance.