Question: The language needs to be written in C#. Create a Student class Data members . Student Number . First Name Last Name Classification (1st yr,

The language needs to be written in C#.
Create a Student class Data members . Student Number . First Name Last Name Classification (1st yr, 2nd yr ...) Major O Constructors . Default constructor - A constructor that only accepts the student number, first and last name A constructor that accepts all the data members o Include property members (see Example 4-8 on page 210-211) get/set methods 0 Instance methods Returns Student full name (first and last) along with their major . Returns Student number, full name, and classification Override ToString() method to display all data members Create a StudentApp that tests the constructors, instance methods, and properties defined in the Student class. Student - studentNum: string - firstName: string - lastName: string - classification: string - major: String StudentApp NS1: Student NS2: Student NS3: Student + Student + Student(number:string, first: string, last: string) + Student(number:string, first: string, last: string, classification: string, major: String) + StudentNum(): string + FirstName():string + LastName(): string + Classification(): string + Major(): string +ReturnStudentClassification Info: string +ReturnStudentMajorInfo(): string +ToString(): string + Main : void
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
