edited by
11,537 views
31 31 votes

Consider the circuit in figure. $f$ implements

  1. $\overline{A} \overline{B}C + \overline{A}B \overline{C} + ABC$

  2. $A + B + C$

  3. $A \oplus B \oplus C$

  4. $AB + BC + CA$

2 Answers

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$

edited by
Answer:
Position:
Show:

Related questions

59 59 votes
6 answers 6 answers
21.4k
21.4k views
Kathleen asked Oct 9, 2014
21,433 views
Consider the circuit in below figure which has a four bit binary number $b_3b_2b_1b_0$ as input and a five bit binary number, $d_4d_3d_2d_1d_0$ as output.Binary to Hex co...
12 12 votes
1 answers 1 answer
4.2k
4.2k views
go_editor asked Feb 10, 2018
4,184 views
Consider the synchronous sequential circuit in the below figureGiven that the initial state of the circuit is $S_4,$ identify the set of states, which are not reachable.
25 25 votes
4 answers 4 answers
9.9k
9.9k views
Kathleen asked Oct 9, 2014
9,946 views
Consider the synchronous sequential circuit in the below figureDraw a state diagram, which is implemented by the circuit. Use the following names for the states correspon...
37 37 votes
3 answers 3 answers
14.0k
14.0k views
go_editor asked Sep 29, 2014
14,027 views
The Boolean expression of the output $f$ of the multiplexer shown below is$\overline {P \oplus Q \oplus R}$$P \oplus Q \oplus R$$P+Q+R$$\overline{P+Q+R}$