wayground logo

Free Printable Worksheets

NEW

Font size

S
M
L
XL
Worksheets

Google Sheets Functions Quiz

Total questions: 32

Worksheet time: 16mins

Name
Class
Date
1.

What will =IF(B2>50,"Pass","Fail") display if B2 contains 50?

a)

Pass

b)

Fail

c)

50

d)

TRUE

2.

In a cell with =AVERAGE(10,20,30,40), what value is shown?

a)

100

b)

25

c)

30

d)

0

3.

What does =SUM(A1:A5) return if A3 is blank and others have numbers?

a)

Ignores the blank

b)

Returns an error

c)

Counts blank as 0

d)

Returns blank

4.

=COUNT(A1:A10) counts how many cells in A1:A10 contain:

a)

Any data (text or numbers)

b)

Only numbers

c)

Only text

d)

Only blank cells

5.

What will =COUNTIF(B1:B10,">=70") count?

a)

Cells with exactly 70

b)

Cells with 70 or more

c)

Cells with less than 70

d)

Blank cells

6.

=COUNTA(D1:D8) will count:

a)

Only numeric values

b)

All non-empty cells

c)

Only text values

d)

Only errors

7.

In a range with 5 numbers and 2 blank cells, =COUNTBLANK(A1:A7) returns:

a)

5

b)

2

c)

7

d)

0

8.

=MAX(15, 28, 9, 42, 33) returns:

a)

15

b)

28

c)

33

d)

42

9.

What does =MEDIAN(10, 20, 30, 40, 50) show?

a)

20

b)

30

c)

25

d)

150

10.

=MIN(8, 17, 5, 29, 11) returns:

a)

29

b)

5

c)

8

d)

17

11.

If C5 contains "Excellent" because of an IF function, will =COUNT(C5) count it?

a)

Yes

b)

No

c)

Only if it’s a number

d)

Returns error

12.

=IF(A1=100,"Perfect","Try Again") will show "Perfect" when A1 is:

a)

100

b)

99

c)

101

d)

Blank

13.

What does =AVERAGE(B2:B6) do when B4 is blank?

a)

Ignores B4

b)

Treats B4 as 0

c)

Returns #DIV/0!

d)

Counts it as text

14.

=SUM(5,10,15,20) is the same as writing:

a)

=5+10+15+20

b)

=AVERAGE(5,10,15,20)

c)

=COUNT(5,10,15,20)

d)

=MAX(5,10,15,20)

15.

=COUNTIF(A1:A10,"Apple") counts cells that contain:

a)

Exactly “Apple”

b)

Nothing with “Apple” in it

c)

Only numbers

d)

Blank cells

16.

In a column with names and some empty rows, which function counts filled cells?

a)

COUNT

b)

COUNTA

c)

COUNTBLANK

d)

MIN

17.

=IF(D2=AVERAGE(B1:B10),"Above Average","Below/Average") – if B10 equals the average, it shows:

a)

Above Average

b)

Below/Average

c)

TRUE

d)

FALSE

18.

Which formula correctly adds cells A1, A3, A5, and A7 only?

a)

=SUMS(A1,A3,A5,A7)

b)

=A1+A3+A5+A7

c)

Both A and B

d)

=COUNT(A1,A7)

19.

What does =MIN(100,200,50,150) return?

a)

50

b)

100

c)

150

d)

500

20.

=IF(A1=A2,"Match","Different") returns "Match" only when:

a)

Values are the same

b)

Cells are blank

c)

One is text

d)

They look the same

21.

In a list of test scores, which function finds the middle value when sorted?

a)

AVERAGE

b)

MEDIAN

c)

MODE

d)

MID

22.

=SUM(A1:A10)/COUNT(A1:A10) gives the same result as which function?

a)

MEDIAN

b)

AVERAGE

c)

MAX

d)

MIN

23.

If cell E5 has the text "Absent", does =COUNT(E5) count it?

a)

Yes

b)

No

c)

Probably

d)

Returns #VALUE!

24.

=IF(50>=50,"Yes","No") returns:

a)

Yes

b)

No

c)

50

d)

TRUE

25.

Data: 45, 82, 67, 91, 58. =MAX of this data is:

a)

58

b)

91

c)

82

d)

67

26.

=IF(COUNT(A1:A5)>3,"Many","Few") shows "Many" when at least __ cells have numbers.

a)

3

b)

4

c)

5

d)

2

27.

In a row with some empty cells, =COUNTA(A1:G1) counts:

a)

Only numbers

b)

All filled cells

c)

Only blanks

d)

Only formulas

28.

=MIN(0,-5,10,-2) returns:

a)

0

b)

-5

c)

10

d)

-2

29.

Which function is most affected by extreme high or low values?

a)

MEDIAN

b)

AVERAGE

c)

Both equally

d)

Neither

30.

=IF(COUNTA(B2:B20)=0,"Empty Column","Has Data") shows "Empty Column" when:

a)

All cells are blank

b)

At least one has data

c)

All have numbers

d)

There is text

31.

Data: 88, 92, 76, 95, 81. What is =MEDIAN?

a)

88

b)

86.4

c)

81

d)

92

32.

You want to give a bonus message only if a student has no blank cells in homework column D2:D10. Best formula?

a)

=IF(COUNTBLANK(D2:D10)=0,"Bonus!","Incomplete")

b)

=IF(COUNTA(D2:D10)=0,"Bonus!","Incomplete")

c)

=IF(COUNT(D2:D10)=0,"Bonus!","Incomplete")

d)

=IF(MAX(D2:D10)=0,"Bonus!","Incomplete")