Question:What is the output of !(2 == 2)?
A true B false C null D Error
+ AnswerB
+ ExplanationThe expression evaluates to true, and negating it gives false.
+ Report