104 Flashcards

1
Q

What values can boolean algebra take?

A

1 or 0

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

What is boolean addition?

A

> OR
Sum = 1 when any of the literals are 1
Sum = 0 when all the literals are 0

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

What is boolean multiplication?

A

> AND
Product = 1 when all literals are 1
Product = 0 when any literals are 0

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

What are the zero and unit rules?

A

> A.0 = 0
A.1 = A
A+1 = 1
A+0 = A

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

What are the complement relations?

A

> A.A ̅=0
A+A ̅=1
A= =A [double complemented A = A]

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

What are the Idempotence rules?

A

> A.A = A

> A+A = A

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

What are the communtative laws?

A

> A+B=B+A

> A.B = B.A

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

What are the absorption rules?

A

> A + A.B = A
A.(A+B) = A
A+ A ̅.B=A+B

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

What are the distributive laws?

A

> A.(B + C) = A.B + A.C

> A + B.C = (A + B).(A + C)

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

What are the associative laws?

A

> A + B + C = (A + B) + C = A + (B + C)

> A.B.C = (A.B).C = A.(B.C)

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

What are De Morgan’s Theorems?

A

> (A+B) ̅= A ̅.B ̅

> (A.B) ̅= A ̅+ B ̅

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

What is the rule of De Morgan’s Theorems?

A

Break the line and change the sign

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

What is a multi-input gate?

A

Instead of writing out several gates in a row, we often have a gate with multiple inputs.

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

What are the two De Morgan’s theorems in words?

A

> The complement of a product of variable is equal to the sum of the complemented variables.
The compliment of a sum of variables is equal to the product of the complemented variables

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

What is circuit minimisation?

A

This is the way of simplifying expressions to minimise operations

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

Why are NAND gates special?

A

All other primitive logic gates can me made from NAND gates

17
Q

How can a NOT gate be made from NAND gates?

A

The input is the same for both inputs of the NAND gate

18
Q

How can a AND gate be made from NAND gates?

A

A NAND gate where the output goes into both inputs of another NAND gate

19
Q

How can a OR gate be made from NAND gates?

A

> y=(a ̅.b ̅ ) ̅

> Each input goes into both inputs of separate NAND gates. Each output of each NAND gate goes into another NAND gate

20
Q

How can a NOR gate be made from NAND gates?

A

> Each input goes into both inputs of separate NAND gates. Each output of each NAND gate goes into another NAND gate. The output of this gate goes into both inputs of another NAND gate
Look in Notes to see what it looks like

21
Q

How can an XOR gate be made from NAND gates?

A

> See notes

22
Q

What does CMOS Stand for?

A

Complementary Metal-oxide semiconductor

23
Q

What is CMOS?

A

> A technology used to make MOSFETS

> Made using semiconductors

24
Q

What type of semiconductor is used in CMOS technology and what has happened to it?

A

> n-type: Electrons are added to make them more negatively charge
p-type: Holes are added to make it more positively charged

25
Q

What are the two types of MOSFETS made from CMOS?

A

> n-channel MOSFETs (n-FET)

> p-channel MOSFETs (p-FET)

26
Q

What happens when n-type and p-type silicone is put together?

A

> A region between them called the depletion region is formed
This region is nonconductive

27
Q

What happens in a n-fet?

A

> When a positive charge is applied to the gate, it attracts electrons and causes the depletion region to conduct electricity and join the source and drain together

28
Q

What happens in a p-fet?

A

When a negative charge is applied to gate, it attracts holes and causes the depletion region to conduct electricity and join the source and drain together

29
Q

What is the structure of n-fet?

A

The negative silicone is on the top and the positive silicone is on the bottom

30
Q

What is the structure of a p-fet?

A

The positive silicone is on the top and the positive silicone is on the bottom

31
Q

How are gates made?

A

Using different transistors in different combinations

32
Q

How are NOT gates made from transistors?

A

> The input is connected to 2 transistors in parallel, one p-type (source connected to Vdd) and one n-type (source connected to Vss)
The drain of both resistors are connected to the output

33
Q

What is the difference between Vdd and Vss?

A

Vdd is positive (1) and Vss is negative (0)

34
Q

How are NAND gates made from transistors?

A

> See Notes

35
Q

What can be said about power efficiency of CMOS?

A

> There is no direct path between Vdd and Vss when transistors are static
This reduces power consumption
Power can pass between the two when the transistors switch

36
Q

PRACTIVE KARNAUGH MAPS

A

DO IT

37
Q

What is gray code?

A

> This is where only a single bit in a bit pair changes at a time
00 => 01 => 11 => 10