Computing the Average
 

 

Computing the Average Rules

Add the elements of the list
Count the elements of the list  
Divide the sum of the list by the count of elements in the list.
Given    :  56, 68, 90, 88, 77, 87  

 

               56 + 68 + 90 +88 + 77 + 87 = 466     
                                    6                               6        
Answer :  93.2
 

 

 

 

 

<-- list

<- sum
<- count

Use the sample below to help you compute the average of the practice  problem, then click the "Check" button.

Given the numbers: Sum Count Answer

56, 68, 90, 88, 77, 87

466 6 93.2