errr3400 errr3400 10-03-2020 Computers and Technology contestada Suppose you create a class Square to be a subclass of GeometricObject. Analyze the following code: class Square extends GeometricObject { double length; Square(double length) { GeometricObject(length); } }