Operators These are mathematical and logical operators that are fairly universal in programming. Math / Arithmetic + Addition - Subtraction * Multiplication / Division ++ Increment -- Decrement Operators != Not Equals == Equals >= Greater than or equal to <= Less than or equal to > Greater than < Less than Logical Operators || OR && AND ! NOT Bitwise Opereatiors << SHIFT LEFT >> SHIFT RIGHT & AND ^ XOR | OR