Consider the following fragment of a class public class Xyzzy { private int age; private int length; public Xyzzy(int a, int length) { this.age = a; this.length = length; } }