Interfaces in Java
Interface is similar to class in java. Interfaces consists of functions and variables. But interfaces are not instanciated.
Interfaces are created with "interface" keyword. Interfaces helps us in implemeinting multiple inheritance.