Jump into concepts and practice - no test required
or
Recommended
Test this pattern10 questions across easy, medium, and hard to know if this pattern is strong
Recall & Review
beginner
What symbol is used for addition in Excel formulas?
The plus sign + is used for addition in Excel formulas. For example, =A1 + B1 adds the values in cells A1 and B1.
Click to reveal answer
beginner
How do you multiply two numbers in an Excel formula?
Use the asterisk * symbol to multiply. For example, =A1 * B1 multiplies the values in cells A1 and B1.
Click to reveal answer
beginner
Which operator divides numbers in Excel formulas?
The forward slash / is the division operator. For example, =A1 / B1 divides the value in A1 by the value in B1.
Click to reveal answer
intermediate
What does the caret ^ symbol do in Excel formulas?
The caret ^ is used for exponentiation (power). For example, =A1 ^ 2 squares the value in cell A1.
Click to reveal answer
intermediate
How does Excel handle the order of operations in formulas with multiple arithmetic operators?
Excel follows the standard math order of operations: parentheses first, then exponentiation (^), then multiplication (*) and division (/), and finally addition (+) and subtraction (-). For example, =2 + 3 * 4 equals 14, not 20.
Click to reveal answer
Which operator would you use to subtract one cell value from another in Excel?
A-
B+
C*
D/
✗ Incorrect
The minus sign - is used for subtraction in Excel formulas.
What is the result of the formula =5 + 2 * 3 in Excel?
How do you write a formula to calculate 3 squared in Excel?
A=3 * 2
B=3 + 2
C=3 ^ 2
D=3 / 2
✗ Incorrect
The caret ^ is used for powers. =3 ^ 2 means 3 squared.
Which operator has the highest priority in Excel formulas?
A^
B-
C*
D+
✗ Incorrect
Exponentiation ^ has higher priority than multiplication, division, addition, and subtraction.
What does the formula = (2 + 3) * 4 calculate first?
AAddition and multiplication at the same time
B3 * 4
C2 * 4
D2 + 3
✗ Incorrect
Parentheses have the highest priority, so Excel calculates 2 + 3 first.
Explain how to use the four basic arithmetic operators in Excel formulas and give an example for each.
Think about how you add, subtract, multiply, and divide numbers in real life.
You got /5 concepts.
Describe the order of operations Excel follows when calculating formulas with multiple arithmetic operators.
Remember the math rule PEMDAS or BODMAS.
You got /5 concepts.
Practice
(1/5)
1. Which arithmetic operator in Excel is used for multiplication in a formula like =A1 * B1?
easy
A. + (plus)
B. * (asterisk)
C. - (minus)
D. / (slash)
Solution
Step 1: Identify the multiplication operator
In Excel formulas, the asterisk (*) is used to multiply values.
Step 2: Confirm the operator in the example
The formula =A1 * B1 uses the asterisk to multiply the values in cells A1 and B1.
Final Answer:
* (asterisk) -> Option B
Quick Check:
Multiplication = * [OK]
Hint: Remember * means multiply in Excel formulas [OK]
Common Mistakes:
Confusing * with + for addition
Using x instead of *
Using / for multiplication
2. Which of the following is the correct formula to add values in cells A1 and B1 in Excel?
easy
A. =A1 + B1
B. =A1 - B1
C. =A1 * B1
D. =A1 / B1
Solution
Step 1: Identify the addition operator
The plus sign (+) is used to add numbers in Excel formulas.
Step 2: Check the formula syntax
The formula =A1 + B1 correctly adds the values in cells A1 and B1.
Final Answer:
=A1 + B1 -> Option A
Quick Check:
Addition = + [OK]
Hint: Use + to add numbers in Excel formulas [OK]
Common Mistakes:
Using - instead of +
Forgetting the = sign
Using * for addition
3. What is the result of the formula =10 + 5 * 2 in Excel?
medium
A. 25
B. 30
C. 15
D. 20
Solution
Step 1: Apply order of operations
Excel calculates multiplication before addition, so 5 * 2 = 10.
Step 2: Add the results
Then add 10 + 10 = 20.
Final Answer:
20 -> Option D
Quick Check:
10 + (5 * 2) = 20 [OK]
Hint: Multiply before adding unless parentheses change order [OK]
Common Mistakes:
Adding first then multiplying
Ignoring operator precedence
Confusing * with +
4. The formula =A1 + B1 * returns an error. What is the problem?
medium
A. Formula should start with a single quote
B. Using + instead of -
C. Missing value after the * operator
D. Parentheses are required around A1 and B1
Solution
Step 1: Check formula completeness
The formula ends with an operator * but has no value after it, which is invalid.
Step 2: Understand Excel syntax rules
Every operator must have values on both sides; missing value causes an error.
Final Answer:
Missing value after the * operator -> Option C
Quick Check:
Operators need values on both sides [OK]
Hint: Ensure every operator has values before and after [OK]
Common Mistakes:
Leaving operator at end
Forgetting to complete formula
Adding unnecessary parentheses
5. You want to calculate the total price with tax in Excel. The price is in cell A2, and tax rate (as decimal) is in B2. Which formula correctly calculates price plus tax?
hard
A. =A2 + B2 * A2
B. =(A2 + B2) * A2
C. =A2 + B2
D. =A2 + B2 + A2
Solution
Step 1: Understand the calculation
Total price with tax = price + (price x tax rate).
Step 2: Match formula to calculation
Formula =A2 + B2 * A2 correctly adds price plus tax amount (B2 * A2).
Final Answer:
=A2 + B2 * A2 -> Option A
Quick Check:
Price + (TaxRate x Price) = Total [OK]
Hint: Multiply tax rate by price, then add price [OK]