YEAR 1 CO1 WEEK 14 BOOLEAN LOGIC Flashcards

1
Q

State the purpose of boolean logic.

A

To combine multiple logical statements.

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

What are logic gates?

A

Electronic logic gates take one or more inputs produce single output.
Output can become input to another gate making more complicated cascaded sequence of logic gates implemented to form a circuit.

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

What are truth tables?

A

Column for each input and one output and Useful ways to spread all results

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

Describe Logic Diagrams.

A

Like a flowchart.
Allows user to visually trace exact path of logic from initial input to ultimate output.

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

What is Boolean algebra?

A

Very useful giving condensed summary of a logical expression.
Two outcomes (true,false)

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

What is a NOT gate?

A

Takes in one input and inverts it eg takes in 1 outputs 0
Expressed in truth table as ;
A notA
1 0
0. 1
Looks like =l>0-

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

What is an AND gate ?

A

Only results in a true output if both inputs are true / the same eg
A B A^B
0 0 0
1. 0. 0
1. 1. 1.
Looks like=Dā€”

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

What is an OR gate?

A

Prints True if either or both are 1 eg
A. B. AvB
0. 0. 0
1. 0. 1
1. 1. 1. _
Looks like =)_)-

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

What is XOR gate?

A

Prints True if only one of inputs is true eg 00 prints 0
10 prints 1
11 prints 0
Looks like OR gate

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

What is the order of precedence?

A

NOT,AND then OR

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

What are karnaugh Maps?

A

Way of displaying data from truth tables

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