+, -, *, /, %
% is the modulus symbol and it returns the remainder.
TODO: Why the mod is useful
Where we've used it before
|| OR
&& AND
!= Not equals
== Equals (Comparing)
TODO: USAGE
Prefix notation causes a variable to increment before another operation.
x++
x--
x*=
x/= TODO Verify
TODO: USAGE
Postfix notation causes a variable to increment after another operation.
++x
--y
*=y
/=y
The comparison will evaluate as false and B will be printed.
y will increment after the if statement.
z will increment before the comparisons are completed.