Ch2.1 - 2.4 Flashcards

1
Q

What is a personal computer (PC)?

A

“A computer designed for use by an individual, usually incorporating a graphics display, a keyboard, and a mouse.”

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

What is a server?

A

“A computer used for running larger programs for multiple users, often simultaneously, and typically accessed only via a network.”

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

What is a supercomputer?

A

“A class of computers with the highest performance and cost; they are configured as servers and typically cost tens to hundreds of millions of dollars.”

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

What is an embedded computer?

A

“A computer inside another device used for running one predetermined application or collection of software.”

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

What are processor cores?

A

“Many embedded processors are designed using processor cores, a version of a processor written in a hardware description language, such as Verilog or VHDL.”

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

What are personal mobile devices (PMDs)?

A

“Small wireless devices to connect to the Internet; they rely on batteries for power, and software is installed by downloading apps. Conventional examples are smart phones and tablets.”

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

What are Warehouse Scale Computers?

A

“Taking over from the conventional server is Cloud Computing, which relies upon giant datacenters that are now known as Warehouse Scale Computers (WSCs).”

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

What is cloud computing?

A

“Large collections of servers that provide services over the Internet; some providers rent dynamically varying numbers of servers as a utility.”

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

What is Software as a Service (SaaS)?

A

“Delivers software and data as a service over the Internet, usually via a thin program such as a browser that runs on local client devices, instead of binary code that must be installed, and runs wholly on that device.”

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

What is a multicore microprocessor?

A

“A microprocessor containing multiple processors (‘cores’) in a single integrated circuit.”

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

What is an acronym?

A

“A word constructed by taking the initial letters of a string of words. For example: RAM is an acronym for Random Access Memory, and CPU is an acronym for Central Processing Unit.”

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

What is a terabyte (TB)?

A

“Originally 1,099,511,627,776 (2^40) bytes, although communications and secondary storage systems developers started using the term to mean 1,000,000,000,000 (10^12) bytes.”

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

What is a tebibyte (TiB)?

A

“To reduce confusion, we now use the term tebibyte (TiB) for 2^40 bytes, defining terabyte (TB) to mean 10^12 bytes.”

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

What is Moore’s Law?

A

“States that integrated circuit resources double every 18-24 months.”

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

What are abstractions used for in computer architecture?

A

“A major productivity technique for hardware and software is to use abstractions to characterize the design at different levels of representation; lower-level details are hidden to offer a simpler model at higher levels.”

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

Why is making the common case fast important in computer architecture?

A

“Making the common case fast will tend to enhance performance better than optimizing the rare case.”

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

How do computer architects increase performance through parallelism?

A

“Since the dawn of computing, computer architects have offered designs that get more performance by computing operations in parallel.”

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

What is pipelining in computer architecture?

A

“A particular pattern of parallelism is so prevalent in computer architecture that it merits its own name: pipelining, which moves multiple operations through hardware units that each do a piece of an operation, akin to water flowing through a pipeline.”

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

How does prediction help improve performance in computing?

A

“The idea of prediction is that, in some cases it can be faster on average to guess and start working rather than wait until you know for sure, assuming that the mechanism to recover from a misprediction is not too expensive and your prediction is relatively accurate.”

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

What is a hierarchy of memories?

A

“Architects have found that they can address conflicting demands of fast, large, and cheap memory with a hierarchy of memories, with the fastest, smallest, and most expensive memory per bit at the top of the hierarchy and the slowest, largest, and cheapest per bit at the bottom.”

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

How is dependability achieved in computer systems?

A

“Since any physical device can fail, we make systems dependable by including redundant components that can take over when a failure occurs and to help detect failures.”

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

What is systems software?

A

“Software that provides services that are commonly useful, including operating systems, compilers, loaders, and assemblers.”

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

What is the role of an operating system?

A

“Supervising program that manages the resources of a computer for the benefit of the programs that run on that computer.”

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

What does a compiler do?

A

“A program that translates high-level language statements into assembly language statements.”

25
Q

What are binary numbers?

A

“The two symbols for these two letters are the numbers 0 and 1, and we commonly think of the computer language as numbers in base 2, or binary numbers.”

26
Q

What is a binary digit (bit)?

A

“Also called a bit. One of the two numbers in base 2 (0 or 1) that are the components of information.”

27
Q

What is an instruction in computing?

A

“A command given to a computer processor to perform a specific operation.”

28
Q

What is an assembler?

A

“A program that translates a symbolic version of instructions into the binary version.”

29
Q

What is assembly language?

A

“A symbolic representation of machine instructions.”

30
Q

What is machine language?

A

“A binary representation of machine instructions.”

31
Q

What is a high-level programming language?

A

“A portable language such as C, C++, Java, or Visual Basic that is composed of words and algebraic notation that can be translated by a compiler into assembly language.”

32
Q

What is an input device?

A

“A mechanism through which the computer is fed information, such as a keyboard.”

33
Q

What is an output device?

A

“A mechanism that conveys the result of a computation to a user, such as a display, or to another computer.”

34
Q

What is a liquid crystal display (LCD)?

A

“A display technology using a thin layer of liquid polymers that can be used to transmit or block light according to whether a charge is applied.”

35
Q

What is an active matrix display?

A

“A liquid crystal display using a transistor to control the transmission of light at each individual pixel.”

36
Q

What is a bit map?

A

“The image is composed of a matrix of picture elements, or pixels, which can be represented as a matrix of bits, called a bit map.”

37
Q

What is a pixel?

A

“The smallest individual picture element. Screens are composed of hundreds of thousands to millions of pixels, organized in a matrix.”

38
Q

What is a frame buffer?

A

“The computer hardware support for graphics consists mainly of a raster refresh buffer, or frame buffer, to store the bit map.”

39
Q

What is an integrated circuit (chip)?

A

“A device combining dozens to millions of transistors.”

40
Q

What is a central processor unit (CPU)?

A

“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, and so on.”

41
Q

What is a datapath in a processor?

A

“The component of the processor that performs arithmetic operations.”

42
Q

What is control in a processor?

A

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

43
Q

What is memory in a computer?

A

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

44
Q

What is dynamic random access memory (DRAM)?

A

“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.”

45
Q

What is cache memory?

A

“A small, fast memory that acts as a buffer for a slower, larger memory.”

46
Q

What is static random access memory (SRAM)?

A

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

47
Q

What is instruction set architecture (architecture)?

A

“An 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, and so on.”

48
Q

What is application binary interface (ABI)?

A

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

49
Q

What is implementation in computing?

A

“Hardware that obeys the architecture abstraction.”

50
Q

What is volatile memory?

A

“Storage, such as DRAM, that retains data only if it is receiving power.”

51
Q

What is nonvolatile memory?

A

“A form of memory that retains data even in the absence of a power source and that is used to store programs between runs.”

52
Q

What is main memory (primary memory)?

A

“Also called primary memory. Memory used to hold programs while they are running; typically consists of DRAM in today’s computers.”

53
Q

What is secondary memory?

A

“Nonvolatile memory used to store programs and data between runs; typically consists of flash memory in PMDs and magnetic disks in servers.”

54
Q

What is a magnetic disk?

A

“Also called hard disk. A 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.”

55
Q

What is flash memory?

A

“A 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.”

56
Q

What are networks?

A

“Networks interconnect whole computers, allowing computer users to extend the power of computing by including communication.”

57
Q

What is a local area network (LAN)?

A

“A network designed to carry data within a geographically confined area, typically within a single building.”

58
Q

What is a wide area network (WAN)?

A

“A network extended over hundreds of kilometers that can span a continent.”