Google interview question

Difference between arithmetic and logical shift

Interview Answers

Anonymous

8 Apr 2010

I think..... arithmetic right shift will shift in the sign bit while preserving the sign bit .. Logical shift always shifts in zeros no matter in which direction you do the shift

2

Anonymous

23 Jul 2010

That's correct. Moreover, in Java the arithmetic right shift operator is >> whereas the logical right shift is >>>