Question: Exercise #1: Design and implement java class Rectangle to represent a rectangle object. The class defines the following attributes (variables) and methods: 1. Two class

Exercise #1: Design and implement java class Rectangle to represent a rectangle object. The class defines the following attributes (variables) and methods:

1. Two class (changed from private) variables of type double named height and width to represent the height and width of the rectangle. Set their default values to 1 in the default constructor. (Added clarification)

2. A non-argument constructor method to create a default rectangle. (Added clarification)

3. Another constructor method (Python only: using classmethod decorator) (Changed since Python does not support method overloading) to create a rectangle with user-specified height and width.

4. Method getArea() that returns the area.

5. Method getPerimeter() that returns the perimeter.

6. Method getHeight() that returns the height.

7. Method getWidth() that returns the width.

Now design and implement a test program to create two rectangle objects: one with default height and width, and the second is 5 units high and 6 units wide. Next, test the class methods on each object to print the information as shown below.

Sample run:

First object:

Height: 1 unit

Width: 1 unit

Area: 1 unit

Perimeter: 4 units

Second object:

Height: 5 unit

Width: 6 unit

Area: 30 units

Perimeter: 22 units

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!