1: (Passing Objects to Methods) From the following UML ClassDiagram, define the Circle class in Java. Circle Circle Radius:double Circle() Circle(newRadius: double) getArea(): doublesetRadius(newRadius: double): void getRadius(): double Aftercreating the Circle class, you should test this class from themain() method by passing objects of this class to a method “ publicstatic void printAreas(Circle c, int times)†You should display thearea of the circle object 5 times with different radii.