gates + transistors Flashcards

1
Q

When will an AND gate output a logic high (1)?

A

when all inputs are logic high (1)

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

When will an OR gate output a logic high (1)?

A

when either of the inputs are logic high (1)

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

How many rows will a truth table have if a logic gate has 3 inputs?

A

8

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

What is the logic of a NAND gate?

A

an AND + NOT gate together

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

What is the logic of an OR gate?

A

an OR + NOT gate together

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

What does an equation using the property of absorption look like?

A

x * (x + y) = x
x * x + x * y
x + x * y
x (1 + y)
x (1)
x

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

What are the two De Morgan’s Laws?

A

!A + !B = !(AB)
!A!B = !(A + B)

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

How does an XOR gate work?

A

a(XOR)b = a’b + ab’
the output is 1 if odd number of inputs are 1
and 0 if even number of inputs are 1

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

What is the procedure for the Sum of Products (SOP)?

A
  1. Find the rows with the “1” output
  2. Write the product-form expression for the inputs in that row (A’=inverted, A=normal)
  3. Combine the products in step 2 into a sum (OR gate the results)
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

What is the procedure for the Product of Sums (POS)?

A
  1. Find the rows with the “0” output
  2. Write the sum-form expression for the inputs in that row (A = normal (0), A’ = inverted (1))
  3. Combine the sums in step 2 into a product and AND the results
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

What 3 terminals does a transistor have?

A

source, drain, gate

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

How does a transistor react when a voltage is applied?

A

If a voltage is applied to the gate, current can flow from source to drain. otherwise, the switch is off

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

What happens to NMOS and PMOS when a 1 (voltage) is applied at the gate?

A

NMOS doesn’t let the voltage through, but PMOS does

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

What happens to NMOS and PMOS when a 0 (voltage) is applied at the gate?

A

PMOS is closed off, but NMOS lets the voltage through

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

what is the difference between a node and a terminal?

A

a node is a term affiliated with the entire network, but terminal is only associated with a specific element

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

what are the technical terms for power source and ground in a digital circuit?

A

power source - vdd
ground - gnd

17
Q

How would you form a NOT gate inverter using PMOS and NMOS transistors?

A

place the PMOS on top of the NMOS, make a wire connection between the two, and connect the vdd through the top of the PMOS and connect the gnd through the bottom of the NMOS transistor.

18
Q

How would you form an AND gate using PMOS and NMOS transistors?

A

connect a NAND gate and a NOT gate to make and. use a branch system to connect two PMOS transistors side by side and a wire joining them in the middle, and then two NMOS transistors stacked on top of each other connected to one GND. and then stem a NOT gate from the center of the NAND gate.

19
Q

How would you form an OR gate using PMOS and NMOS transistors?

A

stack two PMOS transistors on top of each other with one vdd coming out the top, then connect to a branch of two NMOS transistors side by side with two gnds. then stem to a NOT gate.

20
Q

what is the difference between a “branch” on the bottom of the gate vs the top?

A

A “branch” on top is the pull up network (PUN) pulling the voltage towards the vdd (NAND) and the “branch” on the bottom is called the pull down network (PDN) pulling the voltage towards the gnd (NOR)

21
Q

What is a basic explanation of a 2-way multiplexer?

A

the output is equal to one of two inputs, based on a selector

22
Q

Explain a two to four decoder

A

When the selectors are certain values (00, 01, 10, 11), it will allow a specific data input with its value to pass through. n inputs, 2^n outputs

23
Q

what is lithography used for?

A

it is needed to create source/drain/gate

24
Q

what is a binary to 1 hot decoder

A

converts a symbol from binary code to a one-hot code