// Java Name - // Inheritance Tracing Worksheet #2 Period - // Trace the following code using the applicable Person2, Student2 & APStudent2 classes. // Print any output that is produced to the right of the line of code that produces it. // Explain any compile or run-time errors next to the applicable line of code and then // ignore the error and continue tracing the program. public class APStudent2Test { public static void main(String[] args) { APStudent2 apJoe1 = new APStudent2(); System.out.println(apJoe1); APStudent2 apJoe2 = new APStudent2(3); System.out.println(apJoe2); APStudent2 apJoe3 = new APStudent2(10, 5); System.out.println(apJoe3); } }