Chapter 4--gates & Circuits Flashcards

0
Q

True/False. Inverting the output of an AND gate is the same as inverting the individual signals first, and then sending them through an OR gate.

A

true. DeMorgan’s Law.

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

What voltages produce 0 and 1 in a logic board, respectively?

A

0-2 volts is a zero, and 2-5 volts is a one.

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

True/False. A multiplexer adds all of the bits on its input lines to produce an output.

A

false. it selects the inputs to use based on control lines. called “select signals” or “select control lines.”

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

what are the types of integrated circuits, and how are those types defined?

A

SSI=small-scale integration=1 to 10 gates. MSI=medium-scale integration=10 to 100 gates. LSI=large-scale integration=100 to 100K gates. VLSI=very-large-scale integration=100K+ gates

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

What’s the difference between a gate and a curcuit?

A

a circuit is a combination of several gates

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

how does a transistor behave?

A

as a wire or as a resistor, depending on the input signal

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

what is a transistor made of?

A

silicon doped with rare-earth element impurities

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

what are the 3 terminals in a transistor, & how do they operate?

A

source–produces a high voltage value, about 5 volts. Base–regulates a gate that determines whether the connection between source and ground/emitter is made. emitter–is connected to the ground wire.

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

what are the two categories of circuits, and how do they differ?

A

Combinatorial and sequential. in a combinatorial circuit, the input values explicitly determine the output. In a sequential circuit the output is determined by both the input values and the existing state of the circuit.

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

How many transistors does it take for each of these gates: NOT, NAND, AND, NOR, OR, & XOR?

A

NOT=1, NAND=2, AND=3, NOR=2, XOR=8, OR=2

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

name six properties of Boolean algebra, and explain each one.

A

1.commutative property=says that binary operations
AND and OR may be applied left to right or right to left. (AB=BA, a+b=b+a)

2.The associative property says that given three Boolean variables, they may be ANDed or ORed right to left or left to right. ((AB)C=A(BC); (a+b)+c=a+(b+c)). remember OR=the plus sign

  1. The distributive property says that given three Boolean variables. the first AND the result of the second OR the third is the same as the first AND the second OR the first AND the third. ( A(B+C) = (AB)+(AC)) Also, the first OR the result of second AND the third is the same as the first OR the second
    AND the result of the first OR the third. (A+(B
    C) = (A+B)*(A+C)
  2. The identity property says that any value A AND the OR identity always returns A and that any value A OR the AND identity always returns A. (A*1 = A; A+0 = A)
  3. The compliment property says that any value AND the compliment of that value equals the OR identity and that any value OR the compliment of that value equals the OR identity. (A*(A’)= 0; A+(A’) = 1)
  4. DeMorgan’s Law says that the compliment of AB is the same as the compliment of A plus the compliment of B and the compliment of A+B is the same as the compliment of B times the the compliment of A. ((AB)’ = A’+B’; (A+B)’ = A’*B’)
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

compare half-adder and full adder.

A

A half adder is a circuit that computes the sum of two bits and produces the appropriate carry bit. A full adder is a circuit that computes the sum of two bits, taking into account the carry bit.

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

define “multiplexer”.

A

a circuit that uses input control signals to determine

which of the data input lines is to be routed to the output.

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

give the Boolean expression for a full adder.

A

C is the carry in.
Sum is (A ⊕ B) ⊕ C)
Carry out is (AB) + ((A ⊕ B)C)

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

circuits used for memory are what type of circuit?

A

memory circuits

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

How many digits does an S-R latch store/

A

one binary digit

16
Q

what is an integrated circuit?

A

a chip that has multiple gates on it

17
Q

What are pins on integrated circuits used for?

A

input/output, power, or ground

18
Q

When & where were transistors invented?

A

1947, bell labs

19
Q

What is true of the outputs in an S-R latch, and what does S-R stand for?

A

The outputs are always opposites. Set-reset

20
Q

How are the transistors in these gates set up? NAND and NOR

A

The inputs for the NAND are the bases of the 2 transistors. The output is the source of one gate, whose emitter is the source of the 2nd gate. The gates are a series.

The inputs for the NOR gate are the bases of the 2 transistors, and their sources are connected to each other.

21
Q

Boole’s main work, name and date.

A

1847, The Mathematical Analysis of Logic

22
Q

Short name for multiplexer

A

Mux