wayground logo

Free Printable Worksheets

Font size

S
M
L
XL
Worksheets

AutoSum and Average Functions

Total questions: 53

Worksheet time: 52mins

Name
Class
Date
1.

Which Excel tabs commonly include the AutoSum button for quick calculations?

a)

View and Developer tabs

b)

Data and Review tabs

c)

Insert and Page Layout

d)

Home and Formulas tabs

2.

What does the AVERAGE function calculate in a range of numbers?

a)

Sum of all text entries

b)

Largest value in range

c)

Total count of cells

d)

Arithmetic mean of values

3.

Fill in the blank: The arithmetic mean is found by (a)   the values and dividing by the number of values.

4.

Where can you access more functions beyond SUM using the AutoSum dropdown?

a)

Arrow to the right of AutoSum

b)

Right-click the worksheet

c)

Format Cells dialog

d)

Status bar quick menu

5.

You have numbers 2, 3, 3, 5, 7, and 10. Using AVERAGE, what result should Excel return?

a)

6

b)

4

c)

5

d)

7

6.

Which function would you choose to find the smallest number in a list using the AutoSum menu?

a)

AVERAGE

b)

COUNT

c)

MAX

d)

MIN

7.

A class has six grades: 70, 80, 85, 90, 95, and 0 (absent). If zeros are not counted, what is the class average using AVERAGE?

4 lines
8.

Which Excel function counts only cells containing numbers within a range?

a)

COUNTBLANK counts empty cells only

b)

MAX counts the highest numeric value

c)

COUNT counts cells with numbers only

d)

COUNTA counts all non-empty cells

9.

What does the Count field on the status bar show when you select cells?

a)

Total including empty cells

b)

Number of selected numeric cells

c)

Number of selected non-empty cells

d)

Number of selected empty cells

10.

Write the basic syntax to count numeric cells in range A1:A7 using Excel.

(a)  

11.

Which statement describes COUNTA correctly?

a)

Counts only numbers and dates

b)

Counts blanks and errors together

c)

Counts any non-empty cell content

d)

Counts only text values in ranges

12.

If you need to count blank cells in two separate ranges, what approach should you use?

a)

COUNTA(range1)+COUNTA(range2)

b)

COUNT(range1)+COUNT(range2)

c)

MAX(range1)+MIN(range2)

d)

COUNTBLANK(range1)+COUNTBLANK(range2)

13.

Which cells are ignored by the COUNT function?

a)

Numbers, dates, errors

b)

Text, logical values, blanks

c)

Only blank cells in tables

d)

All cells with content

14.

You have numbers 10, 86, 87, 15, 1, 16, 54, 68, 90, 62 in A1:A10. Which formula returns the largest number?

a)

=COUNTBLANK(A1:A10)

b)

=COUNTA(A1:A10)

c)

=MAX(A1:A10)

d)

=MIN(A1:A10)

15.

What is the purpose of the MIN function in Excel?

a)

Returns the total of values

b)

Returns the smallest value

c)

Returns the largest value

d)

Returns the average value

16.

Provide the general syntax for the MIN function using two arguments.

(a)  

17.

Explain how MIN handles different types of values and arguments. Include limits and special cases.

4 lines
18.

Which argument in the IF function holds what Excel returns when the condition is true?

a)

value_if_false argument

b)

criteria argument

c)

logical_test argument

d)

value_if_true argument

19.

Fill in the exact IF syntax placeholders: IF(logical_test, (a)   , value_if_false).

20.

What are the only two possible outcomes of an IF function’s logical test?

a)

Positive and negative

b)

Equal and not equal

c)

True and False

d)

Greater and lesser

21.

Write an IF formula that returns "Pass" if B2 is greater than or equal to 70, otherwise returns "Fail".

4 lines
22.

In the example IF(A2="RED",TRUE,FALSE), what will Excel display if A2 contains the text RED?

a)

It leaves the cell blank

b)

It returns TRUE value

c)

It shows the number 0

d)

It displays FALSE value

23.

Which statement correctly describes value_if_false in the IF function?

a)

Must be a text string only

b)

Returned when logical_test is true

c)

Optional and returns FALSE if omitted

d)

Always returns zero by default

24.

What does the SUMAR.SI (SUMIF) function compute?

a)

Maximum value in a range

b)

Average of values matching criteria

c)

Sum of values meeting a condition

d)

Count of cells with any number

25.

Provide a SUMIF formula to add values in A1:A20 that are strictly greater than 20.

4 lines
26.

Which two arguments are required by SUMAR.SI (SUMIF)?

a)

Range and criteria

b)

Criteria and sum_range

c)

Logical_test and result

d)

Column and row

27.

If the data in A1:A3 are 22, 0, and 20, what will =SUMAR.SI(A1:A3,">20") return?

a)

20 only

b)

22 only

c)

42 total

d)

0 total

28.

Fill the blank: To sum values equal to 20 in A1:A3, use (a)   .

29.

Explain when you would use SUM instead of SUMAR.SI.

4 lines
30.

In PROMEDIO.SI, which argument is optional and lets you average values from a different set of cells?

a)

Criteria argument

b)

Range argument

c)

Delimiter argument

d)

Average_range argument

31.

Fill in the blank with the correct criterion symbol: To average values greater than sixty thousand, use (a)   in the criteria.

32.

Given the formula =PROMEDIO.SI(D2:D13, "<40000", C2:C13), which column provides the values being averaged?

a)

Neither column is averaged

b)

Both columns C and D are averaged

c)

Column D provides the averaged values

d)

Column C provides the averaged values

33.

If no cells satisfy the condition in PROMEDIO.SI, what result should you expect?

a)

A blank cell is displayed

b)

The average of the entire range

c)

Zero is returned

d)

#DIV/0! error appears

34.

Why might you use the Average_range argument instead of omitting it?

4 lines
35.

Excel can evaluate math expressions inside function arguments. What is the order of operations when using expressions as arguments?

a)

Randomly chooses an order each time

b)

Evaluate left to right without rules

c)

Run the function first, then solve expressions

d)

Solve expressions first, then run the function

36.

Using A1=1, A2=5, A3=2, A4=4, what is the result of =SUM((A1+A3),(A2-A4))?

a)

Result equals five

b)

Result equals nine

c)

Result equals three

d)

Result equals seven

37.

Which Excel function joins two or more text strings into one cell outcome?

a)

MID merges characters from positions

b)

EXACT combines compared cell contents

c)

CONCATENATE joins multiple text strings

d)

AVERAGE appends numbers as text

38.

In CONCATENATE, what is the only required argument to start the function?

a)

Cell format, the style type

b)

Text1, the first text string

c)

Text2, the optional string

d)

Delimiter, a joining symbol

39.

What does the EXACT function return when A1 contains "Monday" and B1 contains "MONDAY"?

a)

FALSE because case is different

b)

Error because cells are text

c)

TRUE because spaces are ignored

d)

TRUE because letters match

40.

Fill in the blank: The EXACT function is (a)   -sensitive.

41.

Which pair best describes the MID function parameters?

a)

start_position and num_characters

b)

start_position and delimiter

c)

text and cell format

d)

row number and column label

42.

If you use =MID("TK-2022",2,2), what result do you get?

a)

K-

b)

T-

c)

TK

d)

-2

43.

Why might MID return the error value #VALUE!?

a)

num_characters is negative

b)

text argument is uppercase

c)

cells are formatted as numbers

d)

start_position equals 1

44.

Explain how EXACT differs from comparing two cells with =A1=B1.

4 lines
45.

A code is in cell A2: "FT-2022". Write the formula to extract the first two characters only.

4 lines
46.

Which Excel function splits a text string into multiple parts using a specified delimiter?

a)

LEN

b)

SPLITTEXT

c)

SUM

d)

CONCAT

47.

In cell B2, to separate "Lucas, Martinez" into last and first names by the comma, which formula is most appropriate?

a)

=SPLITTEXT(A2, ",")

b)

=CONCAT(A2:B2)

c)

=LEN(A2)

d)

=SPLITTEXT(B2, " ")

48.

What improvement does CONCAT have compared to CONCATENATE for joining text?

a)

Supports joining ranges

b)

Ignores empty cells

c)

Splits by delimiters

d)

Counts characters in text

49.

Fill in the blank: The LEN function returns the total number of (a)   in a cell, including spaces and symbols.

50.

Which formula correctly joins the values from A2 through B2 into one text string?

a)

=SUM(A2:B2)

b)

=CONCAT(A2:B2)

c)

=LEN(A2:B2)

d)

=SPLITTEXT(A2:B2, " ")

51.

A student wants to count all letters, numbers, spaces, and symbols in cell A2. Which function should they use?

a)

LEN

b)

CONCAT

c)

SPLITTEXT

d)

AVERAGE

52.

Explain when using SPLITTEXT is helpful and provide a short example scenario.

4 lines
53.

You have a list of codes in C2:C5 and need one combined code string without typing each cell. Which approach is best and why?

4 lines