Answered step by step
Verified Expert Solution
Question
1 Approved Answer
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 : voidStep 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