Multiple choice technology programming languages

Is Multiple Inheritance allowed in JAVA???

  1. True

  2. False

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

Java does not support multiple inheritance of classes to avoid complexity and the diamond problem. A class can only extend one parent class, though it can implement multiple interfaces.