l
BitShiftRight 65 4 positions
65 >> 4
65 written in binary format is 1000001
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