Truth Terms Flashcards

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
Q

0==1

26
Q

0==0

27
Q

&&

28
Q

||

29
Q

!

30
Q

!=

31
Q

==

32
Q

> =

A

greater-than-equal

33
Q

<=

A

less-then-equal