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. |
|