Question:What does a &= b do?
A Sets a to b B Performs bitwise AND and assigns the result to a C Adds a and b D None
+ AnswerB
+ ExplanationThis is a compound assignment operator.
+ Report