4.6.4 Logic Gates Flashcards

1
Q

Define Logic Gates.

A

A physical or simulated electronic circuit that takes one or more binary inputs and produces a binary output based on a logical rule.

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

Define Boolean Logic.

A

A type of algebra where variables are either true(1) or false(0).

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

Define Truth Table.

A

A table that shows all possible input combinations for a logic gate or expression, and their corresponding output.

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

What is an example of a Boolean operation?

A

AND, OR, NOT…

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

What is a logical operator?

A

AND (.)
OR (+)
NOT (-)

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

What is a Boolean Expression?

A

A way to write the logic of a circuit using symbols.

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

In a binary half adder, what logic gate represents the Sum bit?

A

XOR gate.

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

In a binary half adder, what logic gate represents the carry bit?

A

AND gate.

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

How many inputs does a binary full adder need?

A

3, 2 for the values to add and the 1 carry from the previous column.

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

What is a D type flip flop?

A

It is a circuit that stores one bit of data. It is a memory unit.
It is used to store a value until the next clock cycle.

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

What are the inputs in a D type flip flop?

A

D - data ( the value you want to store)
CLK - clock ( controls when the value on D is stored)

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

What is the output on a D type flip flop?

A

Q - holds the stored value.

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

What happens when clock signal ticks?

A

On the rising edge of the clock ( when the clock changes from 0 to 1), the value currently on D is copied to Q. This value stays stored at Q, even if D changes.
The value only changes again on the next rising edge of the clock.

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

How is the D type flip flop gate helpful?

A

It creates stable, timed storage.
Flip flop only updates at the exact moment the clock ticks.
Used in registers, memory and counters to store and control binary data reliably.

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