Vidyalelo
Python · Q14

Python MCQs: Bitwise and Boolean Operations Chapter

Programming · Python · question 14

Q14

What is the result of not (True or False) ?

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

Answer: Option B

Solution

Answer: Option B
Solution:
The not operator negates the boolean value, resulting in False.