Logic Flashcards
1
Q
not False
A
True
2
Q
not True
A
False
3
Q
True or False
A
True
4
Q
True or True
A
True
5
Q
False or True
A
True
6
Q
False or False
A
False
7
Q
True and False
A
False
8
Q
True and True
A
True
9
Q
False and True
A
False
10
Q
False and False
A
False
11
Q
not (True or False)
A
False (NOT OR)
12
Q
not (True or True)
A
False (NOT OR)
13
Q
not (False or True)
A
False (NOT OR)
14
Q
not (False or False)
A
True (NOT OR)
15
Q
not (True and False)
A
True (NOT AND)
16
Q
not (True and True)
A
False (NOT AND)
17
Q
not (False and True)
A
True (NOT AND)
18
Q
not (False and False)
A
True (NOT AND)
19
Q
1 != 0
A
True (!=)
20
Q
1 != 1
A
False (!=)
21
Q
0 != 1
A
True (!=)
22
Q
0 != 0
A
False (!=)
23
Q
1 == 0
A
False (==)
24
Q
1 == 1
A
True (==)
25
0 ==1
False (==)
26
0 == 0
True (==)