Question: 1. Java Create a class Shape which performs the following. a. Provide a method areaCircle which takes one parameter radius as double, calculates and returns

 1. Java Create a class Shape which performs the following. a.

1. Java Create a class Shape which performs the following. a. Provide a method areaCircle which takes one parameter radius as double, calculates and returns the area of the circle as double. [Formula: Area=r'] b. Provide a method circumCircle which takes one parameter radius as double, calculates and returns the circumference of the circle as double. [Formula: Circumference=2ru] c. Provide a method sphereSurfaceArea which takes one parameter radius as double, calculates and returns the surface area of the sphere as double. [Formula: Surface Area=4r"] d. Provide a method sphere Volume which takes one parameter radius as double, calculates and returns the volume of the sphere as double. [Formula: Volume=4/3r'] Note: All the methods are static. Use PI and power method from Math class. Create a class Shape Test which performs the following a. Read the radius from the user until radius is 0. b. Call the methods to display the area, circumference, surface area and volume. Sample Output Enter radius to stop (0) :: 3 Area of the circle for the 3.00 radius = 28.27 Circumference of the circle for the 3.00 radius = 18.85 Surface area of the sphere for the 3.00 radius = 113.10 Volume of the sphere for the 3.00 radius = 113.10 Enter radius to stop (0) : 6 Area of the circle for the 6.00 radius = 113.10 Circumference of the circle for the 6.00 radius = 37.70 Surface area of the sphere for the 6.00 radius = 452.39 Volume of the sphere for the 6.00 radius = 904.78 Enter radius to stop (0) :: 4 Area of the circle for the 4.00 radius = 50.27 Circumference of the circle for the 4.00 radius = 25.13 Surface area of the sphere for the 4.00 radius = 201.06 Volume of the sphere for the 4.00 radius = 268.08 Enter radius to stop (0) :: 0 Thank you for using

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!