Question: You have to write a C# app that will consist of three classes other than the driver class. Class 1: Student Properties: SID, LastName, FirstName,
You have to write a C# app that will consist of three classes other than the driver class.
Class 1: Student
Properties: SID, LastName, FirstName, Address,
Method: displayStudentinfo
Class 2: Course
Properties: CID, Credit, Title, Faculty
Method: displayCourseinfo
Class 3: Grade
Instant variable: sid, cid, gradepoint
Properties: LetterGrade
Method: getGradepoint
Method: setGradepoint
Note: You may add other methods and instant variables to implement the required functionalities of the app.
Driver class:
- Create an array of 10 objects of Student class
- Create an array of 10 objects of Couse class
- Create an array of 10 objects of Grade class
- Write a do-while loop that will display the following menu and get an option from the user:
- Enter Student info
- Enter Course info
- Enter Grade info
- Display Student info by ID
- Display Course info by ID
- Display Student Transcript
- List of students sorted by their GPA
- Exit the app
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
