1.4.3 Boolean Algebra Flashcards

1
Q

1.4.3 A)
What are the four main logic gates

A

AND
OR
NOT
XOR

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

1.4.3 A)
What is the symbol and operation of the AND logic gate.

A

Conjunction
symbol - ^

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

1.4.3 A)
What is the symbol and operation of the OR logic gate.

A

Disjunction
symbol - V

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

1.4.3 A)
What is the symbol and operation of the NOT logic gate.

A

Negation
symbol - ¬

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

1.4.3 A)
What is the symbol and operation of the XOR logic gate. Gate look

A

DIsjunction
symbol - ⊻
the gate looks like a or gate with a line at the font (check notes)

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

1.4.3 B)
What do truth tables show

A

all possible permuations of in input.

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

1.4.3 B)
truth table for AND, where a and b are inputs and y is the output

A

A B Y
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
8
Q

1.4.3 B)
truth table for OR, where a and b are inputs and y is the output

A

A B Y
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
9
Q

1.4.3 B)
truth table for NOT, where a is the input and y is the output

A

A Y
0 1
1 0

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

1.4.3 B)
truth table for XOR, where a and b are inputs and y is the output

A

A B Y
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
11
Q

1.4.3 B)
How do you know how many inputs are needed for a table

A

2^n where n is the number of inputs.

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

1.4.3 B)
What is the need to simplify Boolean expressions

A

Logic gates represent electrical circuits, so its important to use as little as possbile.

reduce size of the circuit
reduce cost
reduce power consumption
quicker execution

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

1.4.3 B)
Karnaugh maps

A

just check notes

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

1.4.3 C)
What is demogans law

A

Involves breaking a negative and dchaing the operation.

¬(A∪B)= ¬A∩¬B
¬(A∩B) = ¬A∪¬B

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

1.4.3 C)
What is the distribution rule

A

conjunction over disjunction

A^(BvC) = (A^B)V(A^C)

disjunction of conjunction

AV(BvC) = (AVB)^(AVC)

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

1.4.3 C)
What is the association law

A

(A^B)^c = A^(B^C)
(AVB)Vc = AV(BVC)

17
Q

1.4.3 C)
commutation

A

order doesnt matter
AVB = BVA
B^A = A^B

18
Q

1.4.3 C)
double negative law

A

¬¬ A = A

19
Q

1.4.3 E)
What is a D-type flip flops

A

Logic circuit which can store the value of 1 bit.

20
Q

1.4.3 E)
How does D-type flip flops work.

inputs and outputs

A

Has 2 inputs control signal and clock input. A clock is a regular pulse generated by CPU used to coordinate components.

A clock pulse rises and falls (shown in notes).

The output can only change at a rising edge. the start of a clock tick.

20
Q

1.4.3 E)
What is an adder

A

Is a logic circuit which adds together the number of inputs.

21
Q

1.4.3 E)
Half adder

A

Two inputs and two outputs (diagram in notes + truth table)

21
Q

1.4.3 E)
Full adder

A

Three inputs and 2 outputs allows for a carry to be represented. (diagram in notes + truth table)