Boolean Logic Flashcards

1
Q

What are the logic gates we cover?

A

NOT,
AND,
OR,
XOR

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

What is a truth table?

A

A table that shows the inputs into a boolean expression or logic circuit and provides the outputs when the inputs are on or off

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

What are the symbols of the logic gates we cover?

A

NOT: ¬
AND: ^
OR: V
XOR: ⊻

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

What is a K-map/Karanaugh Map?

A

A table that maps the inputs of a boolean expression, so that the boolean expression can be easily simplified by drawing boxes with size 2^n that can loop around the map

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

What is a half-adder?

A

A logic circuit that adds together 2 bits A and B
Sum = A⊻B
Carry = A^B

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

What is a full adder?

A

A logic circuit that adds together 3 bits, A, B and Cin
Sum = A⊻B⊻Cin
Carry = (A^B)V((A⊻B)^Cin)

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

What is a D-type Flip Flop?

A

A logic circuit that is used to hold data in a circuit so that it can be used later.
The data is stored every rising edge of the clock (low to high)

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