The aim of this homework assignment is to practice writing classes. This homework assignment will help build towards project 1, which will be to write a program implementing Management of Rosters System.

For this assignment, write a class called Student. This class should contain information of a single student. This information includes:

last name,
first name,
standing,
credits,
gpa,
date of birth,
matriculation date.

For now you can store date of birth and date of matriculation as strings. Your class should support the following functions:

1. Constructor that initializes a Student by accepting all the parameters.
2. Default constructor that initializes everything to default values.
3. Accessor functions for each private instance variable.
4. Mutator functions for each private instance variable.
5. Input function to solicit the information.
6. Output function to print out the information about the student to console.
7. Any other necessary functions you feel are appropriate.

Make sure that the standing is set based on credits and not passed in as a parameter.

When you call mutator function on credits, or initialize an object in a constructor, or through input function, that is where the standing is set.

Write a driver program to test you class.

Academic Honesty!
It is not our intention to break the school's academic policy. Posted solutions are meant to be used as a reference and should not be submitted as is. We are not held liable for any misuse of the solutions. Please see the frequently asked questions page for further questions and inquiries.
Kindly complete the form. Please provide a valid email address and we will get back to you within 24 hours. Payment is through PayPal, Buy me a Coffee or Cryptocurrency. We are a nonprofit organization however we need funds to keep this organization operating and to be able to complete our research and development projects.