Final answer:
To solve the problem, create a Student class with student name, ID, and GPA properties, and methods to update the GPA. In the Driver class, instantiate three Student objects, set the properties, and update the GPA. Print the student information with the updated GPA.
Step-by-step explanation:
To solve the problem, we need to create two classes: Student and Driver. In the Student class, we need to define the properties: student name, student ID, and student GPA. We also need to create a method to add 0.20 to the GPA if it is greater than or equal to 80 and add 0.10 if it is less than 3.00. In the Driver class, we can instantiate three Student objects, set their properties, and use the methods to update the GPA. Finally, we can print the student information, including the updated GPA.