1>> is a right shift operator shifts all of the bits in a value to the
2right to a specified number of times.
3int a =15;
4a= a >> 3;
5The above line of code moves 15 three characters right.
6
7>>> is an unsigned shift operator used to shift right. The places which
8were vacated by shift are filled with zeroes