31 31 votes Consider the circuit in figure. $f$ implements $\overline{A} \overline{B}C + \overline{A}B \overline{C} + ABC$ $A + B + C$ $A \oplus B \oplus C$ $AB + BC + CA$ Digital Logic gate1996 digital-logic circuit-output easy multiplexer + – Kathleen 11.5k views answer comment Share Follow Print See all 6 Comments 6 6 Comments reply Show 3 previous comments Aditya_np1 commented Dec 29, 2025 reply Follow flag Here we can see that there are three length string of 1s and 0s. So if we have a single bit with XOR and XNOR then we can analyze with even number of 0s and odd number of 1s. But do you want to say that aggregatedly if the odd number of 1s then we can say the XOR is there? like , 1 xor 0 xor 1 xor 0 , in this we can Easily identify even numbers of ones but in : 110 XOR 101 xor 011 xor 111 , in this do we can identify? do we have to see total 1's ?? 0 0 replyShare Deepak Poonia commented Aug 9 reply Follow flag Detailed Video Solution: https://youtu.be/wEhjAAs8iqk?t=2768&feature=shared 0 0 replyShare Raj_Dev_Verma commented Aug 21 reply Follow flag Option C is correct repeated question 0 0 replyShare Please log in or register to add a comment.
Best answer 39 39 votes $0 - C$ will be selected for $A = 0, B=0$. $1 - \bar C$ will be selected for $A = 0, B = 1.$ $2 -\bar C$ will be selected for $A = 1, B = 0.$ $3 -C$ will be selected for $A = 1, B = 1.$ So, $f = \bar A \bar B C + \bar A B \bar C +A \bar B \bar C + ABC$ $\qquad = \bar A (\bar BC + B \bar C) + A (\bar B \bar C + BC)$ $\qquad = \bar A (B \oplus C) + A (B \odot C)$ $\qquad = \bar A (B \oplus C) + A (\overline{B \oplus C})$ $\qquad = A \oplus B \oplus C$ Correct Answer: $C$ Arjun answered Aug 3, 2018 • edited Oct 29, 2019 by Arjun Arjun comment Share Follow 0 reply Please log in or register to add a comment.
10 10 votes See the last part... Nitesh Singh 2 answered Aug 8, 2019 Nitesh Singh 2 comment Share Follow 0 reply Please log in or register to add a comment.