Translate the number 3610 в binary like this:
the Integer part of the number is divided by the base of the new number system:
36 | 2 | | | | | |
-36 | 18 | 2 | | | | |
0 | -18 | 9 | 2 | | | |
| 0 | -8 | 4 | 2 | | |
| | 1 | -4 | 2 | 2 | |
| | | 0 | -2 | 1 | |
| | | | 0 | | |
 |
the result of the conversion was:
3610 = 1001002
You specified the size of your number 1 byte.
Add a signed bit to the number like this:
1001002 = 101001002
Since the number you entered is negative, you need to translate it from the direct code to the additional one.
to do this, first perform the conversion from direct code to reverse by inverting all bits except the signed one, then get the direct code by adding 1 bit.
1 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | direct code |
| | | | | . | . | | |
1 | 1 | 0 | 1 | 1 | 0 | 1 | 1 | reverse code |
| | | | | | + | 1 | +1 bit |
1 | 1 | 0 | 1 | 1 | 1 | 0 | 0 | additional code |
the Final answer: -3610 = 110111002 (1 byte)