public class Student { private static final int NUM_EXAMS = 4; private String firstName; private String lastName; private int gradeLevel; private double gpa; private int[] exams; private int numExamsTaken; /** * This is a constructor. A constructor is a method * that creates an object — it creates an instance * of the class. What that means is it takes the input * parameters and sets the instance variables (or fields)