-
Which of these statements are incorrect?
-
- The right shift operator, >>, shifts all of the bits in a value to the right specified number of times
- The right shift operator automatically fills the higher order bits with 0
- The left shift operator, <<, shifts all of the bits in a value to the left specified number of times
- The left shift operator can be used as an alternative to multiplying by 2
- None of these
Correct Option: B
The right shift operator automatically fills the higher order bit with its previous contents each time a shift occurs. This also preserves the sign of the value.