InterviewSolution
Saved Bookmarks
| 1. |
The right shift operator is _____________(a) >>(b) |
|
Answer» Correct answer is (a) >> Easiest explanation: The right shift operator is ‘>>’. It is used to shift the bits of a number towards the right. The left shift operator is ‘<<‘. It is used to shift the bits of a number to the left. |
|