4.3 Logic Flashcards

You may prefer our related Brainscape-certified flashcards:
1
Q

What are Logic Statements?

A

Logic Statements can be evaluated as either true or false.

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

What is a Truth Table?

A

A Truth Table is a method of representing every possible output based off on the inputs to a Boolean Expression.

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

What are the Logical Operators?

A
  1. AND
  2. NOT
  3. OR
  4. NAND
  5. NOR
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

What is a NOT gate?

A

Not Reverses an Input. Ā = B

1 → 0

0 → 1

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

What is an OR gate?

A

An or gate returns true if either conditions are true, aka if a 1 is present. A V B = C / A + B = Q

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

What is an AND gate?

A

AND gates are the opposite of OR gates, it returns true if both values are true.

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