Answered step by step
Verified Expert Solution
Question
1 Approved Answer
Write a function called passingAverage using function expression notation with the following parameters & return value: Parameters: This function takes an unknown number of parameters
Write a function called "passingAverage" using function expression notation with the following parameters & return value: Parameters: This function takes an unknown number of parameters representing a list of grades (positive, whole numbers). For example, it may be called with 3 parameters (ie: passingAverage(75, 42, 98)), or 5 parameters (ie: passingAverage(34, 93, 77, 89, 49). Return value: true if the average of all provided grades is greater than 49 and false if the average of all provided grades is less than or equal to 49. For example, if the provided parameters are 59, 42, 94 and 72, the function will return true (since the average of 59, 42, 94 and 72 is greater than 49). Similarly, if the provided parameters are 43, 53 and 39 the function would return false (since the average of 43, 53 and 39 is less than or equal to 49)
Step 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