Question: I need the java code for implementing this including inheritance and polymorphism where possible. it would helpful if you could add comments or explainations to

I need the java code for implementing this including inheritance and polymorphism where possible. it would helpful if you could add comments or explainations to each step.
Design and implementation of a Shape hierarchy using Object Oriented principles. Implement the Shape hierarchy shown in the UML class diagram below. Each TwoDimensionalshape should contain polymorphic methods getArea and getperimeter to calculate the area and perimeter of the two-dimensional shape. Each ThreeDimensionalShape should have polymorphic methods getArea and getVolume to calculate the surface area and volume of the three-dimensional shape. Create a program that uses an array of shape references to objects of each concrete class in the hierarchy. The program should print a text description of the object to which each array element refers. Also, in the loop that processes all the shapes in the array, determine whether each shape is a TwoDimensionalshape or a ThreeDimensionalshape. If it's a TwoDimensionalshape, display its area and perimeter. If it's a ThreeDimensionalshape, display its area and volume
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
