public class APStudent2 extends Student2 { private int myAPExamScore; public APStudent2() { super(); myAPExamScore = 3; System.out.println("APStudent2 was constructed"); } public APStudent2(int examScore) { myAPExamScore = examScore; } public APStudent2(int grade, int examScore) { super(grade); myAPExamScore = examScore; } public String toString() { return super.toString() + " myAPExamScore = " + myAPExamScore; } }