Unsigned value 4 bit binary number 8 bit binary number
-------------- ------------------- -------------------
0 0000 00000000
1 0001 00000001
2 0010 00000010
3 0011 00000011
|
| Given a binary number representation an unsigned value, how to determine the decimal number representation represented ? |
| Sum the value of each digit multiplied by its place value |
Given the binary representation: 01011001 What is the decimal representation for the same unsigned value ? |
| Given a decimal number representation an unsigned value n, how to determine the binary number representation represented ? |
|
Given the unsigned decimal representaion 89
What is the binary representation in 8 bits (1 byte)
for the same unsigned value ?
|