retagged by
1,155 views

2 Answers

Best answer
2 votes
2 votes

$\overline{(A_2\oplus B_2)\oplus (A_1\oplus B_1)\oplus(A_0\oplus B_0)} = (A_2\oplus B_2)\odot (A_1\oplus B_1)\oplus(A_0\oplus B_0)= (A_2\oplus B_2)\oplus (A_1\oplus B_1)\odot(A_0\oplus B_0)$

a) $((0\oplus 1)\oplus (1\oplus 1))\odot(0\oplus1) = 1\odot 1 = 1$

b) $((0\oplus 1)\oplus (1\oplus 0))\odot(0\oplus1) = 0\odot 1 = 0$

c) $((1\oplus 1)\oplus (0\oplus 1))\odot(1\oplus 0) = 1\odot 1 = 1$

d)$((1\oplus 0)\oplus (0\oplus 1))\odot(1\oplus 1) = 0\odot 0 = 1$

I think they mean to ask invalid combination and did typo :D

Another way,
Xor gives $1$ when having odd no's of $1's$ in input, otherwise $0$. so take the complement of that result of xor, will get $1$ for option a,c,d and $0$ for option b.

selected by
1 votes
1 votes
Firstly EXNOR gate gives Output as 1 When all the inputs are 0's or all the inputs are 1's

Now go from bottom to Top 3 inputs must be 0's or 1's

If you observe in option 2  when u do xor with corresponding bits all are 1's

but in option 1 A2 violates this condition.

Related questions