Question: c++ Question 3 (9+ 5 marks ) (A) Write a function called Admission that accepts three parameters: School Score SS (double), Written Test Score TS

c++
Question 3 (9+ 5 marks ) (A) Write a function called Admission that accepts three parameters: School Score SS (double), Written Test Score TS (double) and Interview Score IS (double). The function will calculate total score as follows: total score = School Score + Written Test Score + Interview Score Then the function will return admitted college (string) as follows: total Score admitted college 290 Engineering 80 to 89 IT = 90) return "Engineering"; else if (total >= 80) return "IT"; else return "Others"; }
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
