Question:Which operator would you use to perform a logical negation?
A & B | C ! D ~
+ AnswerC
+ ExplanationThe ! operator negates a boolean value.
+ Report