+2 votes
in Class 12 by kratos

What is the most important characteristic of gray code? Explain.

1 Answer

+1 vote
by kratos
 
Best answer

Gray code changes only by one bit, each time the decimal number is incremented.

| Decimal digit | BCD | Gray |
| --- | --- | --- |
| 0 | 0000 | 0000 |
| 1 | 0001 | 0001 |
| 2 | 0010 | 0011 |
| 3 | 0011 | 0010 |
| 4 | 0100 | 0110 |
| 5 | 0101 | 0111 |

...