-
Which of the following Boolean expressions correctly represents the relation between P, Q, R and M?
-
- M = (P OR Q)XOR R
- M = (P AND Q)XOR R
- M = (P NOR Q)XOR R
- M = (P XOR Q)XOR R
Correct Option: D
From figure the output
M = PQ·(P + Q) ⊕ R
or M = ( P + Q)·(P + Q) ⊕ R
or M = ( PP + PQ + QP + QQ) ⊕ R
or M = (0 + PQ + QP + 0) ⊕ R
or M = P ⊕ Q ⊕ R
or M = (P XOR Q) XOR R
