InterviewSolution
Saved Bookmarks
| 1. |
Find in the circuit below :(A, B, C, D) = Σ(6, 7, 13, 14);(A, B, C, D) = Σ(3, 6, 7);(A, B, C, D) = Σ(5, 6, 7, 14, 15) |
| Answer» f1(A, B, C, D) = ∑(6, 7, 13, 14) f2(A, B, C, D) = ∑(3, 6, 7) f1 ⊕ f2 = ∑(3, 13, 14) f3 x (f1 ⊕ f2) = ∑(14) = y X = f1 x y ⇒ ∑14. | |