wayground logo

Free Printable Worksheets

NEW

Font size

S
M
L
XL
Worksheets

Spreadsheet Closing Quiz

Total questions: 21

Worksheet time: 11mins

Name
Class
Date
1.

What is the main use of the IF function in Excel?

a)

Combine two texts

b)

Check conditions and give different results

c)

Get the first letter of text

d)

Sum numbers

2.

What is the purpose of the following formula? =IF(A1>50,"Pass","Fail")

a)

Sum the value in A1

b)

Display 'Pass' if A1 is greater than 50, otherwise 'Fail'

c)

Combine text in A1

d)

Count the number of students who pass

3.

Which is the correct writing of IF?

a)

IF(A1=10,"Yes")

b)

=IF(A1=10,"Yes","No")

c)

IF(A1>10;"Yes";"No")

d)

=IF(A1,>10,"Yes","No")

4.

What does Nested IF mean?

a)

IF written in an empty cell

b)

IF used repeatedly in one formula for many conditions

c)

IF combined with SUM

d)

IF to combine text

5.

What does the following formula mean? =IF(A1>80,"A",IF(A1>60,"B","C"))

a)

If A1 is greater than 80 then 'A', if not greater than 60 then 'B', if not then 'C'

b)

If A1 is greater than 80 then 'B', if not then 'C'

c)

If A1 equals 80 then 'A'

d)

The formula is incorrect

6.

When should we use Nested IF?

a)

When wanting to calculate total numbers

b)

When conditions are more than one category

c)

When wanting to combine text

d)

When copying formulas

7.

What is the use of the CONCATENATE function?

a)

Count the number of letters in text

b)

Combine several texts into one

c)

Get the last letter of text

d)

Check conditions

8.

What is the main difference between CONCATENATE and CONCAT in the new version of Excel?

a)

There is no difference

b)

CONCAT is only for numbers, CONCATENATE is only for text

c)

CONCAT is the modern version replacing CONCATENATE

d)

CONCAT is used for IF

9.

What will the formula =CONCAT(A1," ",B1) produce if A1="John" and B1="Smith"?

a)

JohnSmith

b)

John Smith

c)

John+Smith

d)

Error

10.

Which is the correct writing of CONCATENATE?

a)

=CONCATENATE(A1,B1)

b)

=CONCATENATE(A1+B1)

c)

CONCATENATE(A1;B1)

d)

=CONCATENATE(A1

11.

What is the correct way to write CONCATENATE?

a)

=CONCATENATE(A1,B1)

b)

=CONCATENATE(A1+B1)

c)

CONCATENATE(A1;B1)

d)

=CONCATENATE(A1:B1,C1)

12.

What is the use of the LEFT function in Excel?

a)

To take the first letter of text according to the specified number

b)

To take the last letter of text

c)

To combine two texts

d)

To check conditions

13.

The result of the formula =LEFT("ICT",2) is…

a)

IC

b)

CT

c)

I

d)

ICT

14.

The formula =LEFT(A1,3) if A1 = "Spreadsheet" results in…

a)

She

b)

Spr

c)

pre

d)

ree

15.

Which of the following is incorrect?

a)

=LEFT("Excel",2)

b)

=LEFT(A1,5)

c)

=LEFT("Excel")

d)

=LEFT("Excel",1)

16.

What is the function of RIGHT in Excel?

a)

To take letters from the left of the text

b)

To take letters from the right of the text

c)

To combine texts

d)

To count the number of letters

17.

The result of =RIGHT("Excel",2) is…

a)

Ex

b)

el

c)

ce

d)

xl

18.

The formula =RIGHT(A1,3) if A1 = "Computer" results in…

a)

Com

b)

put

c)

ter

d)

omp

19.

If we want to take the last letter from the text, the correct formula is…

a)

=RIGHT(A1,1)

b)

=LEFT(A1,1)

c)

=CONCATENATE(A1,1)

d)

=IF(A1,1)

20.

Which combination of formulas is correct to display “Mr. John Smith” if A1=“John” and B1=“Smith”?

a)

=CONCAT("Mr. ",A1," ",B1)

b)

=LEFT("Mr. ",A1," ",B1)

c)

=IF(A1,"Mr. John Smith")

d)

=RIGHT(A1,B1,"Mr.")

21.

If we want to grade a student's score: A1 ≥ 90 → “Excellent”, A1 ≥ 70 → “Good”, otherwise → “Try Again”. The correct formula is:

a)

=IF(A1>=90,"Excellent","Good")

b)

=IF(A1>=90,"Excellent",IF(A1>=70,"Good","Try Again"))

c)

=IF(A1,"Excellent","Try Again")

d)

=CONCAT(A1,"Excellent")