0
0
Excelspreadsheet~20 mins

Arithmetic operators in formulas in Excel - Practice Problems & Coding Challenges

Choose your learning style9 modes available
Challenge - 5 Problems
🎖️
Arithmetic Formula 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 mixed arithmetic formula
What is the value in cell A1 if the formula =5 + 3 * 2 - 4 / 2 is entered?
A11
B10
C9
D8
Attempts:
2 left
💡 Hint
Remember the order of operations: multiplication and division happen before addition and subtraction.
Function Choice
intermediate
2:00remaining
Choose the correct formula to calculate total cost
You have quantity in cell B2 and price per item in C2. Which formula correctly calculates total cost with a 10% tax added?
A=B2 * C2 * 1.10
B=B2 * C2 + 10%
C=B2 + C2 * 1.10
D=B2 * (C2 + 10%)
Attempts:
2 left
💡 Hint
Tax is 10% of the total price, so multiply total by 1.10.
📊 Formula Result
advanced
2:00remaining
Evaluate a formula with parentheses and mixed operators
What is the result of the formula = (8 + 2) * (5 - 3) / 2?
A20
B10
C5
D15
Attempts:
2 left
💡 Hint
Calculate inside parentheses first, then multiply and divide from left to right.
🎯 Scenario
advanced
2:00remaining
Fix the formula to correctly calculate average cost per item
You want to calculate average cost per item. You have total cost in A1 and number of items in B1. Which formula correctly calculates average cost?
A=A1 + B1
B=B1 / A1
C=A1 * B1
D=A1 / B1
Attempts:
2 left
💡 Hint
Average cost is total cost divided by number of items.
data_analysis
expert
3:00remaining
Determine the number of items with positive profit
Column A has costs, column B has revenues. Which formula counts how many items have revenue greater than cost?
A=SUMPRODUCT(--(B1:B10 > A1:A10))
B=COUNTIF(B:B, ">" & A:A)
C=COUNTIF(A:A, ">" & B:B)
D=SUM(B1:B10 > A1:A10)
Attempts:
2 left
💡 Hint
Use SUMPRODUCT with a logical test to compare arrays element-wise.