Assignment Chef icon Assignment Chef

[SOLVED] Cs211 homework 2 the aim of this homework assignment is to practice writing classes.

5.0 1 customer review Digital download

Digital download

$25.00

Availability
In stock
Checkout
One item

Need a hand?

Message us on WhatsApp for payment or download support.

WhatsApp QR code
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: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. Standing is:Lower Freshman         0 <= credits < 15Upper Freshman         15 <= credits < 30
Lower Sophomore      30 <= credits < 45Upper Sophomore       45 <= credits < 60Lower Junior              60 <= credits < 75Upper Junior               75 <= credits < 90Lower Senior              90 <= credits < 105Upper Senor                105 <= credits  Write a driver program to test you class.Submit the assignment to your lab instructor.