Activity : Shift Functions
Perform a logical left shift on the number
00110101
Perform a logical right shift on the number
10110010
Perform an arithmetic right shift on the number
00101110
Perform an arithmetic right shift on the number
11001010
Perform an arithmetic left shift on the number
10011001
Back