Discussion Forum : Bitwise And Boolean
Question - What is the output of the code shown below?not(3>4)not(1&1)
Options:
A .  TrueTrue
B .  TrueFalse
C .  FalseTrue
D .  FalseFalse
Answer: Option B


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.



Was this answer helpful ?
Next Question
Submit Your Solution hear:

Your email address will not be published. Required fields are marked *