Skip to content
Related Articles
Open in App
Not now

Related Articles

GATE | GATE-CS-2014-(Set-1) | Question 65

Improve Article
Save Article
  • Difficulty Level : Medium
  • Last Updated : 19 Nov, 2018
Improve Article
Save Article

Consider the following Boolean expression for F:

F(P, Q, R, S) = PQ + P'QR + P'QR'S

The minimal sum-of-products form of F is
(A) PQ + QR + QS
(B) P + Q + R + S
(C) P’ + Q’ + R’ + S’
(D) P’R + P’R’S + P


Answer: (A)

Explanation: Given,

F(P, Q, R, S) = PQ + P'QR + P'QR'S
= Q(P + P'R + P'R'S)
= Q(P + R + R'S)
= Q(P + R + S)
= PQ + QR + QS

Note that A + AB = A and A + A’B = A + B.

So, option (A) is correct.

Quiz of this Question

My Personal Notes arrow_drop_up
Related Articles

Start Your Coding Journey Now!