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)

A

false

17
Q

!(false && true)

A

true

18
Q

!(false && false)

A

true

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
Q

0==1

A

false

26
Q

0==0

A

true

27
Q

&&

A

and

28
Q

||

A

or

29
Q

!

A

not

30
Q

!=

A

not equal

31
Q

==

A

equal

32
Q

> =

A

greater-than-equal

33
Q

<=

A

less-then-equal