exam review module 2 Flashcards

1
Q

formulas begin with

A

”=”

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

values can be represented in 4 ways

A

text (labels)

numbers

boolean (true/false)

date and time

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

1 =

A

value

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

1 + 1

A

expression

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

+

A

an operator

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

f(X) = 2x+3
f(5) = 13
f(10)=23

what is the function name

A

f(x)

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

f(X) = 2x+3
f(5) = 13
f(10)=23

function parameter?

A

2x+3

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

f(X) = 2x+3
f(5) = 13
f(10)=23

function value

A

13,23

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

nesting functions

A

the combination of multiple functions in one formula

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

referencing

A

the process of using a cells name in the function or another cell

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q
Calculating course grade average
CS100 = 100
PSYCH101 = 70
REC100 = 85
ENGL 104 = 75
ECON101 = 90
A

= average(b1,b2,b3,b4,b5)

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

Calculating course grade average using range selection

CS100 = 100
PSYCH101 = 70
REC100 = 85
ENGL 104 = 75
ECON101 = 90
A

=average(b1:b5)

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

how to select numbers in multiple columns

A

your range would be the upper-left number, and the most bottom-right number

=average(a1:B5)

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

payment examples

(PMT)

Price of car : $23,889

Annual interest rate: 4.5%

monthly interest rate?

A

=C3/12 (yearly rate / 12 months) -> 0.375%

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

monthly payments

A
rate= interest rate
nper= number of periods
pv= principal value

=pmt(C4,C6,C2)
=247.69

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

autofill

A

select a range of cells, drag down from the bottom left corner, cell will autofill according to patterns

works for months, numbers, any recognizable patterns

17
Q

absolute references

A

f4 = absolute reference
notation: c4 -> c$4$

$b = keep the column the same
$5 = keep the row the same

$B -> keeps the formatting of one column/row the same. $b$3 would keep the formatting of both the column and the row.

18
Q

named ranges

A

Unit_Price refers to =Sheet1!C$4$ -> (cell c4 with absolute referencing)

You can now use this “defined name” to use as a value.

example: C8*Unit_Price

19
Q

naming ranges

A

select a range of values, and rename them in the name box

“total_sale”

in one cell, type “Total Sales:” . In the cell next to it, you can type “=sum(Total_Sales) to calculate the sum of the range of values you previously selected.

20
Q

how to add cells to your selected range

A

Go to Formulas -> Name Manager -> Select range (ex: Total_Sales) -> Highlight new selected range of values.