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