Discussion :: Python MCQs
-
What is the output of the code shown below?not(3>4)not(1&1)
Answer : Option B
Explanation :
The function not returns true if the argument amounts to false, and false if the argument amounts to true. Hence the first function returns false, and the second function returns false.
Be The First To Comment