Multiple choice softskills creativity

We don't have the concept of multiple inheritance in Java but we still requires it How does JAVA helps us in this situation?

  1. Import new package

  2. use concrete class

  3. Use of Interfaces

  4. Use Inheritance

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

Java does not support multiple inheritance of classes to avoid complexity and the 'diamond problem'. However, it allows a class to implement multiple interfaces, effectively providing a way to achieve the benefits of multiple inheritance.