Quiz 4 Flashcards
If a cell contains the formula =Goodbye
NAME?
If B3 contains the date 12/31/2006 and C3 contains the date 12/31/2005, then =B3
FALSE
To change a TRUE value to FALSE, or a FALSE value to TRUE, use the _____ function.
NOT
If you want apply formatting to G3 based on the value in cell F3, use conditional formatting’s “Format only cells that contain” option.
False
A(n) _____ function returns a value of TRUE if at least one argument is TRUE.
OR
Relational operators can be used to evaluate dates.
True
When using an OR function, if only one of two arguments equals FALSE (and the other argument equals TRUE), an OR function results in a value of _____.
TRUE
When using a IF function, formulas can be used within a Value_if_true or Value_if_false argument if the formula is enclosed within quotation marks.
False
If the values in cells F3, F4, F5, and F6 are all less than 100, the function =OR(F3>100,F4>100,F5>100,F6>100) returns a value of ______.
FALSE
To apply “Cell Value Is” conditional formatting, first _____.
select the cells you want to conditionally format
For the expression =B2=C2, the second equal sign is interpreted as a _____.
relational operator
The comparison phrase of “between” is used to _____.
set lower and upper limits inclusive of the specified values
A(n) _____ function returns a value of TRUE only if all arguments in the function are TRUE.
AND
(Ignoring the initial = that precedes a formula,) you cannot use two operators (=, =, etc.) within the same logical_test argument of an IF function unless you also use an additional function such as OR or AND.
True
The AND function results in a FALSE value if either Condition #1 or Condition #2 is _____.
FALSE
An equivalent formula for =IF(G3=0,C3,C3+G3+25) is _____.
=IF(G30,C3+G3+25,C3)
The result of the formula =SUM(4,7)11 is _____.
FALSE
=AND(F3,NOT(OR(G3:H3))) is an example of a(n) _____ construct.
“Only”
=AND(NOT(F3),NOT(G3),NOT(H3)) is an example of a(n) _____ construct.
“None Of”
To find whether the value in cell A1 is between 5 and 10 (inclusive), what function could you use?
AND
To evaluate a logical test and return a TRUE or FALSE value, you need to use an IF function.
False
The relational operator for “not equal” is _____.
To find whether an integer in cell A1 is in the 20’s (20, 21….29), you could use the following formula: =OR(A1>=20,A1
False
The OR function evaluates logical arguments to determine if at least one argument is TRUE.
True