Question:Which of the following is a compound assignment operator?
A =+ B += C == D !=
+ AnswerB
+ ExplanationCompound assignment operators perform an operation and assignment in one step.
+ Report