Question 1 - Create a class namedStudent that has fields for an ID number, numberof credit hours earned, and number of points earned. (For example,many schools compute grade point averages based on a scale of 4, soa three-credit-hour class in which a student earns an A is worth 12points.) Include methods to assign values to all fields. A Studentalso has a field for grade point average. Include a method tocompute the grade point average field by dividing points by credithours earned. Write methods to display the values in each Studentfield. Save this class as Student.java.