wayground logo

Free Printable Worksheets

NEW

Font size

S
M
L
XL
Worksheets

Spreadsheet Final Test

Total questions: 29

Worksheet time: 15mins

Name
Class
Date
1.

Which function is used to add numbers in a range?

a)

=ADD(A1:A5)

b)

=SUM(A1:A5)

c)

=TOTAL(A1:A5)

d)

=COUNT(A1:A5)

2.

What will =AVERAGE(10, 20, 30) return?

a)

20

b)

30

c)

15

d)

25

3.

Which function returns the smallest number in a range?

a)

=MAX(A1:A10)

b)

=MIN(A1:A10)

c)

=LOW(A1:A10)

d)

=AVERAGE(A1:A10)

4.

If cells A1 to A5 contain 5, 8, 2, 10, 7, what is the result of =MAX(A1:A5)?

a)

10

b)

7

c)

5

d)

8

5.

Which function counts only numeric values in a range?

a)

=COUNTA(A1:A10)

b)

=COUNT(A1:A10)

c)

=COUNTNUM(A1:A10)

d)

=SUM(A1:A10)

6.

If cells A1 to A3 contain: 4, 6, "Hello", what is the result of =COUNTA(A1:A3)?

a)

2

b)

3

c)

4

d)

Error

7.

What is the correct formula to find the average of cells B1 to B4?

a)

=AVG(B1:B4)

b)

=AVERAGE(B1:B4)

c)

=MEAN(B1:B4)

d)

=SUM(B1:B4)/COUNT(B1:B4)

8.

What will =IF(A1>50, "Pass", "Fail") return if A1 is 60?

a)

Fail

b)

Pass

c)

60

d)

TRUE

9.

Which formula finds the largest value between 3, 15, and 9?

a)

=LARGE(3,15,9)

b)

=MAX(3,15,9)

c)

=BIGGEST(3,15,9)

d)

=TOP(3,15,9)

10.

If you want to count all non-empty cells in a range, which function should you use?

a)

=COUNTA()

b)

=COUNT()

c)

=COUNTIF()

d)

=SUM()

11.

What is Conditional Formatting used for in spreadsheets?

a)

To change the data values

b)

To change the appearance of cells based on a condition

c)

To delete empty cells

d)

To merge cells

12.

Which of these is NOT an example of Conditional Formatting?

a)

Automatically highlighting cells with values above 100

b)

Making text bold when a value is less than 50

c)

Changing cell background color when the cell is empty

d)

Adding a border to all cells manually

13.

You want cells to turn red if the value is less than equal 10. Which comparison operator should you use?

a)

>

b)

=

c)

<

d)

<=

14.

If you apply Conditional Formatting to highlight sales above $500, what happens when a value changes from $400 to $600?

a)

The cell stays the same

b)

The cell changes color based on the rule

c)

The cell is deleted

d)

The cell text changes to bold automatically

15.

Which option would you choose to remove Conditional Formatting from a range?

a)

Delete cell contents

b)

Clear rules

c)

Hide cells

d)

Remove formulas

16.

In IGCSE exams, why might Conditional Formatting be useful for analyzing large data sets?

a)

It makes numbers smaller

b)

It helps you see patterns or trends quickly

c)

It sorts the data automatically

d)

It changes all formulas to text

17.

Which of these rules is valid for Conditional Formatting?

a)

Cell Value is greater than 50

b)

Cell Font = Arial

c)

Cell Background = Blue

d)

Merge Cell if greater than 100

18.

What happens if two Conditional Formatting rules conflict?

a)

Both rules apply at the same time

b)

The one with higher priority applies

c)

The spreadsheet gives an error

d)

The cell turns white

19.

If you want to highlight weekends in a timetable automatically, which Conditional Formatting feature could you use?

a)

Icon Sets

b)

Date formatting rules

c)

Data validation

d)

Merge & Center

20.

A student wants to highlight the top 3 scores in a list. Which Conditional Formatting option is best?

a)

Highlight Cells Rules → Greater Than

b)

Top/Bottom Rules → Top 10 Items

c)

Use a formula

d)

Data Bars

21.

What does the IF function do in a spreadsheet?

a)

Adds numbers together

b)

Checks a condition and returns one value if TRUE and another if FALSE

c)

Finds the largest value in a range

d)

Sorts data in alphabetical order

22.

Which of the following is the correct syntax for an IF function?

a)

=IF(test, true_value, false_value)

b)

=IF(true_value, false_value, test)

c)

=IF(test; true_value; false_value)

d)

=IF(true_value; test; false_value)

23.

If the formula is =IF(A1>50, "Pass", "Fail") and A1 contains 45, what will it display?

a)

Pass

b)

Fail

c)

45

d)

Error

24.

In the formula =IF(A2=100, "Perfect", "Not Perfect"), what does A2=100 represent?

a)

The true value

b)

The false value

c)

The logical test

d)

The cell reference

25.

Which formula will return “High” if B1 is greater than 500, otherwise “Low”?

a)

=IF(B1>500, "High", "Low")

b)

=IF(B1=500, "Low", "High")

c)

=IF(B1<500, "High", "Low")

d)

=IF(B1>=500, "Low", "High")

26.

If you want to use IF to check if C1 is empty, which formula is correct?

a)

=IF(C1="", "Empty", "Not Empty")

b)

=IF(C1, "Empty", "Not Empty")

c)

=IF("Empty", C1="", "Not Empty")

d)

=IF(C1=0, "Empty", "Not Empty")

27.

Which operator is used to check “greater than or equal to” in IF conditions?

a)

>

b)

=

c)

<

d)

>=

28.

What will happen if the logical test in an IF function is FALSE?

a)

It returns the TRUE value

b)

It returns the FALSE value

c)

It gives an error message

d)

It changes the formula automatically

29.

You want to display “Bonus” if sales are more than $1000, otherwise display nothing. Which is correct?

a)

=IF(Sales>1000, "Bonus", "")

b)

=IF(Sales>1000, Bonus, "")

c)

=IF(Sales>=1000, "", "Bonus")

d)

=IF(Sales>1000, "", Bonus)