Question: Java Programming. Please share the screenshot also. Thanks in advance. public class Square i private double side; *Sets the side of the square * @param

Java Programming. Please share the screenshot also. Thanks in advance.
public class Square i private double side; *Sets the side of the square * @param s the length of a side public Square (double s side = 3; * Update the side of the square *param s the length of a side public void setside double s) side3 *Returns the current value of a side. *return a double the length of a side>. public double getSide) return side * Returns a message containing the value of the side * return a StringK/code with the length of a side public String testxina) t return "Square with side"+side: Square class has an instance variable side, that is private and of type double. It has a constructor that accepts a value for side, as well as accessor and mutator methods getide and setside Write the class definition of a subclass of Square called MySquare that includes a method called perimeter. The method gets no arguments and returns the perimeter of the square, a constructor that accepts the value of side and passes it to the superclass constructor, and a no-argument constructor that passes a value of 10.0 to the superclass constructor You should not modify Square. Make sure subclass compiles and works correctly
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
