Write a truthtable for the folowing opeaation D AB C where
Write a truthtable for the folowing opeaation D = (A*B) + C\' where A, B, and C are inputs and D is the out put
Solution
The function D = AB + C will be having 8 different values for each of the combinations of A,B and C i.e. 2X2X2 = 8 possibilities
| A | B | C | D | 
| 0 | 0 | 0 | 1 | 
| 0 | 0 | 1 | 0 | 
| 0 | 1 | 0 | 1 | 
| 0 | 1 | 1 | 0 | 
| 1 | 0 | 0 | 1 | 
| 1 | 0 | 1 | 0 | 
| 1 | 1 | 0 | 1 | 
| 1 | 1 | 1 | 1 | 

