InterviewSolution
Saved Bookmarks
| 1. |
The compliment of the Boolean expression x.y + x’.(y+z) is: |
|
Answer» plement will be f' = (x' + y)(x'*(y+z'))(y). To find the complements of a boolean function, we apply DE MORGAN's law . 1) We change the OR gates with the AND gates and the AND gates with the OR gates. 2) We change each literal in the function such that it becomes its complement. |
|