Q. What will the following expression evaluate to?
Code:
!true && !false
β
Correct Answer: (B)
FALSE
Explanation: Boolean operator && evaluates to true only when both the values are true.