A
B
C
D
100

Which function capitalizes the first letter of each word?

PROPER

100

Which function finds the largest number in a range?

Max

100

Write a formula to find the average of cells D1 through D10.

=AVERAGE(D1:D10)

100

What’s wrong with this formula? =SUUM(A1:A10)

The function name is misspelled; it should be =SUM

200

Which function adds up a range of numbers?

Sum

200

What’s wrong with this formula?

=SQRT(A1:A5)  

The SQRT function only works on a single value, not a range. Correct formula: =SQRT(A1) (for a single cell)

200

What’s wrong with this formula? 

=AVERAGE(A1+A2:A5)

Mixing a single cell (A1) with a range (A2:A5) is incorrect for AVERAGE. 

Correct formula: =AVERAGE(A1, A2:A5)

200

Fill in the blank: 

=________(“hello world”) to capitalize all letters.

Upper

300

Which function finds the smallest number in a range?

Min

300

What’s wrong with this formula?

=SUM(A1 A2:A5)  

The comma is missing between A1 and the range A2:A5. 

Correct formula: =SUM(A1, A2:A5)

300

Fill in the blank: 

=________(B1:B5) to add the values in the range.

Sum

300

Fill in the blank: 

=________(D1:D8) to find the smallest value.

Min 

400

Write a formula to find the maximum value of cells B1, B2, and B3.

=MAX(B1, B2, B3)

400

Fill In the Blank: 

=________(A1:A10) to find the highest value.

Max

400

Write a formula to convert the text in cell C1 to lowercase.

=LOWER(C1)

400

Which function averages a set of numbers?

Average

500

Write a formula to calculate the sum of cells A1 through A10.

=SUM(A1:A10)

500

What’s wrong with this formula? 

=MINIMUM(A1:A10)

There is no MINIMUM function in Excel; use MIN. 

Correct formula: =MIN(A1:A10)

500

Which function would you use to calculate the square root of a number?

Sqrt

500

Write a formula to find the average of cells B2 to B6.

=AVERAGE(B2:B6)

M
e
n
u