Question: 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

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

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!