Truth Terms Flashcards

(33 cards)

1
Q

!false

A

true

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

!true

A

false

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

true || false

A

true

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

true || true

A

true

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

false || true

A

true

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

false || false

A

false

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

true && false

A

false

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

true && true

A

true

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

false && true

A

false

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

false && false

A

false

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

not (true || false)

A

false

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

not (true || true)

A

false

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

not (false || true)

A

false

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

not (false || false)

A

true

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

!(true && false)

A

true

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

!(true && true)

17
Q

!(false && true)

18
Q

!(false && false)

19
Q

1!=0

20
Q

1!=1

21
Q

0!=1

22
Q

0!=0

23
Q

1==0

24
Q

1==1

25
0==1
false
26
0==0
true
27
&&
and
28
||
or
29
!
not
30
!=
not equal
31
==
equal
32
>=
greater-than-equal
33
<=
less-then-equal