Chapter Five - Computing Components Flashcards

1
Q

addressability?

A
  • # OF BITS in each ADDRESSABLE LOCATION in MEMORY. (e.g. 8 bits, 16 bits)
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

arithmetic/logic unit (ALU)?

A
  • COMPUTER COMPONENT that specializes in ARITHMETIC(+,-,/) & LOGICAL OPERATIONS (comparison =,>,
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

register?

A
  • small STORAGE area in CPU used to store used to store INTERMEDIATE values/data. (e.g. (a+b)*c; temporarily stores a+b)
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

input unit?
output unit?
control unit?

A
  • input: device that accepts data to be stored in memory;
  • output: device that prints/displays/makes copy of data
  • control: computer component that controls actions of other computer components (IR + PC); makes sure instructions are executed in sequence.
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

instruction register? (IR)

program counter? (PC)

A

(part of control unit)

  • IR: contains instruction that is being executed
  • PC: contains ADDRESS of next instruction to be executed
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

CPU?

A
  • the “brain” of the computer

- ALU + control unit

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

bus width?

A
  • bus > how information is transferred from b/w components in Von Neumann Machine (w/ wires); bus WIDTH is # of bits bus and transfer SIMULTANEOUSLY.
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

cache memory?

A
  • SMALL, HIGH- SPEED memory used to hold FREQUENTLY USED data
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

pipelining?

A
  • technique used to SPEED UP FETCH-EXECUTE system; splits instruction INTO SMALLER STEPS that can be OVERLAPPED.
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

motherboard?

A
  • MAIN CIRCUIT BOARD of a personal computer (contains von Neumann components)
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

track?
sector?
block?

A
  • track: concentric circles on surface of disk
  • sector: section of track
  • block: information stored in a sector(continuous sequence of bits)
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

seek time?
latency?
access time?
transfer rate?

A
  • seek time: time it takes for the read/write head to into into position over the specified TRACK.
  • latency: time it takes for the specified sector to spin to the right SECTOR
  • access time: seek time + latency
  • transfer rate: rate at which data is transferred from disk to memory.
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

cylinder?

A
  • all of the TRACKS that LINE UP under one another in a hard disk (multiple disks on top of each other)
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

synchronous processing?

A
  • SINGLE set of INSTRUCTIONS run on DIFFERENT DATA at the same time (using multiple processors)
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

shared memory parallel processor?

A
  • DIFFERENT processors doing DIFFERENT things with DIFFERENT DATA at the same time (requires shared memory in order to communicate)
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q

Von Neumann architecture? (5)

A
  • memory unit
  • arithmetic/logic unit
  • input unit
  • output unit
  • control unit