Yahoo Answers is shutting down on May 4th, 2021 (Eastern Time) and beginning April 20th, 2021 (Eastern Time) the Yahoo Answers website will be 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.
Trending News
show how natural numbers are represented in computer memory?
01001000
11010001
11001100
Assuming that this sequence represents the RGB values of a pixel -
For each byte write the bit sequence using the following notation:
zxn + yxn-1 + xxn-2 + ...... bx1 + ax0
For each byte determine the decimal value of the byte (please show how you arrived at the answer - don't just write the answer down).
1 Answer
- Anonymous10 years agoFavorite Answer
01001000 = 0x2^7 + 1x2^6 + 0x2^5 + 0x2^4 + 1x2^3 + 0x2^2 + 0x2^1 + 0x2^0
= 0 + 64 + 0 + 0 + 8 + 0 + 0 + 0
= 72
The decimal value is 72.
Do the rest the same way.