Challenge - 5 Problems
Arithmetic Operator Master
Get all challenges correct to earn this badge!
Test your skills under time pressure!
📊 Formula Result
intermediate2:00remaining
Calculate the result of a formula with mixed operators
What is the result of the formula
=5 + 3 * 2 - 4 / 2 in Google Sheets?Google Sheets
=5 + 3 * 2 - 4 / 2
Attempts:
2 left
💡 Hint
Remember that multiplication and division happen before addition and subtraction.
✗ Incorrect
Multiplication and division are done first: 3*2=6 and 4/2=2. Then addition and subtraction: 5+6=11, 11-2=9.
❓ Function Choice
intermediate2:00remaining
Choose the correct formula to calculate the average of sums
You have numbers in cells A1=4, A2=6, B1=8, B2=2. Which formula correctly calculates the average of the sums of each row?
Attempts:
2 left
💡 Hint
You want the average of the sums of each row, not the average of all cells.
✗ Incorrect
Option D sums each row separately and then averages those sums: (4+8) and (6+2), average is (12+8)/2=10.
📊 Formula Result
advanced2:00remaining
Evaluate a formula with parentheses and exponentiation
What is the result of the formula
= (2 + 3)^2 / 5 in Google Sheets?Google Sheets
=(2 + 3)^2 / 5
Attempts:
2 left
💡 Hint
Calculate inside parentheses first, then exponentiation, then division.
✗ Incorrect
Inside parentheses: 2+3=5. Then exponentiation: 5^2=25. Then division: 25/5=5.
🎯 Scenario
advanced2:00remaining
Fix the formula to correctly calculate total cost with tax
You want to calculate the total cost including 8% tax for an item price in cell A1. Which formula correctly calculates this?
Attempts:
2 left
💡 Hint
Tax is 8%, so multiply price by 1 plus tax rate as decimal.
✗ Incorrect
Option A multiplies the price by 1.08 (100% + 8%) to get total cost including tax.
❓ data_analysis
expert2:00remaining
Determine the number of items greater than a threshold using arithmetic operators
Given the values in cells A1:A5 as 3, 7, 2, 9, 5, which formula returns the count of numbers greater than 5?
Attempts:
2 left
💡 Hint
Use a formula that sums TRUE values as 1 to count items meeting condition.
✗ Incorrect
Option C uses SUMPRODUCT with a condition, counting TRUE as 1, resulting in 2 (7 and 9). Option C also counts correctly but SUMPRODUCT is the advanced method here.