Convert gray code 101011 into its binary equivalent
Answers
Answered by
3
Explanation:
(101011) into binary is 111110
Answered by
2
Answer:
The binary equivalent of gray code 101011 is 110010
Explanation:
The conversion of binary code to gray code is done by the following steps:
- The most significant bit will be the same in both the codes
- The next digit in the binary is the EXOR of the binary MSB and the second MSB in Gray Code.
- Similarly, EXOR the third MSB of the numbers, and Gray code is obtained in the previous step to get the third binary MSB.
- Repeat the previous steps until you find the Gray Code LSB.
#SPJ2
Similar questions