Input
Output
public class Interface{ public static void main(String args[]) { Student s1=new Student(); s1.showdata(); } } interface Roll { int rollno = 10; } interface Name { String name = "Sundarrajan"; void showdata(); } class Student implements Name,Roll { public void showdata() { System.out.println(rollno+" "+name); } }