convert (0011 0111 0101) bcd to decimal.
Answers
Answer:
How to convert BCD to Decimal:
Converting a BCD to Decimal is quite simple.
Step 1: If you want to convert a number from BCD to simply divide the binary number
into groups of four digits, starting with the least significant digit.
Step 2: Now raise it to a power of 0 and increase that power by 1 each time
according to the
hexadecimal number equivalent.
Example 1: Convert the following binary numbers: 1012, 11102,
10010012 and 10100111001.1012 into their decimal equivalents.
1012 = 0101BCD = 510
11102 = this will produce an error as it is decimal 1010 and not a
valid BCD number
10010012 = 0100 1001BCD = 4910
10100111001.1012 = 0101 0011 1001.1010BCD =
539.62510
Table BCD to Decimal:
DECIMAL BCD
0 0000
1 0001
2 0010
3 0011
4 0100
5 0101
6 0110
7 0111
8 1000
9 1001