Please use Java to answer the question.
(The Rectangle class) Following the example of the Circle class
in Section 8.2,
design a class named Rectangle to represent a rectangle. The class
contains:
■ Two double data fields named width and height that specify the
width and
height of the rectangle. The default values are 1 for both width
and height.
■ A no-arg constructor that creates a default rectangle.
■ A constructor that creates a rectangle with the specified width
and height.
■ A method named getArea() that returns the area of this
rectangle.
■ A method named getPerimeter() that returns the perimeter.
Draw the UML diagram for the class and then implement the class.
Write a test
program that creates two Rectangle objects—one with width 4 and
height 40
and the other with width 3.5 and height 35.9. Display the width,
height, area,
and perimeter of each rectangle in this order.
Please follow the standard output
The·area·of·a·4.0·x·40.0·Rectangle·is·160.0↵
The·perimeter·of·a·4.0·x·40.0·Rectangle·is·88.0↵
The·area·of·a·3.5·x·35.9·Rectangle·is·125.64999999999999↵
The·perimeter·of·a·3.5·x·35.9·Rectangle·is·78.8↵
import java.io.File;
import java.io.FileNotFoundException;
import java.io.PrintWriter;
import java.util.ArrayList;
import java.util.List;
import java.util.Scanner;
import java.util.TreeMap;
class Rectangle{
private double width,height;
Rectangle(){
width = 1;
height = 1;
}
Rectangle(double width, double height){
this.width = width;
this.height = height;
}
public double getArea(){
return width*height;
}
public double getPerimeter(){
return 2*(width+height);
}
public double getWidth() {
return width;
}
public void setWidth(double width) {
this.width = width;
}
public double getHeight() {
return height;
}
public void setHeight(double height) {
this.height = height;
}
}
class Main{
public static void main(String[] args) {
Rectangle r1 = new Rectangle(4,40);
System.out.println("The area of "+r1.getWidth()+" x "+r1.getHeight()+" is "+r1.getArea());
System.out.println("The perimeter of "+r1.getWidth()+" x "+r1.getHeight()+" is "+r1.getPerimeter());
Rectangle r2 = new Rectangle(3.5,35.9);
System.out.println("The area of "+r2.getWidth()+" x "+r2.getHeight()+" is "+r2.getArea());
System.out.println("The perimeter of "+r2.getWidth()+" x "+r2.getHeight()+" is "+r2.getPerimeter());
}
}
OUTPUT :

UML DIAGRAM :

Please use Java to answer the question. (The Rectangle class) Following the example of the Circle...
Following the example of the Circle class in Section 8.2, design a class named Rectangle to represent a rectangle. The class contains: ■ Two double data fields named width and height that specify the width and height of the rectangle. The default values are 1 for both width and height. ■ A no-arg constructor that creates a default rectangle. ■ A constructor that creates a rectangle with the specified width and height. ■ A method named getArea() that returns the...
(The Rectangle class) Following the example of the Circle class in Section 9.2, design a class named Rectangle to represent a rectangle. The class contains: ■ Two double data fields named width and height that specify the width and height of the rectangle. The default values are 1 for both width and height. ■ A no-arg constructor that creates a default rectangle. ■ A constructor that creates a rectangle with the specified width and height. ■ A method named getArea()...
JAVA design a class named Rectangle to represent a rectangle. The class contains: A method named getPerimeter() that returns the perimeter. Two double data fields named width and height that specify the width and height of the rectangle. The default values are 1 for both width and height. A no-arg constructor that creates a default rectangle. A constructor that creates a rectangle with the specified width and height. A method named getArea() that returns the area of this rectangle. design...
NEEDS TO BE IN PYTHON: (The Rectangle class) Following the example of the Circle class in Section 9.2, design a class named Rectangle to represent a rectangle. The class contains: - Two data fields named width and height. - A constructor that creates a rectangle with the specified width and height. The default values are 1 and 2 for the width and height, respectively. - A method named getArea() that returns the area of this rectangle. - A method named...
Within NetBeans, write a Java program for EACH of the following problems. (The Rectangle class) Following the example of the Circle class in Section 9.2, design a class named Rectangle to represent a rectangle. The class contains: · Two double data fields named width and height that specify the width and height of the rectangle. The default values are 1 for both width and height. · A no-arg constructor that creates a default rectangle. · A constructor that creates a...
using c++ E2b:Design a class named Rectangle to represent a rectangle . The class contains: (1) Two double data members named width and height which specifies the width and height of the rectangle . (2) A no-arg constructor that creates a rectangle with width 1 and height 1. (3) A constructor that creates a rectangle with the specified width and height . (4) A function named getArea() that returns the area of this rectangle . (5) A function named getPerimeter()...
Do exercise 9.1 in the book (page 362, or page 384 of the Comprehensive Version of the book) Also add a method named getDiagonal which computes and returns the diagonal of the rectangle. For example the distance from the top left corner to the bottom right corner. Or equivalently the distance from the top right corner to the bottom left corner. Call this method and display it's output in your test program. for the two Rectangle objects. Here is exercise...
rectangle class contains tge following; -three data fields name recname, height and width with default values"Ricky" for recName, 5 for the height and 15 for the width.-default constructor with no arguments -constructor that accept width and height to create a rectangle -the accessor of all data feilds-methods that returns the area of the rectangle called getArea()-methods that returns the perimeter of thr rectangle called getPerimeter()-methods that returns the spring description of the rectangle called toString() Note: the toString() method is...
Design a general class GeometricObject can be used to model all geometric objects. This class contains the properties color and filled and their appropriate get and set methods. Assume that this class also contains toString() methods. The toString() method returns a string representation of the object. Define the Triangle, Circle, and Rectangle classes that extend the GeometricObject class. The Triangle class inherits all accessible data fields and methods from the GeometricObject class.In addition, it has three double data fields named...
please do in java and comments the code so i can understand Requirements: Create a Java class named “MyRectangle2D.java”. Your class will have double two variables named x and y. These will represent the center point of your rectangle. Your class will have two double variables named width and height. These will represent the width and height of your rectangle. Create getter and setter methods for x, y, width, and height. Create a “no argument” constructor for your class that...