convert 10010 in gray code to binary
Answers
Answered by
2
answer is 11100
using EX - OR Gate opertion between grey and binary bits...
g(4) g(3) g(2) g(1) g(0)
1 0 0 1 0
b(4) b(3) b(2) b(1) b(0)
1 1 1 0 0
using EX - OR Gate opertion between grey and binary bits...
g(4) g(3) g(2) g(1) g(0)
1 0 0 1 0
b(4) b(3) b(2) b(1) b(0)
1 1 1 0 0
Answered by
0
Answer:
11011 is the binary equivalent of 10010 in Gray code.
Explanation:
- A Gray code is an encoding of numbers in order that adjacent numbers have a single digit differing by 1. The term Gray code is usually used to refer to a "reflected" code, or more specifically still, the binary reflected Gray code. is that the reflected binary Gray code?
- Generate code for n=1: 0 and 1 code. Take the previous code in sequence: 0 and 1. Add reversed codes within the following list: 0, 1, 1 and 0. Now add prefix 0 for the original previous code and prefix 1 for brand spanking newly generated code: 00, 01, 11, and 10.
- Gray code evaluates the character of binary code or data that is composed of on and off indicators, commonly represented by ones and zeros.
- Developed by Bell Labs scientists, grey code has been wont to look at clarity and error correction in binary communications. Gray code is additionally known as reflected binary code.
#SPJ3
Similar questions