Question:What does the operator >> do in C#?
A Performs bitwise left shift B Performs bitwise right shift C Both D None
+ AnswerB
+ ExplanationThe >>operator shifts bits to the right, effectively dividing the number by 2 for each shift.
+ Report