Term 1 Spreadsheets Flashcards

1
Q

What is a spreadsheet used for?

A

To store information

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

What is the name for a unit of data (box) in a spreadsheet?

A

A cell

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

What is the name for a vertical collection of cells in a spreadsheet?

A

A column

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

What is the name for a horizontal collection of cells in a spreadsheet?

A

A row

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

What does the operator + mean in a spreadsheet formula?

A

Add the two operands (values) together

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

Which operator is used in a spreadsheet formula to show division?

A

/

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

Which operator is used in a spreadsheet formula to show multiplication?

A

*

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

Which operator is used in a spreadsheet formula to show subtraction

A

-

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

In a spreadsheet which function allows you to find the largest value in a range of cells?

A

=max( ) where the range of cells goes in the brackets e.g. =max(A1:A12)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

In a spreadsheet which function allows you to find the smallest value in a range of cells?

A

=min( ) where the range of cells goes in the brackets e.g. =min(A1:A12)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

In a spreadsheet which function allows you to find the average of a set of values in a range of cells?

A

= average( ) where the range of cells goes in the brackets e.g. =average(A1:A12)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

What type of chart is shown as a circle split into multiple sections (like slices of a pizza)?

A

A pie chart

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

What type of chart is shown as vertical columns?

A

A bar chart

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

What does the VLOOKUP( ) function allow you to do?

A

select specific data from a large table of data

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

What does the COUNTIF( ) function allow you to do?

A

count the number of cells that contain certain data

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q

What does the COUNT( ) function allow you to do?

A

count the number of cells that contain any data (not just those with specific data)

17
Q

How would you use the COUNT( ) function to count how many cells in rows A to E and in column 3 contain data?

A

=count(A3:E3)

18
Q

How would you use the COUNTIF( ) function to count how many cells in rows A to E and in column 3 which contain an X?

A

=countif(A3:E3, “X”)

19
Q

In the formula ‘ = VLOOKUP(A3, D2:G10, 2) what does each value in the brackets mean?

A

A3 is the cell containing the data to be found
D2:G10 is the range of cells to be searched for the value in A3
2 shows that the second column of data will be returned when a values is found