Computer Science
What is truth table? Explain with reference to boolean algebra.
Boolean Algebra
13 Likes
Answer
Truth Table is the tabular representation of the values given and the result obtained due to any logical operation. For example:
1st Value | 2nd Value | Output |
---|---|---|
0 | 0 | 1 |
0 | 1 | 0 |
1 | 0 | 1 |
1 | 1 | 0 |
1st Value | 2nd Value | Output |
---|---|---|
FALSE | FALSE | TRUE |
FALSE | TRUE | FALSE |
TRUE | FALSE | TRUE |
TRUE | TRUE | FALSE |
Answered By
9 Likes