Vidyalelo
Python · Q24

Python MCQs: Bitwise and Boolean Operations Chapter

Programming · Python · question 24

Q24

What is the result of True & False ?

A.
True
B.
False
Answer
C.
None
D.
Error

Answer: Option B

Solution

Answer: Option B
Solution:
The & operator performs bitwise AND on the boolean values, resulting in False.