

InterviewSolution
Saved Bookmarks
1. |
What are Maxterms? Convert the following function as a product of Maxterms:F(P, Q, R) = (P + Q).(P’ + R) |
Answer» Maxterm It is a sum of all the literals (with or without the bar) within the logic system. F(P, Q, R) = (P + Q). (P’ + R’) = (P + Q + RR’). (P’ + QQ’ + R’) = (P + Q + R).(P + Q + R’).(P’ + Q + R’) ,(P’ + Q’ + R’) |
|