Example: 10 + 9 = 19
The addition operator (+) adds two numbers together.
Example: 89 - 37 = 52
The subtraction operator (-) subtracts one number from another.
Example: 3 * 78 = 234
The multiplication operator (*) multiplies two numbers.
Example: 60 / 6 = 10
The division operator (/) divides one number by another.
Example: Remainder of 298 / 8 = 2
The modulus operator (%) returns the remainder of a division.
Example: 8 incremented by 1 = 9
The increment operator (++) increases a variable's value by 1.
Example: 55 decremented by 1 = 54
The decrement operator (--) decreases a variable's value by 1.