Multiple choice

Which of the following statements is false regarding inheritence?

  1. A class can extend another class.

  2. A class can implement multiple interfaces.

  3. A class can extend multiple classes.

  4. An interface can extend another interface.

  5. A class can extend another class and implement an interface at the same time.

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

This is a false statement. Multiple inheritence is not supported in Java.