1
2
3
4
100

What does the formula =SUM(A1:B5) calculate?

It calculates the sum of the values in cells A1 through B5.

100

How do you find the minimum value in the range A1 to A20?

You can use the formula =MIN(A1:A20).

100

What result does =MAX(B1:B10) produce?

It calculates the maximum value in the range B1:B10.

100

=SUM(A1 A10)

Missing the colon between cell references.

200

What is the result of =AVERAGE(C2:D10,E1)?

 It calculates the average of the values in the range C2:D10 and the single value in cell E1.

200

What result does =AVERAGE(B2:D2) produce?

 It calculates the average of the values in cells B2, C2, and D2.

200

How would you find the sum of values in columns C and D for rows 1 to 20?

You can use the formula =SUM(C1:D20).

200

 =COUNT("A1:A10")

 Including range reference within quotation marks, which treats it as a text string rather than a range.

300

How can you find the maximum value in a range A1:A10?

 use the formula =MAX(A1:A10).

300

How do you find the maximum value in columns F and G for rows 1 to 10?

You can use the formula =MAX(F1:G10).

300

=COUNT(A1:B5, C1:C10) count?

It counts the number of cells containing numbers in the range A1:B5 and the range C1:C10.

300

 =SU(A1:A10)

Misspelling "SUM" as "SU".

400

What does =COUNT(B2:B8,C3:D6) count?

It counts the number of cells containing numbers in the range B2:B8 and the range C3:D6.

400

What does =COUNT(A1:A5, B2:D2) count?

 It counts the number of cells containing numbers in the range A1:A5 and the range B2:D2.

400

How do you find the average of values in cells E1 to E50?

You can use the formula =AVERAGE(E1:E50).

400

 =MAX(A1+A10)

Using arithmetic operator '+' instead of colon ':' for defining the range.

500

How would you calculate the total of values in columns F and G for rows 1 to 10?

You can use the formula =SUM(F1:G10).

500

How would you calculate the sum of values in cells A1 to A100?

You can use the formula =SUM(A1:A100).

500

if you write =MAX(A1:A10, B1), correct the error

=MAX(A1:A10)

500

=AVERAGE(A1, A2, A3)

missing commas to separate individual cell references within the same range instead of using a colon.