Digital Electronics - Combinational Logic Circuits - Discussion

Discussion Forum : Combinational Logic Circuits - General Questions (Q.No. 6)
6.
Convert BCD 0001 0010 0110 to binary.
1111110
1111101
1111000
1111111
Answer: Option
Explanation:
No answer description is available. Let's discuss.
Discussion:
15 comments Page 1 of 2.

Chari said:   10 years ago
Firstly convert the given BCD number into equivalent Decimal Number.

0001 0010 0110 = 126. Here each four bits are correspond to equivalent decimal number.

Think about the number 126. It was nearer to number 128.

128 = 2^7.

It means if you convert it to binary, it consists seven bits are zero '0' and '1' is the left most bit for decimal digit which is in 2^n form.

The equivalent binary number can be find like this only.

126 = 128-2.
(10000000-10) = 1111110.

Chris said:   1 decade ago
0001 = 1
0010 = 2
0110 = 6
Then 0001 0010 0110 = 126
126 / 2 = 63 ...0
63 / 2 = 31 ...1
31 / 2 = 15 ...1
15 / 2 = 7 ...1
7 / 2 = 3 ...1
3 / 2 = 1 ...1
1 / 2 = 0 ...1

126 = 1111110

Sangeetha said:   1 decade ago
BCD to binary conversion is very simple.

0001 0010 0110 = 126.
126 is BCD code of the binary value.

To convert BCD to binary value 126 is div by 2.
Then we will get the answer like 1111110.

Chandan Pahuja said:   1 decade ago
Its decimal equivalent will be 126 because
0001=1
0010=2
0110=6
then converting 126 into binary by successive division by 2,it yields 1111110 i.e. The required answer.

KOBBY said:   1 decade ago
The equivalent decimal code is 126. Using successive divisions, you get 1111110. (base 2).

(NB: You write form the top to the button).

Thank you all.

Sneha jose said:   1 decade ago
0001=1,0010=2,0110=6
we know 127 is represented by 1111111
(1000000 as 1-2-4-8-16-32-64-128)
then 126 is just a 1bit change from 127,ie.,1111110.

Govind said:   6 years ago
BCD(binary coded decimal).

0001 0010 0110 i.e 126
By using 8421.

64+32+16+8+4+2+1.
1 1 1 1 1 1 0 i.e 126,
So, the ans is 1111110.
(1)

Shah Jahan Wani said:   6 years ago
BCD Number is 0001 0010 0110 i.e. 126.

Binary number for 127 = (128-1) i.e. (1111111).
Therefore BCD 126 = 1111110,
Option A is correct.

Nimma gill said:   1 decade ago
The BCD number is 0001=1, 0010=2, 0110=6

So that 126 and it convert in binary form 11111110 thats is required answer.

Ravi kumar sinha said:   1 decade ago
Converting given bcd to binary we get 126 and after converting that to binary we get 1111110 which is option a.


Post your comments here:

Your comments will be displayed after verification.