Expression = operands & operators
Operands are values, variables, numbers , quantities and operators are + , - , * , / , %.
Addition (+)
Subtraction (-)
Multiplication (*)
Division ( / )
NOTE
When we divide a number by an integer, if there is a remainder , our programme going to remove the remainder.
Example : 10/3 = 3 not 3.33333333
What if we need the decimal part? here is how to do that :
Modulus (%)
modulus gives u the remainder of division.