let\'s translate from binary-decimal to decimal like this:
11100101BCD= 1110 0101 = 1110(=14) 0101(=5) = 145
Translate the number 14510 в octal like this:
the Integer part of the number is divided by the base of the new number system:
145 | 8 | | |
-144 | 18 | 8 | |
1 | -16 | 2 | |
| 2 | | |
|
the result of the conversion was:
14510 = 2218
the Final answer: 111001012 = 2218