PAPER 2 of notes Flashcards

1
Q

sum of range

A

=SUM(range)

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

average of range

A

=AVERAGE(range)

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

smallest of the range

A

=MIN(range)

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

biggest of the range

A

=MAX(range)

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

counting amount of numeric values, not summing up

A

=COUNT(range)

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

rounding up or down a number

A

=MROUND(value to be rounded;multiplication)

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

automatically rounds up

A

=CEILING.MATH(value to be rounded up;multiple)

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

automatically rounds down

A

=FLOOR.MATH(value to be rounded down; multiple)

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

multiplies all the numbers given as arguments

A

=PRODUCT(range)

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

the integer portion of a division between two numbers

A

=QUOTIENT(num;division)

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

power of something

A

=POWER(number;power)

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

a random number in the range

A

=RANDBETWEEN(bottom;top)

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

count the text and number, non empty cells

A

=COUNTA(range)

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

allows you to make logical comparisons between a value and what you expect

A

=IF(expression; result if true; result if false)

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

checks whether one or more conditions are met, and returns a value that corresponds to the first TRUE condition.

A

=IFS(expression;resultiftrue;resultiffalse…)

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

returns TRUE if all its arguments evaluate to TRUE, and returns FALSE if one or more arguments evaluate to FALSE

A

=AND(….)

17
Q

a logical formula that tests multiple conditions to determine if any of them are true.

A

=OR(…)