Question:Which operator is used to perform a bitwise negation?
A ! B ~ C ^ D None
+ AnswerB
+ ExplanationThe ~ operator inverts all bits of the operand.
+ Report