Multiple choice Which of the following is a false statement in java? An class can implement any number of interfaces. An interface contains public and abstract methods. A class can extend more than one abstract class. An interface can not implement other interface. 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.