Operators Flashcards
(28 cards)
Comparison Operator <
less than
Comparison Operator >
greater than
Comparison Operator <=
less than or equal to
Comparison Operator >=
greater than or equal to
Comparison Operator =
equal
Comparison Operator <>
not equal
Comparison Operator !=
not equal ( != operator is converted to <> in the parser stage)
Name All Comparison Operators
< less than, > greater than, = greater than or equal to, = equal, <> or != not equal, BETWEEN greater than or equal to and lower than or equal to
Mathematical Operator +
addition
Mathematical Operator -
subtraction
Mathematical Operator *
multiplication
Mathematical Operator /
division (integer division truncates results)
Mathematical Operator %
modulo (remainder)
Mathematical Operator ^
exponentiation
Mathematical Operator |/
square root
Mathematical Operator ||/
cube root
Mathematical Operator !
factorial
Mathematical Operator !!
factorial (prefix operator)
Mathematical Operator @
absolute value
Mathematical Operator &
bitwise AND
Mathematical Operator |
bitwise OR
Mathematical Operator #
bitwise XOR
Mathematical Operator ~
bitwise NOT
Mathematical Operator «
bitwise shift left