Value * Value Multiplication
Value / Value Division
Value + Value Addition
Value - Value Subtraction
Value % Value Modulus
Value < Value Less than (comparison)
Value <= Value Less than or equal (comparison)
Value > Value Greater than (comparison)
Value >= Value Greater than or equal (comparison)
Value == Value Equal (comparison)
Value != Value Not equal (comparison)
Value && Value Logical AND
Value || Value Logical OR
Value << Value Bitwise shift left
Value >> Value Bitwise shift right
Value & Value Bitwise AND
Value ^ Value Bitwise XOR (exclusive OR)
Value | Value Bitwise OR