Which of the following is not logical operator?
Answer: Option A
Explanation:
Bitwise operators:& is a Bitwise AND operator.
Logical operators:&& is a Logical AND operator.|| is a Logical OR operator.! is a NOT operator.
So, '&' is not a Logical operator.