0 of 25 Questions completed
Questions:
You have already completed the quiz before. Hence you can not start it again.
Quiz is loading…
You must sign in or sign up to start the quiz.
You must first complete the following:
0 of 25 Questions answered correctly
Your time:
Time has elapsed
You have reached 0 of 0 point(s), (0)
Earned Point(s): 0 of 0, (0)
0 Essay(s) Pending (Possible Point(s): 0)
What does the formula =COUNTIFS(A1:A10, ">5", B1:B10, "<10")
do?
Which of the following does the COUNT function return?
What is the result of =COUNT(1, "Text", 3, TRUE, 5)
?
Which of the following is TRUE about the COUNT function?
What will =COUNT(A1:A10)
do?
Which formula counts only numeric values in the range B2:B20?
What does COUNTIF(range, criteria)
do?
What is the result of =COUNTIF(A1:A10, ">5")
if the range contains 1, 6, 8, 3, and 10?
What will =COUNTIF(A1:A10, "*")
do?
How does the COUNTIF function treat case sensitivity?
What will =COUNTIF(A1:A10, "Apple")
return?
What does the IF function do in Excel?
What is the syntax of the IF function?
What will =IF(A1>5, "Yes", "No")
return if A1=3?
Â
What happens if the condition in the IF function is omitted?
What will =IF(A1=10, "Equal", "Not Equal")
return if A1=10?
What is the result of =IF(OR(A1>10, B1<5), "Pass", "Fail")
if A1=8 and B1=3?
Which of these formulas correctly uses IF with OR?
What will =IF(OR(A1=5, B1=10), "Match", "No Match")
return if A1=5 and B1=8?
What will =IF(OR(A1>5, A1<3), "Yes", "No")
return if A1=4?
How does OR in an IF statement work?
What is the result of =IF(AND(A1>10, B1<5), "Pass", "Fail")
if A1=15 and B1=2?
Which of these correctly uses IF with AND?
What will =IF(AND(A1=5, B1=10), "Match", "No Match")
return if A1=5 and B1=8?
What will =IF(AND(A1>5, A1<10), "Yes", "No")
return if A1=7?