What is addition, Subtraction and Multiplication
+, -, *
What is real divison
/
It outputs the whole number
What is integer division
// It outputs the number as a whole number
What is Modulo (MOD)
%
It is used to work out the remainder of the division
What are the 3 logical operators
And, Or, Not
NOT operator
has the highest precedence and is applied first e.g. Use an umbrella when raining but not cold
AND
Wear a coat if raining AND cold. Both parts have to be true
OR
Catch a bus if it is raining or cold
What is selection
Determines what path a program takes when running