Python Programming - Operators - Discussion

Discussion Forum : Operators - General Questions (Q.No. 7)
7.
Which operator is used for performing Bitwise AND operation?
&&
&
||
|
Answer: Option
Explanation:
The & operator in Python is used for performing Bitwise AND operation on two operands. For example, 0110 & 0011 will result in 0010 as the output.
Discussion:
Be the first person to comment on this question !

Post your comments here:

Your comments will be displayed after verification.