Multiple choice Which of the following statements is TRUE about Java interfaces? It is not possible to implement interface in more than one class. An interface should not have any members except abstract methods. It is not possible to have reference variables for interfaces. We cannot create object for interface. If a class implements two interfaces which have the same method names, then the class should implement all the simlar methods in two interfaces twice. Reveal answer Fill a bubble to check yourself D Correct answer Explanation No, it is not possible to create an object for an interface because it does not have any implemented functions.