Interface: BasicCalculatorInterface which has these below methods int sum(int x, int y) int sub(int x, int y) int multiplication(int x, int y) int division(int x, int y) ScientificCalculatorInterface int XtoY(int x, int y) Other scientific methods that you find best fit for you Develop necessary class to implement these two interfaces and test from main method.