Interface which does not contain any variables and methods.Examples: * java.io.Serializable, * java.lang.Cloneable, etcBoth of these interfaces declare no methods, by implementing them, a class signals some fact to the JVM (either it\'s OK to serialize it, or it\'s ok to clone it.)
The null interface is also called as Marker Interface or tagged interface.