Chapter Five - Computing Components Flashcards
1
Q
addressability?
A
- # OF BITS in each ADDRESSABLE LOCATION in MEMORY. (e.g. 8 bits, 16 bits)
2
Q
arithmetic/logic unit (ALU)?
A
- COMPUTER COMPONENT that specializes in ARITHMETIC(+,-,/) & LOGICAL OPERATIONS (comparison =,>,
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)
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.
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
6
Q
CPU?
A
- the “brain” of the computer
- ALU + control unit
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.
8
Q
cache memory?
A
- SMALL, HIGH- SPEED memory used to hold FREQUENTLY USED data
9
Q
pipelining?
A
- technique used to SPEED UP FETCH-EXECUTE system; splits instruction INTO SMALLER STEPS that can be OVERLAPPED.
10
Q
motherboard?
A
- MAIN CIRCUIT BOARD of a personal computer (contains von Neumann components)
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)
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.
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)
14
Q
synchronous processing?
A
- SINGLE set of INSTRUCTIONS run on DIFFERENT DATA at the same time (using multiple processors)
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)