Question
Using c# write a program that does the following: 1. Create arrays for: a. First Name b. Last Name c. Major d. GPA e. Credit
Using c# write a program that does the following: 1. Create arrays for: a. First Name b. Last Name c. Major d. GPA e. Credit Hours f. Class Level (to store freshmen, Sophomore, etc.) 2. Create a menu which the following options: a. Add Student b. Display List of Students c. Display Average Student GPA d. Display Average of Student Credit Hours Completed e. Display List of Student Majors f. Display Count of Student Class Level (# of Freshman, Sophomore, etc.) 3. When a user selects one of the above options, perform that action and then return to the menu so the user can select another option 4. Use a loop to remain in the menu until the user is finished. 5. Enjoy the rest of your day. Notes: Set each array's allocation to 50 when you create them. Test every item on your menu to ensure it is working correctly. Use the Console.Clear(); to clear your screen (if desired) Do not ask the user to enter their class level! Your program should determine this based on the number of credit hours entered. Here is break down of class levels: Freshman: 0 to 29 credit hours Sophomore: 30 to 59 credit hours Junior: 60 to 89 credit hours Senior: >= 90 credit hours
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started