Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

In java Implement the Shape hierarchy shown in Fig. 1. Each Two DimensionalShape should contain method getArea to calculate the area of the two-dimensional shape.

image text in transcribed

image text in transcribed

In java

Implement the Shape hierarchy shown in Fig. 1. Each Two DimensionalShape should contain method getArea to calculate the area of the two-dimensional shape. Each Three DimensionalShape should have methods getArea and getVolume to calculate the surface area and volume, respectively, 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 Two DimensionalShape or a Three DimensionalShape. If a shape is a Two DimensionalShape, display its area. If a shape is a Three DimensionalShape, display its area and volume. In your design you must define the class Shape is an abstract class. display its area and volume. In your design you must define the class Shape is an abstract class. Your output should appear as follows: Circle: (22, 88) radius: 4 Circle's area is 50 Square: (71, 96) side: 10 Square's area is 100 Sphere: (8, 89) radius: 2 Sphere's area is 50 Sphere's volume is 33 Cube: [79, 61) side: 8 Cube's area is 384 Cube's volume is 512 TweDimensional Shape Three Dimensional Shape Figure 1: Inheritance hierarchy UML class diagram for Shapes

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Databases Theory And Applications 27th Australasian Database Conference Adc 20 Sydney Nsw September 28 29 20 Proceedings Lncs 9877

Authors: Muhammad Aamir Cheema ,Wenjie Zhang ,Lijun Chang

1st Edition

3319469215, 978-3319469218

More Books

Students also viewed these Databases questions

Question

4. Describe cultural differences that influence perception

Answered: 1 week ago