Truth Terms Flashcards

1
Q

&&

A

(and)

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

|

A

(or)

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

!

A

(not)

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

!=

A

(not equal)

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

==

A

(equal)

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

> =

A

(greater than equal)

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

<=

A

(less than equal)

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

true

false

A

true

false

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

NOT True?

!false

!true

A

true

false

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

OR(||) TRUE?

true || false

true || true

false || true

false || false

A

true

true

true

false

Note: any || statement with a ‘true’ is immediately true

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

AND (&x2) True?

true & false

true & true

false & true

false & false

A

false

true

false

false

Note: any & that has a ‘ false’ is immediately false

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

NOT OR True?

not (true || false)

not (true || true)

not (false || true)

not (false || false)

A

false

false

false

true

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

NOT AND True?

!(true & false)

!(true & true)

!(false & true)

!(false & false)

A

true

false

true

true

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

!= True?

1 != 0

1 != 1

0 != 1

0 != 0

A

true

false

true

false

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

== True?

1 == 0

1 == 1

0 == 1

0 == 0

A

false

true

false

true

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