Unit 2 Flashcards

1
Q

states that integrated circuit resources double every 18-24 months (1965)

A

Moore’s law

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

processor speed improvements have slowed due to

A

heat reasons (lack of proper cooling)

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

program that translates high level code to assembly

A

compiler

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

program that translates a symbolic version of instructions into the binary version

A

assembler

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

symbolic representation of machine instructions (human readable)

A

assembly language

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

binary representation of machine instructions

A

machine language

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

where data is transformed via computations (works with the control to make up the processor)

A

datapath

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

component of the processor that commands the datapath, memory, and I/O devices according to the instructions of the program

A

control

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

storage area in which programs are kept when they are running and that contains the data needed by the running programs

A

memory

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

portion of RAM that holds the data for a complete video frame, essentially acting as a temporary storage for pixel information before it’s displayed

A

frame buffer

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

Also called a chip. A device combining dozens to millions of transistors

A

integrated circuit

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

Also called processor. The active part of the computer, which contains the datapath and control and which adds numbers, tests numbers, signals I/O devices to activate, etc

A

central processor unit (CPU)

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

Memory built as an integrated circuit; it provides random access to any location. Access times are 50 nanoseconds and cost per gigabyte in 2012 was $5 to $10

A

DRAM (dynamic random access memory)

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

Also memory built as an integrated circuit, but faster and less dense than DRAM

A

SRAM (static random access memory)

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

built from SRAM that acts a buffer for larger memory

A

cache memory

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

abstract interface between the hardware and the lowest-level software that encompasses all the information necessary to write a machine language program that will run correctly, including instructions, registers, memory access, I/O, etc

A

instruction set architecture

17
Q

user portion of the instruction set plus the operating system interfaces used by application programmers. It defines a standard for binary portability across computers

A

application binary interface

18
Q

hardware that obeys the architecture absctraction

A

implementation

19
Q

storage that only retains memory when it receives power

A

volatile memory (DRAM)

20
Q

form of memory that retains data without power

A

involatile memory (DVDs, USB)

21
Q

memory used to hold programs while they are running (DRAM)

A

main or primary memory

22
Q

nonvolatile memory used to store programs and data between runs (flash, magnetic disks)

A

secondary memory

23
Q

form of nonvolatile secondary memory composed of rotating platters coated with a magnetic recording material. Because they are rotating mechanical devices, access times are about 5 to 20 milliseconds and cost per gigabyte in 2012 was $0.05 to $0.10

A

magnetic disk or hard disk

24
Q

nonvolatile semiconductor memory. It is cheaper and slower than DRAM but more expensive per bit and faster than magnetic disks. Access times are about 5 to 50 microseconds and cost per gigabyte in 2012 was $0.75 to $1.00.

A

flash memory

25
device containing hundreds of thousands to millions of transistors
very large-scale integrated (VLSI) circuit
26
substance that does not conduct electricity well
semiconductor
27
microscopic flaw in a wafer or in patterning steps that can result in the failure of the die containing that defect
defect
28
individual rectangular sections that are cut from a wafer, more informally known as chips
die
29
percentage of good dies from the total number of dies on the wafer
yield
30
total time required for the computer to complete a task, including disk accesses, memory accesses, I/O activities, operating system overhead, CPU execution time, etc
response time/execution time
31
number of tasks completed PER unit time
throughput/bandwidth
32
actual time the CPU spends computing for a specific task
CPU execution time
33
average number of clock cycles per instruction for a program or program fragment
clock cycles per instruction (CPI)
34
measure of the dynamic frequency of instructions across one or many programs
instruction mix
35
the time for one clock period, usually of the processor clock, which runs at a constant rate.
clock cycle
36
length of each clock cycle
clock period
37
dominant technology for integrated circuits; the primary source of energy consumption is so-called dynamic energy—that is, energy that is consumed when transistors switch states from 0 to 1 and vice versa
CMOS (complementary metal oxide semiconductor)
38
performance enhancement possible with a given improvement is limited by the amount that the improved feature is used. It is a quantitative version of the law of diminishing returns (focus on improving whatever the slowest operation is first)
Amdahl's law