Note: The above list of font names is for illustrative purposes only, and there might be other fonts available as well.
-
The process of converting numbers from other number systems to decimal number system involves writing the position number for each symbol, getting positional value for each symbol by raising its position number to the base value, multiplying each digit with the respective positional value to get a decimal value, and adding all these decimal values to get the equivalent decimal number.
-
To convert binary numbers to decimal, positional values are computed in terms of powers of 2. For example, to convert $(1101)_{2}$ into decimal, the positional values would be $2^3$, $2^2$, $2^1$, and $2^0$, and the decimal equivalent would be $12^5 + 12^3 + 02^2 + 12^1 + 1*2^0 = 56+8+0+2+1 = 67$.
-
To convert octal numbers to decimal, positional values are computed in terms of powers of 8. For example, to convert $(257)_{8}$ into decimal, the positional values would be $8^2$ and $8^0$, and the decimal equivalent would be $28^2 + 58^1 + 7*8^0 = 208+40+7 = 255$.
-
The base value of octal number system is 8, which is equivalent to $2^3$. Therefore, three binary digits are sufficient to represent all 8 octal digits.
-
To convert hexadecimal numbers to decimal, positional values are computed in terms of powers of 16. The decimal equivalent of alphabet symbols in hexadecimal numbers can be found in Table 2.6. For example, to convert $(COF5)_{16}$ into decimal, the positional values would be $16^3$, $16^2$, $16^1$, and $16^0$, and the decimal equivalent would be $1216^3 + 1516^2 + 1516^1 + 516^0 = 491520 + 38400 + 3840 + 5 = 531765$.