← Change Exercise
Integer expressions (order of operations)
Evaluate the expression on signed integers. × and ÷ first, then + and −.
(-3) · 4 + 5 =
All difficulties
0%
Accuracy
0
Current streak
0
Total answers
0
Correct
What does this generator do?
The generator builds an expression like "a · b + c" or "a ÷ b − c" with signed/positive integers. The result is always an integer.
How to solve it
1) Compute the multiplication or division first (mind the signs). 2) Then add or subtract. For signed addition, use a + (−b) = a − b.