0
0
Google Sheetsspreadsheet~20 mins

Arithmetic operators in Google Sheets - Practice Problems & Coding Challenges

Choose your learning style9 modes available
Challenge - 5 Problems
🎖️
Arithmetic Operator Master
Get all challenges correct to earn this badge!
Test your skills under time pressure!
📊 Formula Result
intermediate
2: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
A8
B9
C11
D10
Attempts:
2 left
💡 Hint
Remember that multiplication and division happen before addition and subtraction.
Function Choice
intermediate
2: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?
A=(A1+B1 + A2+B2)/2
B=AVERAGE(A1:B2)
C=SUM(A1:B2)/2
D=AVERAGE(A1+B1, A2+B2)
Attempts:
2 left
💡 Hint
You want the average of the sums of each row, not the average of all cells.
📊 Formula Result
advanced
2: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
A5
B25
C10
D1
Attempts:
2 left
💡 Hint
Calculate inside parentheses first, then exponentiation, then division.
🎯 Scenario
advanced
2: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?
A=A1 * 1.08
B=A1 + 8%
C=A1 + A1 * 8
D=A1 * 0.08
Attempts:
2 left
💡 Hint
Tax is 8%, so multiply price by 1 plus tax rate as decimal.
data_analysis
expert
2: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?
A=COUNTIF(A1:A5, ">5")
B=SUM(A1:A5 > 5)
C=SUMPRODUCT(A1:A5 > 5)
D=COUNT(A1:A5 > 5)
Attempts:
2 left
💡 Hint
Use a formula that sums TRUE values as 1 to count items meeting condition.