Control Instructions - Programming

Q1:

Which of the following is not logical operator?

A &

B &&

C ||

D !

ANS:A - &

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.