0
0
Google Sheetsspreadsheet~20 mins

AND and OR functions in Google Sheets - Practice Problems & Coding Challenges

Choose your learning style9 modes available
Challenge - 5 Problems
🎖️
AND & OR Master
Get all challenges correct to earn this badge!
Test your skills under time pressure!
📊 Formula Result
intermediate
2:00remaining
Output of combined AND and OR functions
What is the output of the formula =AND(OR(TRUE, FALSE), OR(FALSE, FALSE)) in Google Sheets?
Google Sheets
=AND(OR(TRUE, FALSE), OR(FALSE, FALSE))
AError
BTRUE
CFALSE
D0
Attempts:
2 left
💡 Hint
Remember OR returns TRUE if any argument is TRUE; AND returns TRUE only if all arguments are TRUE.
Function Choice
intermediate
2:00remaining
Choose the formula that returns TRUE only if all conditions are TRUE
Which formula returns TRUE only if all three cells A1, B1, and C1 contain values greater than 10?
A=AND(A1>10, OR(B1>10, C1>10))
B=AND(A1>10, B1>10, C1>10)
C=OR(A1>10, B1>10, C1>10)
D=OR(AND(A1>10, B1>10), C1>10)
Attempts:
2 left
💡 Hint
AND requires all conditions to be TRUE; OR requires only one.
🎯 Scenario
advanced
2:30remaining
Detect if a student passes based on multiple criteria
You want to mark a student as 'Pass' if their score in Math (A2) is at least 50, and either their score in English (B2) or Science (C2) is at least 60. Which formula correctly returns TRUE for passing students?
A=AND(A2>=50, OR(B2>=60, C2>=60))
B=OR(AND(A2>=50, B2>=60), C2>=60)
C=AND(OR(A2>=50, B2>=60), C2>=60)
D=OR(A2>=50, AND(B2>=60, C2>=60))
Attempts:
2 left
💡 Hint
Passing requires Math score at least 50 AND (English OR Science score at least 60).
📊 Formula Result
advanced
2:00remaining
Result of nested AND and OR with FALSE values
What is the result of the formula =OR(AND(TRUE, FALSE), AND(FALSE, FALSE), TRUE) in Google Sheets?
Google Sheets
=OR(AND(TRUE, FALSE), AND(FALSE, FALSE), TRUE)
ATRUE
BFALSE
CError
D0
Attempts:
2 left
💡 Hint
OR returns TRUE if any argument is TRUE; AND returns TRUE only if all arguments are TRUE.
data_analysis
expert
3:00remaining
Count rows where multiple conditions are met using AND and OR
You have a table with columns A (Age), B (City), and C (Membership). You want to count how many rows have Age over 30 AND (City is 'New York' OR Membership is 'Gold'). Which formula correctly counts these rows?
A=COUNTIFS(A:A, ">30", B:B, "New York") + COUNTIFS(A:A, ">30", C:C, "Gold")
B=COUNTIFS(A:A, ">30", B:B, "New York", C:C, "Gold")
C))0>)"dloG"=C:C(+)"kroY weN"=B:B((*)03>A:A((TCUDORPMUS=
D=SUMPRODUCT((A:A>30)*((B:B="New York")+(C:C="Gold")>0))
Attempts:
2 left
💡 Hint
Use SUMPRODUCT with logical tests and ensure OR condition is handled correctly.