RTUComputer ScienceYr 2024 · Sem 32024

Q4Digital Electronics

Question

2 marks

Convert -> ( )G

Answer

Converting binary 10101101 to Gray code requires systematically XORing adjacent binary bits to yield 11111011.

To manually convert the pure binary number into its Gray code equivalent, we retain the Most Significant Bit (1). For all subsequent bits, we perform a logical XOR operation between the current binary bit and the immediately preceding binary bit: , , etc. The final converted sequence is .

Back to Paper