Write a C++ program to select Teaching Assistants (TAs). The program takes as input, the student’s cgpa and student’s gpa in programming course and checks whether the student is eligible for TA or not. A student is eligible for TA only if he/she has a CGPA above 3 and his/her GPA in programming course is also above 3. Otherwise he will not be offered any TA. For all those students, who satisfy the condition for eligibility of TA (cgpa and gpa is greater than 3), There are four types of TA, offered to a student according to following criteria.
- Full time TA if he/she is student of MS.
- Part time TA if he/she is student of BS.
The program takes input, the type of degree in a variable of type char, where ‘M’ is for MS student and ‘B’ represents BS student.
Comments
Leave a comment