Question:What does b >>= 1 do?
A Divides b by 2 and assigns the result to b B Multiplies b by 2 and assigns the result to b C None D Both
+ AnswerA
+ ExplanationThe right shift operator divides the value by 2 for each shift.
+ Report