Learning Guide Unit 1 Flashcards

This will cover Logic Functions and Gates, Boolean Algebra, and Boolean Logic

1
Q

What are the 4 primary types of logic gates?

A

NOT, AND, OR, Exclusive-OR (XOR)

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

Which gate is sometimes referred to as an inverter?

A

The NOT gate

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

Which gate is the only gate of the 4 primary that has a single input?

A

The Not gate

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

Outputs a logic 1 if any of its inputs are a logic 1.

A

OR Gate

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

This gate only outputs a logic of 0 if all of its inputs are logic 0.

A

OR Gate

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

” “ count the number of ones being input to a circuit and output logic 1 or 0 based on whether the number of ones is odd or even.

A

Parity checkers

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

The “ “ gate counts the number of ones at its input and outputs a logic 1 for an odd count and a logic 0 for an even count.

A

Exclusive-OR (XOR)

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

The inverter has “one” input and “ “ output.

A

One input and one output.

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

The XOR gate’s output is set to logic 1 if there are an “ “ number of ones being input to the circuit.

A

Odd

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

What condition will cause the AND gate to output a logic 0?

A

If any inputs equal zero. It does not matter what the other inputs are.

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

If any input to an “ “ gate is one, the output is 1.

A

OR gate. The only time an OR gate outputs a 0 is when all of the inputs are set to 0.

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

” “ connects multiple logic gates by using the outputs from some of the gates as inputs to others.

A

Combinational Logic

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

AND gate + NOT gate = ?

A

NAND gate

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

OR gate + NOT gate = ?

A

NOR gate

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

What law is this? The results of the boolean operations AND and OR are the same regardless of the order of their operands.

A

Commutative Law
A + B = B + A
A · B = B · A

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

What law is this? The results of the boolean operations AND and OR with three or more operands are the same regardless of which pair of elements are operated on first.

A

Associative Law
A + (B + C) = (A + B) + C
A · (B · C) = (A · B) · C

17
Q

What law is this? The AND’ing of an operand with an OR expression is equivalent to OR’ing the results of an AND between the first operand and each operand within the OR expression.

A

Distributive Law
A · (B + C) = A · B + A · C

18
Q

True or False:
A two-input XOR gate outputs a 1 if its inputs are different and a 0 is its inputs are the same.

A

True.