Challenge - 5 Problems
Arithmetic Formula Master
Get all challenges correct to earn this badge!
Test your skills under time pressure!
📊 Formula Result
intermediate2: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?Attempts:
2 left
💡 Hint
Remember the order of operations: multiplication and division happen before addition and subtraction.
✗ Incorrect
The formula calculates as 5 + (3 * 2) - (4 / 2) = 5 + 6 - 2 = 9.
❓ Function Choice
intermediate2: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?
Attempts:
2 left
💡 Hint
Tax is 10% of the total price, so multiply total by 1.10.
✗ Incorrect
Option A multiplies quantity by price, then adds 10% tax by multiplying by 1.10.
📊 Formula Result
advanced2:00remaining
Evaluate a formula with parentheses and mixed operators
What is the result of the formula
= (8 + 2) * (5 - 3) / 2?Attempts:
2 left
💡 Hint
Calculate inside parentheses first, then multiply and divide from left to right.
✗ Incorrect
(8 + 2) = 10, (5 - 3) = 2, so formula is 10 * 2 / 2 = 20 / 2 = 10.
🎯 Scenario
advanced2: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?
Attempts:
2 left
💡 Hint
Average cost is total cost divided by number of items.
✗ Incorrect
Option D divides total cost by number of items, giving average cost per item.
❓ data_analysis
expert3: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?
Attempts:
2 left
💡 Hint
Use SUMPRODUCT with a logical test to compare arrays element-wise.
✗ Incorrect
Option A correctly counts how many rows have revenue greater than cost by comparing arrays element-wise.