1.) According to the UML Class Diagram, these are the mutator
and accessor methods that you need to define:
1a.) +setName(value:String):void
1b.) +setGPA(value:double):void
1c.) +setID(value: String):void
1d.) +getName(): String
1e.) +getLastName():String
2.) Working with constructors
2a.) +Student() : This is the default constuctor. For the
Strings properties, initialize them to null. The order is String
ID, String name, String lastName, and double GPA.
2b.) +Student(value:String) - This constructor receives just the
ID.
2c.) +Student(value:String, var: String) - This constructor
receives...