InterviewSolution
Saved Bookmarks
| 1. |
Boolean Expression Simplification F=AB'C+B+BD'+ABD'+A'C=B+C |
|
Answer» Boolean expression is used to design a logic CIRCUIT and carrying with three INPUTS A, B and C. It is used to SIMPLIFYING the outputs by using Algebra, (resulting from LESS number of terms) and the number of inputs per GATE (resulting ... =a`b`cd + a`bcd + ab`cd + abc`d`+ abc`d + abcd` + abcd. =cd(a`b` + ... (a`+b+c`+d`)(a`+b`+c+ d)(a`+b`+c+ d`) (a`+b`+c`+d)(a`+b`+c`+d`)] |
|