Challenge - 5 Problems
Logical Functions Master
Get all challenges correct to earn this badge!
Test your skills under time pressure!
📊 Formula Result
intermediate2:00remaining
Output of nested IF formula
What is the result of the formula
=IF(A1>10, IF(B1<5, "Low", "High"), "Medium") when A1=12 and B1=3?Attempts:
2 left
💡 Hint
Think about the first IF condition and then the nested IF inside it.
✗ Incorrect
Since A1 is 12 (greater than 10), the formula checks the nested IF. B1 is 3 (less than 5), so it returns "Low".
❓ Function Choice
intermediate2:00remaining
Choosing the correct logical function
Which logical function would you use to check if both conditions A1>5 and B1<10 are true?
Attempts:
2 left
💡 Hint
Think about a function that requires all conditions to be true.
✗ Incorrect
AND returns TRUE only if all conditions are true. OR returns TRUE if any condition is true. NOT negates a single condition. IF is for conditional output, not logical checks.
🎯 Scenario
advanced2:00remaining
Using logical functions for grading
You want to assign grades based on score in cell A1: "Pass" if score is 50 or more, "Fail" otherwise. Which formula correctly does this?
Attempts:
2 left
💡 Hint
Remember the condition includes 50 as passing.
✗ Incorrect
Option B uses >= which includes 50 as passing. Option B excludes 50. Option B reverses the logic. Option B is incorrect logic.
📊 Formula Result
advanced2:00remaining
Result of combined AND and OR
What is the result of
=IF(AND(A1>5, OR(B1=10, C1=20)), "Yes", "No") when A1=6, B1=9, and C1=20?Attempts:
2 left
💡 Hint
Check the AND condition and inside it the OR condition carefully.
✗ Incorrect
A1>5 is TRUE (6>5). OR(B1=10, C1=20) is TRUE because C1=20. AND(TRUE, TRUE) is TRUE, so IF returns "Yes".
❓ data_analysis
expert3:00remaining
Count how many cells meet multiple conditions
You have scores in cells A1:A5. Which formula counts how many scores are greater than 50 and less than 80?
Attempts:
2 left
💡 Hint
Use COUNTIFS to apply multiple conditions on the same range.
✗ Incorrect
COUNTIFS counts cells meeting all conditions. Options A and B have invalid criteria syntax. Option D counts separately and sums, giving wrong count.