How does the number of digits change as the number is progressively converted from binary to octal to decimal to hexadecimal system?

1 Answer
Apr 2, 2017

Number of digits used to represent any number continuously decreases.

Explanation:

As the number is progressively converted from binary to octal to decimal to hex, the number of digits used to represent any number continuously decreases.

For example

#(100101010111100110111101111)_2# - Binary - twenty seven digits

= #(452746757)_8# - Octal - nine digits

= #(78368239)_10# - Decimal - eight digits

= #(4ABCDEF)_16# - Hexagesimal - seven digits.

Note that decline in number of digits, from Decimal to Octal is not much as difference between bases is not much and in some cases it may be equal. For example

#(52746757)_8=(11259375)_10=(ABCDEF)_16#.

But this will never increase.