AND
A AND B is true if the expressions A and B are both true.
DIV
Returns the quotient of the integer division of the value A by the value B.
EXP
Returns the result of exponentiation of the value A to the power B.
MOD
Returns the remainder of the integer division of the value A by the value B.
OR
A OR B is true if at least one of the expressions A or B is true.
XOR
Performs an exclusive OR between the values A and B.
NOT
Inverts the logical result of an expression (NOT A is false if A is true, and reciprocally).