InterfaceWrite a Java Program with the following guidelinesCreate an Interface Shape with one

InterfaceWrite a Java Program with the following guidelines:Create an Interface Shape with one method to compute area.Create a constant Math.PI for the circle inside this interface.Implement the interface for Circle, Square and Rectangle and build logic inside the method to compute the areas for the different shapes.Create a class called App with a main method that calls the compute are for each of the shapes and computes the area.

Read More