Logic Flashcards

(69 cards)

1
Q

&&

A

and

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

&&

A

and

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

||

A

or

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

!

A

not

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

!=

A

not equal

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

==

A

equal

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

> =

A

greater than or equal

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q
A

less than or equal

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

true

A

true

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

false

A

false

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

!false

A

true

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

!true

A

false

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

true || false

A

true

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

true || true

A

true

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

false || true

A

true

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q

false || false

A

false

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
17
Q

true && false

A

false

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
18
Q

true && true

A

true

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
19
Q

false && true

A

false

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
20
Q

false && false

A

false

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
21
Q

not(true || false)

A

false

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
22
Q

not(true || true)

A

false

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
23
Q

not(false || true)

A

false

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
24
Q

!(true && false)

A

true

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
25
!(true && true)
false
26
! (false && true)
true
27
!(false || false)
true
28
1 != 0
true
29
1 != 1
false
30
0 != 1
true
31
0 != 0
false
32
1 == 0
false
33
1 == 1
true
34
0 == 1
false
35
0 == 0
true
36
||
or
37
!
not
38
!=
not equal
39
==
equal
40
>=
greater than or equal
41
less than or equal
42
true
true
43
false
false
44
!false
true
45
!true
false
46
true || false
true
47
true || true
true
48
false || true
true
49
false || false
false
50
true && false
false
51
true && true
true
52
false && true
false
53
false && false
false
54
not(true || false)
false
55
not(true || true)
false
56
not(false || true)
false
57
not(false || false)
false
58
!(true && false)
true
59
!(true && true)
false
60
!(false && true)
true
61
!(false || false)
true
62
1 != 0
true
63
1 != 1
false
64
0 != 1
true
65
0 != 0
false
66
1 == 0
false
67
1 == 1
true
68
0 == 1
false
69
0 == 0
true