1.

What is an Interface?

Answer»

An interface is a list of methods that must be defined by any class which implements that interface. 

It may also define constants (public static final). In Java an interface is similar to an abstract class in that its members are not implemented.



Discussion

No Comment Found

Related InterviewSolutions