Recall & Review
beginner
What does the AVERAGE function do in Google Sheets?
The AVERAGE function calculates the mean (average) of a group of numbers by adding them together and dividing by how many numbers there are.
Click to reveal answer
beginner
How do you write the AVERAGE function to find the average of numbers in cells A1 to A5?
You write:
=AVERAGE(A1:A5). This tells Google Sheets to calculate the average of all numbers in cells from A1 through A5.Click to reveal answer
beginner
What happens if some cells in the range used in AVERAGE are empty or contain text?
Empty cells or cells with text are ignored by the AVERAGE function. It only calculates the average of the numeric values.
Click to reveal answer
intermediate
Can the AVERAGE function handle numbers and cell references mixed together? For example, =AVERAGE(10, A1, 20)
Yes! The AVERAGE function can take numbers, cell references, or ranges mixed together. It averages all the numeric values provided.
Click to reveal answer
intermediate
What is the difference between AVERAGE and MEDIAN functions?
AVERAGE adds all numbers and divides by count, giving the mean. MEDIAN finds the middle number when all numbers are sorted. MEDIAN is less affected by very high or low numbers.
Click to reveal answer
What formula calculates the average of numbers in cells B2 to B6?
✗ Incorrect
The AVERAGE function calculates the mean of the numbers in the specified range.
If cells A1=5, A2=10, A3 is empty, what does =AVERAGE(A1:A3) return?
✗ Incorrect
Empty cells are ignored, so average is (5 + 10) / 2 = 7.5.
Which of these is NOT true about the AVERAGE function?
✗ Incorrect
Empty cells are ignored, not counted as zero.
What will =AVERAGE(4, 8, 12) return?
✗ Incorrect
The average is (4 + 8 + 12) / 3 = 8.
Why might you choose MEDIAN over AVERAGE?
✗ Incorrect
MEDIAN is better when data has very high or low values that skew the average.
Explain how the AVERAGE function works and how to use it with a range of cells.
Think about how you find the average of test scores on paper.
You got /4 concepts.
Describe what happens when the AVERAGE function encounters empty cells or text in the range.
Consider what you do if some answers are missing when calculating an average.
You got /3 concepts.