Interface with extends
Interface class =========== an interface class extends with another interface class and implements with a class. example code shown below. import java.io.*; interface interone { public void addition() throws IOException; } interface intertwo { public void subtraction() throws IOException; } interface interthree extends intertwo // An interface class can be extended to another interface class { public void multiplication() throws IOException; } class exampleclass1 implements interone,interthree { DataInputStream ds=new DataInputStream(System.in); int a,b,c; public void addition() throws IOException { System.out.println("Enter two values for Addition"); a=Integer.parseInt(ds.readLine()); b=Integer.parseInt(ds.readLi...