Question
1. Please write the following program in Python 3. Also, please create a UML and write the test program. Please show all outputs. (The Fan
1. Please write the following program in Python 3. Also, please create a UML and write the test program. Please show all outputs.
(The Fan class) Design a class named Fan to represent a fan. The class contains:
Three constants named SLOW, MEDIUM, and FAST with the values 1, 2, and 3 to denote the fan speed.
A private int data field named speed that specifies the speed of the fan.
A private bool data field named on that specifies whether the fan is on (the default is False).
A private float data field named radius that specifies the radius of the fan.
A private string data field named color that specifies the color of the fan.
The accessor and mutator methods for all four data fields.
A constructor that creates a fan with the specified speed (default SLOW), radius (default 5), color (default blue), and on (default False).
Draw the UML diagram for the class and then implement the class. Write a test program that creates two Fan objects. For the first object, assign the maximum speed, radius 10, color yellow, and turn it on. Assign medium speed, radius 5, color blue, and turn it off for the second object.Display each objects speed, radius, color, and on properties.
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started