Logic gates Flashcards

1
Q

Truth table for NOT logic gate

A

INPUT OUTPUT
A Q = NOT A
0 1
1 0

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

Truth table for AND logic gate

A
INPUTS	OUTPUT
A	B	Q
0	0	0
0	1	0
1	0	0
1	1	1
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

Truth table for OR logic gate

A
INPUTS	OUTPUT
A	B	Q
0	0	0
0	1	1
1	0	1
1	1	1
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

Truth table for XOR logic gate

A
INPUTS   	OUTPUT
A    	B	        A XOR B
0	0	        0
0	1	        1
1	0	        1
1	1	        0
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

Truth table for NAND logic gate

A
A	B	A AND B  	NOT (A AND B)
0	0	0	                1
0	1	0                  	1
1	0	0              	1
1	1	1               	0
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

Truth table for NOR logic gate

A
A	B	A OR B	 NOT (A OR B)
0	0	0	         1
0	1	1	         0
1	0	1	         0
1	1	1	         0
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

Construct a half adder

A

A and B leading to both AND gate and XOR gate. Top line (Carry A.B) bottom line (SUM A+B)

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

What is the use of an edge triggered D type flip flop circuit?

A

Every other clock signal, the value of Q changes

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