edited by
14,114 views
38 38 votes

The Boolean expression of the output $f$ of the multiplexer shown below is

  1. $\overline {P \oplus Q \oplus R}$
  2. $P \oplus Q \oplus R$
  3. $P+Q+R$
  4. $\overline{P+Q+R}$

3 Answers

Best answer
48 48 votes
$f = S_0'S_1' R + S_0'S_1R' + S_0S_1'R' + S_0S_1R$
$\quad=Q'P'R + Q'PR' + QP'R' + QPR $
$\quad= Q'(P⊕R) + Q(P⊕R)' $
$\quad= Q⊕P⊕R = P⊕Q⊕R$

Doing truth value substitution,
$${\begin{array}{|cccc|c|}\hline
\textbf{P}&    \textbf{Q}&  \textbf{R}&\bf{f}& \bf{P \oplus Q \oplus R } \\\hline
0&0&0&0&0 \\ 0&0&1&1&1\\     0&1&0&1&1\\    0&1&1&0&0\\    1&0&0&1&1\\  1&0&1&0& 0  \\    1&1&0&0&0\\    1&1&1&1& 1\\ \hline
\end{array}}$$ Correct Answer: B
edited by
6 6 votes

Draw the k-map, and the pattern like this is always of XOR therefore, the answer will be P⊕Q⊕R

0 0 votes
If P=0 and Q=0 our output must be R right
see only B and C gives R
if P=0 and Q=1 our output must be R' right
only B gives R'
hence B is the answer
Answer:
Position:
Show:

Related questions

71 71 votes
14 answers 14 answers
42.9k
42.9k views
go_editor asked Sep 29, 2014
42,920 views
In the sequential circuit shown below, if the initial value of the output $Q_1Q_0$ is $00$. What are the next four values of $Q_1Q_0$? $11$, $10$, $01$, $00$$10$, $11$, $...
43 43 votes
6 answers 6 answers
19.3k
19.3k views
go_editor asked Sep 29, 2014
19,335 views
What is the boolean expression for the output $f$ of the combinational logic circuit of NOR gates given below?$\overline{Q+R}$$\overline{P+Q}$$\overline{P+R}$$\overline{P...
31 31 votes
2 answers 2 answers
11.6k
11.6k views
Kathleen asked Oct 9, 2014
11,572 views
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$
26 26 votes
4 answers 4 answers
8.8k
8.8k views
Misbah Ghaya asked Nov 8, 2016
8,823 views
The output $F$ of the below multiplexer circuit can be represented by$AB+B\bar{C}+\bar{C}A+\bar{B}\bar{C}$$A\oplus B\oplus C$$A \oplus B$$\bar{A} \bar{B} C+ \bar{A} B \ba...