l BitShiftRight 65 4 positions

Enter number or binary to be shifted

Enter how many positions you wish to shift

  

BitShiftRight 65 4 positions

65 >> 4

First Check for binary format:

65 written in binary format is 1000001

Decimal Shift:

BitShiftRight 4 means dividing our decimal value by 24 = 16 and rounding to 0.

Floor(65 ÷ 16) = 4

In terms of binary, it means shifting everything right one place and removing the rightmost digit, and the first left most digit becomes 0

Final Answer



100