1: //TestPerson.java 3: public class TestPerson 4: { 5: public static void main(String[] args) 6: { 7: Student myStudent = new Student("James", 10, 3.2); 8: Teacher myTeacher = new Teacher("Dali", 37, "Art"); 10: myStudent.printInfo(); 11: System.out.println(); 12: myTeacher.printInfo(); 13: } 14: }