Question
Write a function called as ALES_Score_Calculator which calculates the ALES score of the applicant and decides if he/she has good enough scores for being apply
Write a function called as ALES_Score_Calculator which calculates the ALES score of the applicant and decides if he/she has good enough scores for being apply "Master of Science" programs. ALES has two parts called as verbal and quantitative, and the two input arguments of your function, named as v and q, will represent these parts respectively. There is no need to check the inputs. The applicant can apply to Master programs if the average percentile is at least 90% and both of the individual percentiles are over 86%. The function will return logical true or false. The verbal and quantitative parts have the same level of contribution in average percentile calculation.
Some example usages of the function is given below;
Please upload your written function as a m.file (if .m file type is not supported, please upload your function as a .txt file).
>> admit = ALES_Score_Calculator (90,88) admit = logical 0 >> admit = ALES_Score_Calculator (90,92) admit = logical 1 >> admit = ALES_Score_Calculator (85,99) admit = logical 0Step 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