Interface Example, a class implements an interface.

Java Programming Language / Abstarct class and Methods in java

1204

Program:

interface University{
void name();
}

class College implements University{
	public void name(){
		System.out.println("Atnyla technical Institute");
		}

public static void main(String args[]){
College obj = new College();
obj.name();
 }
}

Output:

Atnyla technical Institute
Press any key to continue . . .

This Particular section is dedicated to Programs only. If you want learn more about Java Programming Language. Then you can visit below links to get more depth on this subject.