Question: Using the code from Rectangle.java in 6 . 2 ( Not the updated version in 0 . 4 ) wno would you create a rectangle

Using the code from Rectangle.java in 6.2(Not the updated version in 0.4) wno would you create a rectangle that has a length of 4.5 and a width of 2.5?
Rectangle rec = new Rectangle(4.5,2.5);
Rectangle rec = new Rectangle();
rec.setLength(4.5);
rec.setWidth(2.5);
Rectangle rec = new Rectangle(2.5,4.5);
Rectangle rec = new Rectangle();
rec.setLength(2.5);
rec.setWidth(4.5);
 Using the code from Rectangle.java in 6.2(Not the updated version in

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!