What does 1 represent in binary?
TRUE
What does 0 represent in binary?
FALSE
What is NOT (A) when A = 1
0
What is NOT (A) when B = 0
1
What is A AND B when A = 0 and B = 0?
0
What is A AND B when A = 0 and B = 1?
0
What is A AND B when A = 1 and B = 1?
1
What is A OR B when A = 0 and B = 0?
0
What is A OR B when A = 1 and B = 0?
1
What is A OR B when A = 1 and B = 1?
1