Question:Which operator checks if two operands are not equal?
A != B == C =!= D <>
+ AnswerA
+ ExplanationThe != operator checks for inequality.
+ Report