Reference no: EM132330149
Activity
1- Consider the following program:
rect=Rectangle2D(4,5)
print (rect, "area="+str(rect. area( ) ) )
-with the corresponding output:
w=4, h=5 area=20
Write the class Rectangle2D using the public attributes w, h (for width and height).
2- Consider the following program:
box=Box3D (4 ,5,2)
print (box, "volume="+str(box. volume ( ) ) )
-with the corresponding output:
w=4, h=5, d=2 volume=40
Write the class Box3D that inherits from Rectangle2D and uses the additional public attribute d (for depth). Every methods should use the super operator (including the constructor_init_).
3- Consider the following program:
box1=Box 3D ( 2 , 2, 1)
box2=Box 3D ( 2 , 1, 2)
box3=Box 3D ( 3, 4, 3)
print (box1+box2)
print (box3-box2)
print (box]*box2*box3)
print ( (boxl*box2) /2)
with the corresponding output:
w=4, h=3, d=3
w=1, h=3, d=1
w=12, h=8, d=6
w=2.0, h=1.0, d=1.0
Write the new methods you would have to implement in the class Box3D to enable such operator overloading results as shown above.
4- Consider the following program:
box=Box 3D ( 3, 2, 1)
faces=box. extract_faces ( )
for rect in faces:
print (rect)
-with the corresponding output:
w=3. h=2
w=3,h=1
w=2. h=1
Write the method extract_faces ( ). Use instances of the Rectangle2D class.
Under what circumstances might each be employed
: According to the text, what four broad categories of criminal defenses does our legal system recognize? Under what circumstances might each be employed?
|
Identifying and evaluating the constitutional safeguards
: Write a 1,400- to 1,750-word paper identifying and evaluating the constitutional safeguards provided by the 4th, 5th, and 6th Amendments to the United States.
|
Is it ethical for prisons to focus on profit
: Is it ethical for prisons to focus on profit? Why or why not? Do you support the phasing out of corporate-run prisons by the Justice Department? Why or why not?
|
How should we balance the need to collaborate
: How should we balance the need to collaborate and cooperate for the benefit of all with the need to maintain maximum advantage (if however slight) over.
|
Write the new methods you would have to implement in class
: Write the class Box3D that inherits from Rectangle2D and uses the additional public attribute d. Every methods should use the super operator.
|
What the results to each party would be
: Create a hypothetical scenario in which an innocent, routine interaction between a citizen in a public place and the police could result in a continuing.
|
Write a while loop that keeps printing the menu selection
: An inventory of the media store is displayed when option 1 is selected. We can see the references, media type, title and price of each item.
|
Display the number of seats sold and the revenue collected
: Python program that obtains the number of Reserved Seating tickets that have been sold for a recent event and totals their revenue.
|
What is the more effective method of delivery a nebuliser
: 92440 Evidence for Nursing Assignment, University of Technology Sydney, Australia. What is the more effective method of delivery- a nebuliser or a spacer
|