Chapter 1 An Introduction to Computer Architecture
- 格式:pptx
- 大小:789.68 KB
- 文档页数:48


Chapter 1: Introduction for ComputerQuick Quiz 11.The smallest and most basic data item in a computer is a____________________; it is really a switch that can be either open (0) orclosed (1).Answer: bit2.What is the ALU of a computer?Answer: The Arithmetic and Logic Unit (ALU) of a computer performs all of the computations, such as addition, subtraction, comparisons, and so on, that a computer provides.3.What is the control unit of a computer?Answer: The control unit of a computer directs and monitors the overalloperation of the computer.4.A(n) ____________________ allows a computer to read or write any one fileor program independent of its position on the storage medium.Answer: direct access storage device (DASD)direct access storage deviceDASDQuick Quiz 21.What is an assembly language?Answer: Programming languages that use the substitution of word-likesymbols, such as ADD, SUB, MUL, for the binary opcodes, and both decimal numbers and labels for memory addresses are referred to as assemblylanguages.2.The program that translates a high-level source program as a complete unitbefore any individual statement is executed is called a(n)____________________.Answer: compiler3.What is a linker?Answer: A linker combines additional machine language code with the objectprogram to create a final executable program.4.When English phrases are used to describe an algorithm (the processing steps),the description is called ____________________.Answer: pseudocodeQuick Quiz 31.What is the software development process?Answer: The technique used by professional software developers forunderstanding the problem that is being solved and for creating an effectiveand appropriate software solution is called the software development process.2.When writing a program, a(n) ____________________ structure provides thecapability to make a choice between different instructions, depending on theresult of some condition.Answer: selection3.When writing a program, a(n) ____________________ structure involvessummoning into action specific sections of code as they are needed.Answer: invocation4.What is a repetition structure?Answer: When writing a program, a repetition structure, which is also referred to as looping and iteration, provides the ability for the same operation to berepeated based on the value of a condition.。