Consider the following Java code for the class Rectangle:
public class Rectangle {
private int length;
private int width;
public Rectangle(int length, int width) {
this.length = length;
this.width = width;
}
public Rectangle(int size) {
this(size, size);
}
}Which of the following statements are true?