Multiple choice

Which of the following is a false statement in java?

  1. An class can implement any number of interfaces.

  2. An interface contains public and abstract methods.

  3. A class can extend more than one abstract class.

  4. An interface can not implement other interface.

  5. None of the above

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

This is a false statement as a class can not extend more than one abstract class in java as it is the case of multiple inheritance and java does not support multiple inheritance.