You specified that your number is in the additional code. For further conversion, you need to get a direct number code. Therefore, let\'s perform the conversion from additional code to direct code.
to do this, first perform the conversion from the additional code to the reverse by subtracting 1 bit, then get the direct code by inverting all the bits except the signed one.
| | | | | . | | |
0 | 0 | 1 | 0 | 1 | 1 | 0 | twos-complement |
| | | | | - | 1 | -1 bit |
1 | 0 | 1 | 0 | 1 | 0 | 1 | ones complement |
1 | 1 | 0 | 1 | 0 | 1 | 0 | direct code |
got It:1101010
This transfer is possible in two ways: direct transfer and using the decimal system.
first, let\'s make a direct transfer.
Fill in the number with missing zeros on the left
let\'s do a direct translation from binary to hexadecimal like this:
011010102 = 0110 1010 = 0110(=6) 1010(=A) = 6A16
the Final answer: 011010102 = 6A16
now let\'s make the transfer using the decimal system.
let\'s translate to decimal like this:
0∙27+1∙26+1∙25+0∙24+1∙23+0∙22+1∙21+0∙20 = 0∙128+1∙64+1∙32+0∙16+1∙8+0∙4+1∙2+0∙1 = 0+64+32+0+8+0+2+0 = 10610
got It: 011010102 =10610
Translate the number 10610 в hexadecimal like this:
the Integer part of the number is divided by the base of the new number system:
106 | 16 | |
-96 | 6 | |
A | | |
 |
the result of the conversion was:
10610 = 6A16
the Final answer: 011010102 = 6A16