InterviewSolution
Saved Bookmarks
| 1. |
The logic circuit given below converts a binary code , into |
| Answer» Let y1 = 1, y2 = 0, y3 = 1 then x1 = 1 x2 = y1 ⊕ y2 ⇒ 1 ⊕ 0 ⇒ 1 x3 = x2 ⊕ y3 = 1 ⊕ 0 = 1 which is gray code conversion. | |