19.
Explanation
There are three logical operators:
-
Logical AND (&&): Returns true if both operands are true.
-
Logical OR (||): Returns true if at least one of the operands is true.
-
Logical NOT (!): Returns the opposite of the operand's logical value (negation).