The modulo operation:
divdend % divisor = remainderdivident mod divisor = remaindera % 1 is always 0 because a / 1 = aa % a is always 0 because a / a = 1a % 0 is not defined because a / 0 is nota % b = c where c will always in [0,b) when a > ba % b = a when b > a
You can check if something is odd by seeing if it is divisible by 2: n % 2 != 0
TODO: Examples and clever use: