Multiple choice technology programming languages

What type of inheritance does Java have?

  1. Single Inheritence

  2. Double Inheritence

  3. Multiple Inheritence

  4. Class Inheritence

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

Java supports single class inheritance, meaning a class can only extend one superclass directly. Java does not support multiple inheritance of classes (only multiple inheritance of interfaces through implementation). Double inheritance is not a standard term, and class inheritance is a general concept rather than a type.