Report Bug
Qus : Which of the following is not logical operator?
Qus निम्नलिखित में से कौन तार्किक ऑपरेटर नहीं है?

A. &
B. &&
C. ||
D. !


Solution
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.



Report Bug