Difference between logical shift right and arithmetic shift right
Answers
Answered by
0
Arithmetic shift preserve sign bit, whereasLogical shift can not preserve sign bit.Arithmetic shift perform multiplication and division operation, whereas Logical shiftperform only multiplication operation.Arithmetic shift is used for signed interpretation, whereas Logical shift is used for unsigned interpretation
Similar questions