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