Question:What does the << operator do?
A Performs bitwise left shift B Performs bitwise right shift C None D Both
+ Answer
+ ExplanationThe << operator shifts bits to the left, effectively multiplying the number.
+ Report