for this exercise you will write a class named area. the area class should provide static methods that calculate the areas of different geometric shapes. the class should have three overloaded static methods named getarea. here is a description of each method: the first version of the static getarea method will calculate the area of a circle. it should accept the circle's radius as a double, and return the circle's area as a double. see the formula below for calculating the area of a circle. the second version of the static getarea method will calculate the area of a rectangle. it should accept the rectangle's length and width as doubles, and return the rectangle's area as a double. see the formula below for calculating the area of a rectangle. the third version of the static getarea method will calculate the area of a trapezoid. it should accept the trapezoid's base