Test 1 Flashcards

1
Q

Generations of Computers

A

0th: Mechanical Computers
1st: Vacuum Tubes
2nd: Transistors
3rd: Integrated Circuits
4th: Large scale integration
5th: Low-Power invisible computers

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

Design Principles in modern computers

A
  1. All instructions are directly executed by hardware.
  2. Maximize the rate at which instructions are issued.
  3. Instructions should be easy to decode
  4. Only loads and stores should reference memory
  5. provide plenty of registers
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

Pipelining

A

Mic-3 and Mic-4. It adds extra latches (registers) in the buses so that several instructions can be processed at the same time at various stages.

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

Understanding Primary Memory

A

Registers - Lowest Level. In the chip
Cache - 3 levels. L1 is on the chip. L2 is in the CPU package. L3 is on the processor board
RAM - Additional chip separate from CPU

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

Hamming Code

A

(do an example on the whiteboard)

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

RAID

A

Redundant array of independant discs. (p96)

  1. 4 discs, 12 strips
  2. 8 discs, 24 strips (half are duplicated)
  3. 7 discs, 1 bit in each disc
  4. 4 discs + 1 for parity bit
  5. 4 discs split by strips (not bits) + 1 with parity bits
  6. 5 discs, parity bits split along different discs.
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

basic gates and circuits

A
(do example on whiteboard)
NOT: Triangle + circle
NAND: Curved + circle
NOR: Pointy + circle
AND: Curved
OR: Pointy
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

multiplexers

A

A way to select one data stream out of 8. 8 input streams, and an 3 bit input to choose which one gets through.

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

shifters

A

Shifts bits from left to right.
1100 shift right = 1110 (add 1)
1100 shift left = 1000 (add 0)

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

adders

A

adds two bits, output the sum and a carry bit
0 + 0 = 0 carry 0
0 + 1 = 1 carry 0
1 + 1 = 0 carry 1

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

ALU

A

Arithmetic Logic Unit. Performs arithmetic operations. In the CPU chip. Contains a decoder, a logical unit, and an adder.

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

Laches

A

two inputs. two outputs which are always opposites. It will become unstable if both inputs are 1.

clocked: only lets inputs through a clock pulse.
D-latches: a clocked latch with only one input.

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

Flip-flops

A

Sends a short pulse.

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

Micro architectures

A

see example in book

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

ways of improving performance

A
  1. Cache, and using it efficiently

2. Branch Prediction: When pipelining, processor guesses what the next operation is before it actually know.

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

risc

A

risc did not use interpreter (fetches, examines and executes another program), so it is not backwards compatible, and doesn’t have many instructions. Can execute many at a time because of pipelining.

17
Q

cisc

A

Much more complicated instructions than risc. Also slower.