akosiraff

Student Class C# 2010

Mar 28th, 2013
137
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.91 KB | None | 0 0
  1. Download: http://solutionzip.com/downloads/student-class-c-2010/
  2.  
  3. Create an abstract class calles Student. The student class includes studentID, LastName, firstName and is FullTime. is FullTime is to represent whether the student is full-time student or not. Include an abstract method to determine the tuition, with full -time students paying a flat fee of $2000 and part-time students paying$ 100 per credit hour.
  4. Create two subclasses called FullTimeStudent, PartTimeStudent. Write a driver class to test the classes you defined by creating two objects of FUllTime Student and Two objects of PartTimeStudent.The students’ information input by user. Display all these 4 students’ information and their tuition.
  5. Secondly, store these 4 objects in a Student array. Display all these 4 students’ information and their tuition by retrieving the array elements
  6.  
  7. Download: http://solutionzip.com/downloads/student-class-c-2010/
Advertisement
Add Comment
Please, Sign In to add comment