C | Operators | Question 27
Which of the following is not a logical operator?
(A) &&
(B) !
(C) ||
(D) |
Answer: (D)
Explanation: &&– Logical AND
!– Logical NOT
||– Logical OR
|– Bitwise OR(used in bitwise manipulations)
Quiz of this Question