wayground logo

Free Printable Worksheets

NEW

Font size

S
M
L
XL
Worksheets

Pre-Test Spreadsheet 2

Total questions: 25

Worksheet time: 13mins

Name
Class
Date
1.

Which of the following is an example of alphanumeric (text) data?

a)

12345

b)

TRUE

c)

Hello123

d)

12/09/2025

2.

Which data type is most suitable for storing a person's date of birth?

a)

Number

b)

Text

c)

Date

d)

Boolean

3.

Which of these values would be stored as a number (numeric data type) in a spreadsheet?

a)

3.14

b)

"3 blind mice"

c)

12 March 2025

d)

ABC123

4.

A telephone number (e.g. 0857921234) should be stored as which data type to preserve any leading zeros?

a)

Number (Integer)

b)

Date/Time

c)

Text (Alphanumeric)

d)

Currency

5.

Which feature makes the text in a cell darker and thicker?

a)

Bold

b)

Italic

c)

Underline

d)

Highlight

6.

If you want to change the background color of a cell, which tool should you use?

a)

Fill Color (paint bucket icon)

b)

Font Color (text color A icon)

c)

Border style

d)

Sort & Filter

7.

⭐ True or False: In Excel, text is left-aligned in the cell by default, and numbers are right-aligned by default.

a)

True

b)

False

8.

Which of the following is a horizontal alignment option for cell content?

a)

Align Left

b)

Rotate Text Up

c)

Merge Cells

d)

Wrap Text

9.

If you apply the Percentage format to the number 0.5, how will it be displayed in the cell?

a)

50%

b)

5%

c)

0.5%

d)

0.5

10.

True or False: Changing a cell’s format (e.g. making text bold or applying a number format) does not change the underlying value in the cell.

a)

True

b)

False

11.

Which function would you use to add up a series of numbers in Excel?

a)

SUM

b)

MAX

c)

MIN

d)

AVERAGE

12.

Which Excel function returns the largest value from a set of numbers?

a)

MIN

b)

MAX

c)

AVERAGE

d)

SUM

13.

What will the formula =MIN(8, 6, 4, 10) return?

a)

4

b)

10

c)

8

d)

6

14.

If cells A1, A2, A3 contain 5, 10, 15 respectively, what will =AVERAGE(A1:A3) display?

a)

5

b)

10

c)

15

d)

30

15.

Which of these is NOT a valid function name in Excel?

a)

SUM

b)

AVERAGE

c)

MAX

d)

ADD

16.

In Excel, formulas and functions must always start with which symbol?

a)

= (equal sign)

b)

+ (plus sign)

c)

@ (at symbol)

d)

# (hash)

17.

What does the IF function do in a spreadsheet?

a)

Adds together values in a range.

b)

Checks a condition and returns one value if it’s true and another if it’s false.

c)

Repeats a set of steps a specified number of times.

d)

Finds the largest value in a range.

18.

If cell A1 contains 30, what will the formula =IF(A1>=50, "Pass", "Fail") display?

a)

Pass

b)

Fail

c)

30

d)

"A1>=50"

19.

What is a "nested IF" formula?

a)

An IF function placed inside another IF function.

b)

An IF function using multiple AND/OR conditions.

c)

An IF statement repeated on multiple lines.

d)

An error in an IF formula.

20.

How many possible results can a single IF function return?

a)

1

b)

2

c)

3

d)

Unlimited

21.

Which formula correctly assigns a performance category based on a score in B2 (>=80 = "Excellent"; 50–79 = "Good"; below 50 = "Needs Improvement")?

a)

=IF(B2>=80, "Excellent", IF(B2>=50, "Good", "Needs Improvement"))

b)

=IF(B2>=80, "Excellent", "Good", "Needs Improvement")

c)

=IF(B2=50, "Good", "Excellent")

22.

What does the LEFT function do?

a)

Extracts a given number of characters from the left side of a text string.

b)

Extracts characters from the right end of a text string.

c)

Returns the leftmost non-empty cell in a row.

d)

Aligns text to the left within a cell.

23.

What does the RIGHT function do?

a)

Returns a given number of characters from the end (right side) of a text string.

b)

Finds the rightmost numeric value in a range.

c)

Extracts the first character of a text string.

d)

Aligns text to the right within a cell.

24.

If cell A1 contains the text "BANANA", what will =LEFT(A1, 3) return?

a)

BAN

b)

ANA

c)

NAN

d)

BANANA

25.

If cell A1 contains "BANANA", what will =RIGHT(A1, 2) return?

a)

BA

b)

NA

c)

ANA

d)

2