Yahoo Answers is shutting down on 4 May 2021 (Eastern Time) and the Yahoo Answers website is now in read-only mode. There will be no changes to other Yahoo properties or services, or your Yahoo account. You can find more information about the Yahoo Answers shutdown and how to download your data on this help page.
Computer science.?
The bits in a byte are as follows:
0 1 0 0 1 1 1 1
What are the bits like in the byte, the bits are shifted to the right?
2 Answers
- ∅Lv 73 years ago
not sure what you're asking.
maybe if i had read your book like YOU were supposed to have...
- Crim LiarLv 73 years ago
I depends on what kind of shift you perform!
In a simple shift:
0 1 0 0 1 1 1 1 becomes 0 0 1 0 0 1 1 1
In a roll the 1 that falls off the end is added back to the left:
0 1 0 0 1 1 1 1 becomes 1 0 1 0 0 1 1 1
If you have a carry bit in some shifts the value of that carry would be shifted in into the MSB (left-hand bit).