package MultipleInterface.com; interface Printable{ default public void showdata(){ System.out.println("Hi I Am Method Of Printable Interface"); } } interface Showable{ default public void showdata(){ System.out.println("Hi I am Method of Showable Interfae "); } } public class Priority implements Printable , Showable{ public static void main(String [] args){ Printable printable = new Priority(); Showable showable = new Priority(); // printable.showdata(); showable.showdata(); } public void showdata(){ Showable.super.showdata(); } }