2. Import Class a) Implement a class Rectangle with two attributes, width and height. b) Implement an init method with an optional parameter type. Set the default value of the attributes of width and height to 1. c) Implement a display method to print the values of width and height. d) Implement a serwidth method to assign width to the instance variable. e) Implement a setHeight method to assign height to the instance variable. f) Implement a getWidth method to return the value of the instance variable width. g) Implement a getHeight method to return the value of the instance variable height. h) Implement an area method to return the value of area of a rectangle. i) Save Rectangle class as rectangle.py. j) Import Rectangle class from rectangle.py. k) Employs the Rectangle class methods above to set and get various measurements of a rectangle. 1) Instantiate two objects of type rectangle, one with arguments one without. rl = Rectangle (4, 5) r2 = Rectangle () 2) Call display() to print width and height. 3) Call area() in print() to display the area of rl and r2. 4) Call setWidth() and setHeight() to update radius to 6 of r2. 5) Call getWidth() in print() to display the updated width of r2. 6) Call getHeight() in print() to display the updated height of r2. 7) Call area() in print() to display the area of r2. Example Output Width: 4 Height: 5 Area: 20 Width: 1 Height: 1 Area: 1 Get Width: 6 Get Height: 6 Area: 36

Database System Concepts
7th Edition
ISBN:9780078022159
Author:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Chapter1: Introduction
Section: Chapter Questions
Problem 1PE
icon
Related questions
Question

Note: It`s python coding

 

2. Import Class
a) Implement a class Rectangle with two attributes, width and height.
b) Implement an init method with an optional parameter type.
Set the default value of the attributes of width and height to 1.
c) Implement a display method to print the values of width and height.
d) Implement a serwidth method to assign width to the instance variable.
e) Implement a setHeight method to assign height to the instance variable.
f) Implement a getWidth method to return the value of the instance variable width.
g) Implement a getHeight method to return the value of the instance variable height.
h) Implement an area method to return the value of area of a rectangle.
i) Save Rectangle class as rectangle.py.
j) Import Rectangle class from rectangle.py.
k) Employs the Rectangle class methods above to set and get various measurements of a rectangle.
1) Instantiate two objects of type rectangle, one with arguments one without.
rl = Rectangle (4, 5)
r2 = Rectangle ()
2) Call display() to print width and height.
3) Call area() in print() to display the area of rl and r2.
4) Call setWidth() and setHeight() to update radius to 6 of r2.
5) Call getWidth() in print() to display the updated width of r2.
6) Call getHeight() in print() to display the updated height of r2.
7) Call area() in print() to display the area of r2.
Example Output
Width: 4
Height: 5
Area: 20
Width: 1
Height: 1
Area: 1
Get Width: 6
Get Height: 6
Area: 36
Transcribed Image Text:2. Import Class a) Implement a class Rectangle with two attributes, width and height. b) Implement an init method with an optional parameter type. Set the default value of the attributes of width and height to 1. c) Implement a display method to print the values of width and height. d) Implement a serwidth method to assign width to the instance variable. e) Implement a setHeight method to assign height to the instance variable. f) Implement a getWidth method to return the value of the instance variable width. g) Implement a getHeight method to return the value of the instance variable height. h) Implement an area method to return the value of area of a rectangle. i) Save Rectangle class as rectangle.py. j) Import Rectangle class from rectangle.py. k) Employs the Rectangle class methods above to set and get various measurements of a rectangle. 1) Instantiate two objects of type rectangle, one with arguments one without. rl = Rectangle (4, 5) r2 = Rectangle () 2) Call display() to print width and height. 3) Call area() in print() to display the area of rl and r2. 4) Call setWidth() and setHeight() to update radius to 6 of r2. 5) Call getWidth() in print() to display the updated width of r2. 6) Call getHeight() in print() to display the updated height of r2. 7) Call area() in print() to display the area of r2. Example Output Width: 4 Height: 5 Area: 20 Width: 1 Height: 1 Area: 1 Get Width: 6 Get Height: 6 Area: 36
Expert Solution
trending now

Trending now

This is a popular solution!

steps

Step by step

Solved in 3 steps with 1 images

Blurred answer
Knowledge Booster
Concept of pointer parameter
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.
Similar questions
  • SEE MORE QUESTIONS
Recommended textbooks for you
Database System Concepts
Database System Concepts
Computer Science
ISBN:
9780078022159
Author:
Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:
McGraw-Hill Education
Starting Out with Python (4th Edition)
Starting Out with Python (4th Edition)
Computer Science
ISBN:
9780134444321
Author:
Tony Gaddis
Publisher:
PEARSON
Digital Fundamentals (11th Edition)
Digital Fundamentals (11th Edition)
Computer Science
ISBN:
9780132737968
Author:
Thomas L. Floyd
Publisher:
PEARSON
C How to Program (8th Edition)
C How to Program (8th Edition)
Computer Science
ISBN:
9780133976892
Author:
Paul J. Deitel, Harvey Deitel
Publisher:
PEARSON
Database Systems: Design, Implementation, & Manag…
Database Systems: Design, Implementation, & Manag…
Computer Science
ISBN:
9781337627900
Author:
Carlos Coronel, Steven Morris
Publisher:
Cengage Learning
Programmable Logic Controllers
Programmable Logic Controllers
Computer Science
ISBN:
9780073373843
Author:
Frank D. Petruzella
Publisher:
McGraw-Hill Education