当前位置:文档之家› 计算机导论作业2

计算机导论作业2

计算机导论作业2
计算机导论作业2

Test Bank—Chapter Two (Data Manipulation)

The following table is from Appendix C of the text. It is included here so that it can be incorporated in tests for student reference. Questions in this test bank refer to this table as the “language description table.”

Op-

code Operand Description

1 RXY LOAD the register R with the bit pattern found in the memory cell whose address is XY.

Example: 14A3 would cause the contents of the memory cell located at address A3 to be placed

in register 4.

2 RXY LOAD the register R with the bit pattern XY.

Example: 20A3 would cause the value A3 to be placed in register 0.

3 RXY STORE the bit pattern found in register R in the memory cell whose address is XY.

Example: 35B1 would cause the contents of register 5 to be placed in the memory cell whose

address is B1.

4 0RS MOVE the bit pattern found in register R to register S.

Example: 40A4 would cause the contents of register A to be copied into register 4.

5 RST ADD the bit patt erns in registers S and T as though they were two’s complement representations

and leave the result in register R.

Example: 5726 would cause the binary values in registers 2 and 6 to be added and the sum placed

in register 7.

6 RST ADD the bit patterns in registers S and T as though they represented values in floating-point

notation and leave the floating-point result in register R.

Example: 634E would cause the values in registers 4 and E to be added as floating-point values

and the result to be placed in register 3.

7 RST OR the bit patterns in registers S and T and place the result in register R.

Example: 7CB4 would cause the result of ORing the contents of registers B and 4 to be placed in

register C.

8 RST AND the bit patterns in register S and T and place the result in register R.

Example: 8045 would cause the result of ANDing the contents of registers 4 and 5 to be placed in

register 0.

9 RST EXCLUSIVE OR the bit patterns in registers S and T and place the result in register R.

Example: 95F3 would cause the result of EXCLUSIVE ORing the contents of registers F and 3 to

be placed in register 5.

A R0X ROTATE the bit pattern in register R one bit to the right X times. Each time place the bit that

started at the low-order end at the high-order end.

Example: A403 would cause the contents of register 4 to be rotated 3 bits to the right in a circular

fashion.

B RXY JUMP to the instruction located in the memory cell at address XY if the bit pattern in register R

is equal to the bit pattern in register number 0. Otherwise, continue with the normal sequence of

execution. (The jump is implemented by copying XY into the program counter during the execute

phase.)

Example: B43C would first compare the contents of register 4 with the contents of register 0. If

the two were equal, the pattern 3C would be placed in the program counter so that the next

instruction executed would be the one located at that memory address. Otherwise, nothing would

be done and program execution would continue in its normal sequence.

C 000 HALT execution.

Example: C000 would cause program execution to stop.

Multiple Choice Questions

1. Which of the following is not contained in a CPU?

A. Instruction register

B. Program counter

C. General-purpose register

D. Memory cell

ANSWER: D

2. Which of the following instructions (as described in the language description table) changes the contents of

a memory cell?

A. 10AB

B. 20AB

C. 30AB

D. 40AB

ANSWER: C

3. Which of the following instructions (as described in the language description table) places 00000000 in register A?

A. 1A00

B. 2A00

C. 3A00

D. 200A

ANSWER: B

4. Which of the following instructions (as described in the language description table) places 00000000 in register 5?

A. 25FF

B. 9555

C. 15FF

D. 8555

ANSWER: B

5. Which of the following instructions (as described in the language description table) will not change the contents of register 5?

A. 1508

B. 2508

C. A503

D. A508

ANSWER: D

6. Which of the following instructions (as described in the language description table) is equivalent to requesting that register A be rotated to the left by three bits?

A. AA05

B. AA03

C. AA08

D. AA01

ANSWER: A

7. Which of the following instructions (as described in the language description table) changes the contents of register 7?

A. 4077

B. 4075

C. 4057

D. 37BB

ANSWER: C

8. Which of the following is not a form of parallel processing?

A. SISD

B. MIMD

C. SIMD

ANSWER: A

9. In which of the following locations is information most readily available for manipulation by the CPU?

A. General-purpose registers

B. Main memory

C. Mass storage

ANSWER: A

10. The bus in a computer is an example of which form of communication?

A. Serial

B. Parallel

C. Neither A nor B

ANSWER: B

11. Which of the following instructions does not fall in the category of arithmetic/logic instructions?

A. ROTATE

B. ADD

C. OR

D. JUMP

ANSWER: D

12. Which of the following instructions falls in the category of data transfer instructions?

A. LOAD

B. AND

C. ROTATE

D. JUMP

ANSWER: A

13. Which of the following is not a component of a machine instruction?

A. Op-code

B. Port

C. Operand

ANSWER: B

14. Which of the following is not an activity performed entirely within a CPU?

A. Fetch instructions

B. Perform Boolean operations

C. Perform arithmetic operations

D. Move data between registers

ANSWER: A

15. What mask in register F would cause the instruction 8AAF (refer to the language description table) to put

a 0 in the most significant bit of register A without disturbing the other bits?

A. 11111110

B. 00000001

C. 10000000

D. 011111111

ANSWER: D

16. What mask in register F would cause the instruction 7AAF (refer to the language description table) to put

a 1 in the most significant bit of register A without disturbing the other bits?

A. 11111110

B. 00000001

C. 10000000

D. 011111111

ANSWER: C

17. Which of the following instructions will not produce the same result as the other two? (Refer to the language description table.)

A. A502

B. A506

C. A50A

ANSWER: B

18. Which of the following instructions will not produce the same result as the other two? (Refer to the language description table.)

A. 9555

B. 2500

C. 1500

ANSWER: C

19. If register A contained the pattern 00000000, which of the following instructions could alter the contents of register 0? (Refer to the language description table.)

A. 700A

B. 800A

C. 900A

ANSWER: B

20. Which of the following instructions (as described in the language description table) is essentially an unconditional jump?

A. B033

B. B133

C. B233

D. B333

ANSWER: A

Fill-in-the-blank/Short-answer Questions

1. If register 0 contains the pattern 01101001 before executing the instruction A003 (see the language description table), what bit pattern will be in register 0 after the instruction is executed?

____________

ANSWER: 00101101

2. If registers 5 and 6 contain the bit patterns 5A and 58 respectively, what bit pattern will be in register 4 after executing the instruction 5456? (See language description table.)

____________

ANSWER: B2

3. If registers 5 and 6 contain the bit patterns 5A and 58 respectively, what bit pattern will be in register 4 after executing the instruction 6456? (See language description table and assume a floating-point format in which the most significant bit is the sign bit, the next three bits represent the exponent field in excess notation, and the last four bits represent the mantissa.)

____________

ANSWER: 69

4. Write the answer to each of the following logic problems.

10101010 10101010 10101010

AND 11110000 OR 11110000 XOR 11110000

ANSWER: 10100000, 11111010, and 01011010

5. Suppose registers E and F contained AA and CC, respectively. What bit pattern would be in register D after executing each of the following instructions (see language description table)?

A. 7DEF __________

B. 8DEF __________

C. 9DEF __________

ANSWER: A. EE B. 88 C. 66

6. If registers 0, 1, and 2 contain the patterns A5, A5, and B7, respectively, which of the following instructions will result in a jump to location AA? (Refer to the language description table.)

A. B0AA

B. B1AA

C. B2AA

____________

ANSWER: A and B

7. If registers 0 and 1 contain the patterns B5 and F0, respectively, what will be in register 1 after executing each of the following instructions? (Refer to the language description table.)

A. A102 __________

B. 4001 __________

C. 4010 __________

ANSWER: A. 3C B. B5 C. F0

8. Suppose the instruction B1A5 (as described in the language description table) is stored in main memory at addresses E0 and E1. Moreover, suppose registers 0 and 1 both contain the pattern FF. What value will be in the CPU’s program counter imm ediately after executing the instruction?

____________

ANSWER: A5

9. Suppose the instruction B1A5 (as described in the language description table) is stored in main memory at addresses E0 and E1. Moreover, suppose registers 0 and 1 contain the patterns FF and 75, respectively. What value will be in the CPU’s program counter immediately after executing the instruction?

____________

ANSWER: E2

10. Encode each of the following commands in terms of the machine language described in the language description table.

A. __________ LOAD register 7 with the value A5.

B. __________ LOAD register 7 with the contents of the memory cell at address A5.

C. __________ ADD the contents of registers 5 and 6 as thought they were values in two’s

complement notation and leave the result in register 4.

D. __________ OR the contents of registers 5 and 6, leaving the result in register 4. ANSWER: A. 27A5 B. 17A5 C. 5456 (or 5465) D. 7456 (or 7465)

11. Encode each of the following commands in terms of the machine language described in the language description table.

A. __________ ROTATE the contents of register 7 to the right 5 bit positions.

B. __________ JUMP to the instruction at address B2 if the content of register 2 equals that of

register 0.

C. __________ ADD the contents of registers 5 and 6 as thought they were values in floating-

point notation and leave the result in register 4.

D. __________ AND the contents of registers 5 and 6, leaving the result in register 4. ANSWER: A. A705 B. B2B2 C. 6456 (or 6465) D. 8456 (or 8465)

12. Decode each of the following instructions that were encoded using the language description table.

A. 4034 ___________________________________________________________

B. 8023 ___________________________________________________________

C. B288 ___________________________________________________________

D. 2345 ___________________________________________________________ ANSWER: A. MOVE the contents of register 3 to register 4.

B. AND the contents of registers 2 and 3, leaving the result in register 0.

C. JUMP to the instruction at address 88 if the contents of register 2 equals that of register 0.

D. LOAD register 3 with the pattern 45.

13. Decode each of the following instructions that were encoded using the language description table.

A. A004 ___________________________________________________________

B. 1234 ___________________________________________________________

C. 5678 ___________________________________________________________

D. C000 ___________________________________________________________ ANSWER: A. ROTATE the contents of register 0 to the right by four bit positions.

B. LOAD register 2 with the bit pattern from the memory cell at address 34.

C. ADD the contents of registers 7 and 8 as though they represented values encoded in two’s

complement notation and leave the result in register 6.

D. HALT.

14. The following table shows a portion of a machine's memory containing a program written in the language described in the language description table. Answer the questions below assuming that the machine is started with its program counter containing 00.

address content

00 21

01 0B

02 14

03 04

04 C0

05 00

A. What bit pattern will be in register 4 when the machine halts?

___________

B. What bit pattern will be in register 1 when the machine halts?

___________

ANSWER: A. C0 B. 0B

15. The following table shows a portion of a machine's memory containing a program written in the language described in the language description table. Answer the questions below assuming that the machine is started with its program counter containing 00.

address content address content

00 10 07 00

01 02 08 C0

02 24 09 00

03 04 0A C0

04 B4 0B 00

05 0A 0C C0

06 C0 0D 00

A. What bit pattern will be in register 0 when the machine halts?

___________

B. What bit pattern will be in register 4 when the machine halts?

___________

C. What bit pattern will be in the program counter when the machine halts?

___________

ANSWER: A. 24 B. 04 C. 08

16. The following table shows a portion of a machine's memory containing a program written in the language described in the language description table. Answer the questions below assuming that the machine is started with its program counter containing 00.

address content address content

00 25 07 00

01 03 08 C0

02 20 09 00

03 F9 0A C0

04 53 0B 00

05 05 0C C0

06 33 0D 00

A. What bit pattern will be in register 5 when the machine halts?

____________

B. What bit pattern will be in register 0 when the machine halts?

____________

C. What bit pattern will be in register 3 when the machine halts?

____________

D. What bit pattern will be at memory location 00 when the machine halts?

____________

ANSWER: A. 03 B. F9 C. FC D. FC

17. The following table shows a portion of a machine's memory containing a program written in the language described in the language description table. Answer the questions below assuming that the machine is started with its program counter containing 00.

address content address content

00 25 07 00

01 03 08 34

02 A5 09 04

03 02 0A B0

04 35 0B 03

05 03 0C C0

06 24 0D 00

A. What bit pattern will be in register 5 when the machine halts?

____________

B. What bit pattern will be in the program counter when the machine halts?

____________

C. What bit pattern will be at memory location 04 when the machine halts?

____________

ANSWER: A. C0 B. 05 C. 00

18. Below is a short routine written in the machine language described in the language description table and stored in a machine's memory beginning at address 50. What must be in the memory cell at address 40 to avoid an unending loop?

Address Instruction

50 2001

52 1340

54 8330

56 B352

58 ...

________________________________________

ANSWER: Any bit pattern whose least significant bit is 0

19. The following table shows a portion of a machine's memory containing a program written in the language described in the language description table. Answer the questions below assuming that the machine is started with its program counter containing 00.

address content address content

00 B0 07 C0

01 03 08 00

02 25 09 23

03 B0 0A B0

04 0C 0B 03

05 C0 0C B0

06 00 0D 07

A. How many instructions will be executed before the machine halts?

____________

B. What bit pattern will be in the program counter when the machine halts?

____________

ANSWER: A. 4 B. 09

20. The following table shows a portion of a machine's memory containing a program written in the language described in the language description table. Answer the questions below assuming that the machine is started with its program counter containing 00.

address content address content

00 20 07 12

01 02 08 B2

02 21 09 0C

03 01 0A B0

04 22 0B 06

05 01 0C C0

06 52 0D 00

A. What bit pattern will be in register 2 when the machine halts?

___________

B. How many times will the instruction at address 06 be executed before the machine halts?

___________

ANSWER: A. 02 B. 2

Vocabulary (Matching) Questions

The following is a list of terms from the chapter along with descriptive phrases that can be used to produce questions (depending on the topics covered in your course) in which the students are ask to match phrases and terms. An example would be a question of the form, “In the blank next to each phrase, write the term from the following list that is best described by the phrase.”

Term Descriptive Phrase

op-code The part of a machine instruction that identifies the basic operation to

be performed

machine language A means of encoding instructions

machine cycle The process of fetching and executing instructions that is repeated

over and over by the CPU

register A location within a CPU for temporary data storage

masking A means of isolating particular bits within a bit pattern

bus The communication path between a CPU and main memory

memory-mapped I/O The technique of communicating with peripheral devices as though

they were memory cells

pipeling A means of processing more than one instruction at a time

stored-program concept A technique of recording programs in main memory from where they

can be accessed and executed

program counter Used by the CPU to keep its place in the program being executed

main memory from where they can be retrieved and executed controller The interface between “a computer” and a peripheral devic e

modem Modulator-demodulator

port The “connection” through which a CPU communicates with a

peripheral device

USB A communication system by which a variety of peripheral devices can

be connected to a computer

clock Used to synchronize the operations within a computer

status word A means by which a peripheral device reports its condition

bps A means of measuring the rate of data transfer

CISC A computer whose machine language contains many complex

instructions

handshaking Refers to the two-way communication that takes place between a

computer an a peripheral device

bandwidth Refers to a communication path’s maximum capacity for transferring

data

DMA The ability of a peripheral device to communicate directly with a

computer’s main memory

General Format Questions

1. Describe the machine cycle.

ANSWER: Fetch an instruction and increment the program counter, decode the instruction, and execute the instruction.

2. Explain the concept of throughput and techniques by which throughput is increased.

ANSWER: Throughput measures the amount of “work” performed by a computer rather than the speed with which the computer executes instructions. Throughput is increased by introducing parallel processing techniques such as pipeling or parallel processing via multiprocessor designs.

3. What is the difference between a conditional jump instruction and an unconditional jump instruction? ANSWER: A conditional jump instruction will result in a “jump” to another location only under certain

co nditions whereas an unconditional jump instruction will result in a “jump” to another location under all conditions.

4. The following is a routine encoded in the machine language described in the language description table. Explain (in a single sentence) what the routine does. (Explain what the entire routine does as a unit rather than reciting what each instruction does.)

12A0

32B0

12A1

32B1

12A2

32B2

ANSWER: It copies the contents of memory cells A0 through A2 to memory cells B0 through B2.

5. The following is a routine encoded in the machine language described in the language description table. Explain (in a single sentence) what the routine does. (Explain what the entire routine does as a unit rather than reciting what each instruction does.)

210F

12A0

8212

32A0

ANSWER: It places 0s in the four most significant bits of memory cell A0 without disturbing the other four bits.

6. The following table shows a portion of a machine's memory containing a program written in the language described in the language description table. What will happen if the machine is started with its program counter containing 00?

address content

00 21

01 B0

02 31

03 04

04 C0

05 00

ANSWER: The machine will change the last instruction to a jump instruction and continue to repeat the same routine over and over.

7. Using the machine language described in the language description table, write a sequence of instructions that will place the pattern FF in the memory cell at address A0.

ANSWER: 2XFF, 3XA0 (where X can be any register but must be the same in both instructions)

8. Using the machine language described in the language description table, write a sequence of instructions that will place a 1 in the most significant bit of the memory cell at address A0 without disturbing the other bits.

ANSWER: 2X80, 1YA0, 7YXY, 3YA0 (where X and Y can be any distinct registers)

9. Using the machine language described in the language description table, write a sequence of instructions that will add five to the value (represented in two’s complement notation) stored at memory address A0. ANSWER: 2X05, 1YA0, 5YXY, 3YA0 (where X and Y can be any distinct registers)

10. Using the machine language described in the language description table, write a sequence of instructions that will subtract one from the value (represented in two’s complement notation) stored at memory address A0.

ANSWER: 2XFF, 1YA0, 5YXY, 3YA0 (where X and Y can be any distinct registers)

11. Using the machine language described in the language description table, write a sequence of instructions that will shift the contents of the memory cell at address A0 three bit positions to the right while filling the holes at the left end with 0s.

ANSWER: 1XA0, AX03, 2Y1F, 8XXY, 3XA0 (where X and Y can be any distinct registers)

计算机导论试题与答案[技巧]

计算机导论试题与答案[技巧] 计算机导论试题与答案 《计算机导论》试题和答案 一、填空题(每小题1分,共20分): 1. 计算机领域中采用_________、_________、或_________来表示数值。。 2. 冯?诺依曼型计算机的两大特征是“程序存储”和“______”。 3. 美国标准信息交换代码,简称ASCII码,它是____位二进制编码,因此,它可以表示 ____种字符。 4. 计算机中采用的基本逻辑电路主意有各种______及______。 5. 用_________语言编写的程序可由计算机直接执行。 6. 串口按信息传送格式可分为_________和_________。 7. 计算机的主存储器存储直接与,,交换的信息,辅助存储器存放当前不立即使用的信息。 8. 堆栈是指用作数据暂存的一组寄存器或一片存储区,它的工作方式称为 ______。 9. 由寻址方式形成的操作数的真正存放地址,称为操作数的 ______。 10. 计算机网络按距离可分为______和______。 11. 设备管理中的设备是指计算机系统的_____、_____和_____。 12. 操作系统按功能特征可分为______、______和______。 13. 高级语言的基本元素可以分为____、______、______、______和______等五大类。 14. 从根算起,树可以分为多个层次,树的_____称为树的深度。

15. _____是数据组织形式,反映数据之间的关系,但不涉及数据的具体内容。 16. 线性表的链式存储结构中,每个元素需存储两部分信息:一部分是元素本身的信息,称之“_____”;另一部分则是该元素的直接后继元素的存储位置,称之“_____”。 17. 栈是限定在_____进行插入和删除运算的线性表,其表尾称为_____,表头称为_____。 18. 用编译方法在计算机上执行用高级语言编写的程序,可分为两个阶段: _____和_____。 19. 从资源管理的角度,操作系统要实现对计算机系统的四类资源管理,即 ______、______、______和______。 20. 处理机管理程序中,作业调度程序的管理对象是______,进程调度和交通控制程序管理的对象是______。 二、判断题(如果错误请说明理由,每题1.5分,共15分): 1( 全加器只能实现一位二进制数相加。( ) 2( 将十进制数转换成二进制数: ( ) 3( 将十进制数转换成二进制数的补码: ( ) 4( 兼容机和原装机的软件是不兼容的。( ) 5( 并行性是指在同一时刻或在同一时间间隔内完成两种或两种以上性质相同或不同的工作,只要在时间上互相重叠都存在并行性。( ) 6( 计算机的硬、软件之间有固定不变的分界面。( ) 7( 线性表的链式存储结构的链表中的最后一个结点的指针域置为“空”,则此链表称为空表。( ) 8( 对于程序中的错误,编译程序都能有效的进行诊断和处理。( )

计算机导论试题与答案

《计算机导论》试题和答案 一、填空题(每小题1分,共20分): 1. 计算机领域中采用_________、_________、或_________来表示数值。。 2. 冯·诺依曼型计算机的两大特征是“程序存储”和“______”。 3. 美国标准信息交换代码,简称ASCII码,它是____位二进制编码,因此,它可以表示 ____种字符。 4. 计算机中采用的基本逻辑电路主意有各种______及______。 5. 用_________语言编写的程序可由计算机直接执行。 6. 串口按信息传送格式可分为_________和_________。 7. 计算机的主存储器存储直接与__交换的信息,辅助存储器存放当前不立即使用的信息。 8. 堆栈是指用作数据暂存的一组寄存器或一片存储区,它的工作方式称为______。 9. 由寻址方式形成的操作数的真正存放地址,称为操作数的______。 10. 计算机网络按距离可分为______和______。 11. 设备管理中的设备是指计算机系统的_____、_____和_____。 12. 操作系统按功能特征可分为______、______和______。 13. 高级语言的基本元素可以分为____、______、______、______和______等五大类。 14. 从根算起,树可以分为多个层次,树的_____称为树的深度。 15. _____是数据组织形式,反映数据之间的关系,但不涉及数据的具体内容。 16. 线性表的链式存储结构中,每个元素需存储两部分信息:一部分是元素本身的信息,称之“_____”;另一部分则是该元素的直接后继元素的存储位置,称之“_____”。 17. 栈是限定在_____进行插入和删除运算的线性表,其表尾称为_____,表头称为_____。 18. 用编译方法在计算机上执行用高级语言编写的程序,可分为两个阶段: _____和_____。

计算机导论作业1

Test Bank—Chapter One (Data Representation) Multiple Choice Questions 1. Which of the following Boolean operations produces the output 1 for the fewest number of input patterns? A. AND B. OR C. XOR ANSWER: A 2. Which of the following best describes the NOR operation? A. An XOR followed by a NOT B. An OR followed by a NOT C. A NOT followed by a NOT C. An AND followed by a NOT ANSWER: B 3. Which of the following bit patterns cannot be expressed in hexadecimal notation? A. 11111111 B. 1001 C. 110011 D. 100000000001 ANSWER: C 4. Which of the following is the binary representation of 4 5/8? A. 100.11 B. 10.011 C. 110.101 D. 100.101 ANSWER: D 5. Which of the following bit patterns represents the value 5 in two’s complement notation? A. 00011010 B. 11111011 C. 00000101 D. 11111011 ANSWER: C 6. Which of the following bit patterns represents the value -5 in two’s complement notation? A. 00011010 B. 11111011 C. 00000101 D. 11111011 ANSWER: D 7. In which of the following addition prob lems (using two’s complement notation) does an overflow error occur? A. 0011 B. 0100 C. 1100 + 1010 + 0100 + 1100 ANSWER: B 8. Which of the following representations in two’s complement notation represents the largest value? A. 00000010 B. 11111111 C. 00000001 D. 11111110 ANSWER: A

8619计算机导论试题 答案

试卷代号:8619 安徽广播电视大学开放教育试点本科补修课程考试计算机科学与技术专业《计算机导论》答案及评分标准 (供参考) 一、填空题(每空1分,共20分) 1、1280×1024 2、后进先出 3、处理机管理存储器管理输入输出设备管理文件管理 4、条件格式 5、文件系统数据库系统 6、冗余压缩法(或无损压缩法/熵编码)熵压缩法(或有损压缩法) 7、实体安全网络安全应用安全管理安全 8、有线信道无线信道 9、及格 10、最低的耦合度,即不同的模块之间的关系尽可能弱模块的层次不能过深,一般应尽量控制在7层以内 二、单选题(每题2分,共20分) 1、C 2、 A 3、A 4、C 5、D 6、D 7、 D 8、A 9、C 10、 D 三、名词解释(每题5分,共20分) 1、RISC、CISC 答:精简指令集计算机(reduced instruction set computer) 复杂指令集计算机(complex instruction set computer) 2、分时操作系统:所谓分时是指多个用户终端共享使用一台计算机,即把计算机系统的CPU时间分割成一个个小的时间段(称其为一个时间片),从而将CPU的工作时间分别提供给各个用户终端。分时操作系统设计的主要目标是提高对用户响应的及时性。它

一般适用于带有多个终端的小型机。 3、SQL:SQL是Structured Query Language词组的缩写,含义为“结构化查询语言”,它包括数据的定义、操纵、查询和控制四个方面的功能,是一种功能齐全的数据库语言。 4、结构化方法:就是强调结构的合理性以及所开发的软件的结构的合理性。由此提出了一组提高软件结构合理性的准则。 四、问答题(每题10分,共40分) 1、答:1、数据传送类指令2、数据处理类指令3、程序控制类指令4、输入输出类指令5、硬件控制类指令 2、答案略。 3、答:图形一般指用计算机绘制的画面,如直线、圆、圆弧、任意曲线和图表等;图像则是指由输入设备捕捉的实际场景画面或以数字化形式存储的任意画面。 图像都是由一些排成行列的像素组成的,一般数据量都较大。而图形文件中只记录生成图的算法和图上的某些特征点,也称矢量图。相对于位图的大数据量来说,它占用的存储空间较小。 4、答:电子商务的系统框架构成:Internet:将计算机联网;域名服务器:用来进行域名地址和IP地址之间的转换;电子商务服务器:提供网上产品目录管理、网上电子交易安全监控、网上订货、电子收款机、银行支付网关等功能;电子商务应用服务器:提供供货链管理、网上市场、网上广告、网上零售、有偿服务、网上银行等功能;数据库服务器:提供对大量数据进行有效的存储、组织、管理、查询、检索等功能;支付网关:银行和金融系统和Internet的接口;认证机构:负责确认进行电子商务交易双方的身份、信誉度的权威性机构;电子商务客户机:顾客使用的终端机。

计算机导论期末考试试题及答案

计算机专业计算机导论期末试题 一、单选题(每小题1分,共80分) 1.客机、火车订票系统属于 C 。 A.科学计算方面的计算机应用 B.数据处理方面的计算机应用 C.过程控制方面的计算机应用 D.人工智能方面的计算机应用 2.按照计算机用途分类,可将计算机分为 D 。 A.通用计算机、个人计算机 B.数字计算机、模拟计算机 C.数字计算机、混合计算机 D.通用计算机、专用计算机 3.下列数中最大的数是。 A.(1000101)2 B.(107)8 C.(73)10 D.(4B)16 4.已知:3×4=10,则5×6= D 。 A.24 B.26 C.30 D.36 5.假设某计算机的字长为8位,则十进制数(+67)10的反码表示为。 A.01000011 B.00111100 C.00111101 D.10111100 6.假设某计算机的字长为8位,则十进制数(-75)10的补码表示为。 A.01001011 B.11001011 C.10110100 D.10110101 7.已知:“B”的ASCII码值是66,则码值为1000100的字符为。 A.“C” B.“D” C.“E” D.“F” 8.在计算机系统内部,汉字的表示方法是采用。 A.ASCII码 B.机内码 C.国标码 D.区位码 9.汉字“办”的区位码是1676,其国标码是。 A.1676H B.4908H C.306CH D.3108H 10.一个汉字字形采用点阵时,其字形码要占72B。 A.16×16 B.24×24 C.32×32 D.48×48 11.在逻辑运算中有Y=A+B,则表示逻辑变量A和B进行 B 。 A.与运算 B.或运算 C.非运算 D.与非运算 12.通常所说的CPU包括 C 。 A.运算器 B.控制器 C.运算器和控制器 D.运算器、控制器和内存 13.计算机的内存储器比外存储器 B 。 A.更便宜 B.存储速度快 C.存储容量大 D.虽贵但能存储更多信息 14.外部设备是指。 A.输入设备和输出设备 B.输入设备、输出设备、主存储器

四川大学计算机导论期末例题

名词解释 1.机器指令 计算机执行某种操作的命令,可由CPU直接执行。 2.程序计数器 由若干位触发器和逻辑电路组成,用来存放将要执行的指令在存储器中的存放地址。 3.进程 一个程序(或程序段)在给定的工作空间和数据集合上的一次执行过程,它是操作系统进行资源分配和调度的一个独立单位。 4.数据结构 数据结构是指具有一定结构(关系)的数据元素的集合,主要研究数据的各种逻辑结构和物理结构,以及对数据的各种操作。 5.总线 若干信号线的集合,是计算机各部分之间实现信息传送的通路。 6.高速缓冲存储器(Cache) 位于CPU和内存之间的存储器,其特点是速度快,目的是使存储器的速度和CPU的速度相匹配。 7.操作系统 操作系统是由程序和数据结构组成的大型系统软件,它负责计算机的全部软硬件资源的分配、调度与管理,控制各类程序的正常执行,并为用户使用计算机提供良好的环境。 8.计算机病毒 破坏计算机功能或数据,影响计算机的使用,并能自我复制的一组计算机指令或程序。9.计算机网络 计算机网络是利用通信线路连接起来的相互独立的计算机集合,其主要目的是实现数据通信和资源共享。 10.指令系统 一台计算机中所有机器指令的集合,它是表征一台计算机性能的重要因素。 问答题 1.请列举CPU的主要技术指标(至少3个指标),并进行简要说明。 (答案可在以下任选3个,且不限于此) 基本字长:CPU一次处理的二进制数的位数。(2分) 主频:CPU内部工作的时钟频率,是CPU运行运算时的工作频率。(2分) 地址总线宽度(地址总线的位数):决定了CPU可以访问的存储器的容量,不同型号的CPU 总线宽度不同,因而可使用的内存的最大容量也不一样。(2分) 数据总线宽度:数据总线宽度决定了CPU与内存、输入/输出设备之间一次数据传输的信息量。 高速缓存:是可以进行高速数据交换的存储器,它先于内存与CPU 交换数据。

计算机导论习题答案

计算机导论习题答案 【篇一:计算机导论课后习题参考答案】 >习题参考答案 华南理工大学计算机教学团队 2010.9 习题1 1.1 选择题 1. 美国宾夕法尼亚大学1946年研制成功的一台大型通用数字电子计算机,名称是( c )。 a) pentium b) ibm pc c) eniac d) apple 2.1981年ibm公司推出了第一台( b )位个人计算机ibm pc5150。 a)8 b) 16 c) 32 d) 64 3. 中国大陆1985年自行研制成功了第一台pc 兼容机,即( c )0520微机。 a) 联想 b) 方正 c) 长城 d) 银河 4. 摩尔定律主要内容是指,微型片上集成的晶体管数目每( c )个月翻一番。 a) 6 b) 12 c) 18 d) 24 5. 第四代计算机采用大规模和超大规模( c )作为主要电子元件。 a) 电子管 b) 晶体管c) 集成电路d) 微处理 6. 计算机中最重要的核心部件是( b)。 a) dram b) cpu c) crt d) rom 7. 将微机或某个微机核心部件安装在某个专用设备之内,这样的系统称为(c )。 a) 大型计算机 b) 服务器c) 嵌入式系统 d) 网络 8. 冯.诺依曼计算机包括,( b )、控制器、存储器、输入设备和输出设备五大部分组成。 a) 显示器b)运算器c) 处理器 d) 扫描仪 9.从市场产品来看,计算机大致可以分为大型计算机、( c )和嵌入式系统三类 a) 工业pc b) 服务器c) 微机 d) 笔记本微机 10.大型集群计算机技术是利用许多台单独的( b )组成的一个计算机系统,该系统能够像一台机器那样工作。

计算机导论课后习题答案汇编第三版

计算机导论课后习题答案汇编 第一章一、简答题 1、什么是计算机? 计算机系统是一种能够按照事先存储的程序,自动、高速的对数据进行输入、处理、输出和存储的系统。一个计算机系统包括硬件和软件两大部分。2、解释冯·诺依曼所提出的\存储程序\概念。 把程序和数据都以二进制的形式同意存放在存储器中,由机器自动执行。不同的程序解决不同的问题,实现了计算机通用计算的功能, 3、计算机有哪些主要的特点?运算速度快`精度高 计算机的字长越长,其精度越高,现在世界上最快的计算机每秒可以运算几十万次以上。一般计算机可以有市纪委甚至几十位(二进制)有效数字,计算精度可由千分之几到百万分之几,是任何计算工具所望尘莫及的。具有逻辑判断和记忆能力 计算机有准确的逻辑判断能力和高超的记忆能力。能够进行各种逻辑判断,并根据判断的结果自动决定下一步应该执行的指令。高度的自动化和灵活性 计算机采取存储程序方式工作,即把编号的程序输入计算机,机器便可依次逐条执行,这就使计算机实现了高度的自动化和灵活性。 4、计算机有哪些主要的用途?(1)科学计算(2)数据处理 (3) 实时控制(4)人工智能 (5)计算机辅助工程和辅助教育(6)娱乐和游戏 5、计算机发展中各个阶段的主要特点是什么?第一代计算机特征是采用电子管作为主要元器件第二代计算机特征是采用晶体管作为主要器件第三代计算机

特征是半导体中小规模集成电路第四代计算机特征是大规模和超大规模集成电路6信息化社会的主要特点是什么?1·建立完善的信息基础设施2·采用现金的信息技术3·建立广泛的信息产业4·拥有高素质的信息人才5·构建良好的信息环境 7、信息化社会对计算机人才的素质和知识结构有哪些要求? 在信息化社会中所需要的计算机人才是多方位的,不仅需要研究型、设计型的人才,而且需要应用型的人才;不仅需要开发型人才而且需要维护型、服务型、操作型的人才。要求计算 机人才具有较高的综合素质和创新能力,并对于新技术的发展具有良好的适应性。 8、说明计算机科学与技术学科的知识体系及知识领域、知识单元和知识点的含义。9计算机科学的研究范畴主要包括哪些? 计算机科学技术的研究范畴主要包括计算机理论、硬件、软件、网络及其应用等。第二章一简答题 1 什么是数制?采用位权表示法的数制具有哪3个特点?按进位的原则进行计数称为进位计数制,简称数制。特点:(1)数字的总个数等于基数。(2)最大的数字比基数小1 (3)每个数都要乘以基数的幂次,该幂次由每个数字所在的为止决定。 2 二进制的加法和乘法的运算规则是什么? (1)加法运算规则: 0+0=0 0+1=1 1+0=1 1+1=10 (2)乘法运算法则 0*0=0 0*1=0 1*0=0 1*1=1 3 十进制整数转换为非十进制证书的规则是什么? (1)十进制整数转换为非十进制整数除基取余,先余为低,后余为高。(2)

计算机导论第1次作业

姓名:薛锦利 学号:14710074 《计算机科学导论》第1次作业 (第1章—第7章) 一、选择题 1. 电子计算机从诞生之日起,经历了4个发展阶段,目前所使用的第四代计算机的主要特点是( D )。 A.主要特征是逻辑器件使用电子管,用穿孔卡片机作为数据和指令的输入设备,用磁鼓或磁带作为外存储器,使用机器语言编程 B.主要特征是使用晶体管代替了电子管,内存储器采用了磁芯体,引入了变址寄存器和浮点运算硬件,利用I/O处理机提高了输入/输出能力 C.主要特征是用半导体中、小规模集成电路作为元器件代替晶体管等分立元件,用半导体存储器代替磁芯存储器,使用微程序设计技术简化处理机的结构,在软件方面则广泛地引入多道程序、并行处理、虚拟存储系统和功能完备的操作系统,同时还提供了大量的面向用户的应用程序 D.主要特征是使用了大规模和超大规模集成电路 2.计算学科的根本问题是( A )。 A.什么能被有效地自动进行B.NP问题 C.工程设计D.理论研究实验方法 3.计算机科学与技术研究的内容可以分为(ABC )。 A.基础理论B.专业基础C.应用D.实验 4.计算机科学技术的研究范畴包括(ABCD )。 A.计算机理论B.硬件C.软件D.网络及应用 5.计算机科学与技术学科的核心知识点个数是( C )个。 A.3 B.12 C.14 D.21 6.如果[X]补=11110011,则[-X]补是( D )。 A.11l 1001l B.01110011 C.00001100 D.0000110l 7.若十进制数据为137.625,则其二进制数为( B )。 A.10001001.11 B.10001001.101 C.1000l011.101 D.1011111.101 8.存储器存储容量单位中,1KB表示( A )。 A.1024个字节B.1024位C.1024个字D.1000个字节 9.数据总线、地址总线、控制总线3类划分根据是( A )。 A.总线传送的内容B.总线所处的位置 C.总线传送的方向D.总线传送的方式 10.每次可传送一个字或一个字节的全部代码,并且是对一个字或字节各位同时进行处理的信息传递方式是( B )。 A.串行方式B.并行方式C.查询D.中断 11.目标程序是( D)。 A.使用汇编语言编写的程序B.使用高级语言编写的程序 C.使用自然语言编写的程序D.机器语言程序

计算机导论作业

《计算机导论》作业 作业一 1-1计算机的主要特点有哪些?计算机的发展主要划分为四个阶段,划分的依据是什么?1-2衡量计算机性能的主要技术指标是什么? 1-3操作系统在计算机系统中的地位如何,具有什么特点? 1-4完成下列数制转换: (121)10=()2=()8=()16 (63)10=()2=()8=()16 (FF)16=()8=()2 (B9)16=()8=()2 (0111001111)2=()8=()16 (111001111)2=()8=()16 (BA)16=()8=()16 作业二 2-1 简述存储器的分类标注及性能指标? 2-2 NVRAM是一种非易失的随机读写存储器,其具有什么新的特点? 2-3 简述CRT显示器的工作原理。显示器主要有哪几项技术指标? 2-4 简述组装一台微型计算机系统的一般步骤。 作业三 3-1 操作系统的安装方式有哪三种? 3-2 简述系统引导过程。 3-3 计算机病毒是什么?计算机病毒有什么特点? 3-4 根据攻击目标的不同,计算机病毒可以分为哪几种?它们各有什么特点? 作业四 4-1 常用的编程语言有哪些?它们各有什么特点? 4-2 什么是对象?对象有什么特征? 4-3 什么是算法?它须满足哪些条件? 4-4 什么是结构程序设计?结构程序的编写原则是什么? 作业五 1、常见的数据库管理系统有哪些,它们各自具有什么特点? 2、简述关系数据库与传统的数据库系统的区别? 3、多媒体数据为什么可以压缩?视频压缩的标准有哪些? 4、比较几种网络拓朴结构的优缺点。 5、网络操作系统有三种类型,每种类型有哪些相应的操作系统?

《普通物理学》作业 第一次作业:p.27 一、一飞轮直径为0.2m,质量为5.00kg,边缘绕有一轻绳,现用恒力拉绳子的一端,使其由静止均匀地加速,经0.50s转速达10r/s。假定飞轮可看做均质实心圆柱体。求: 1飞轮的加速度及在这段时间转过的转数; 2拉力及拉力所做的功; 3从拉动后t=10s时飞轮的角速度及轮边缘上一点的速度和切向加速度及法向加速度。 二、有一根长为L,质量为m的均质细杆,两端各牢固地连接一个质量为m的小球,整个系统可绕一过0点并垂直于杆长的水平轴无摩擦地转动,当系统转到水平位置时,求: 1系统所受的合力矩; 2系统的转动惯量; 3系统的角加速度 三、有质量为m1和m2( m1﹥m2)两物体分别悬在两个半径不同的组合轮上,如图P28,1-3图。求物体的加速度及绳之张力。大,小两轮间无相对运动,且半径分别为R和r,转动惯量分别为j1和j2。轮与轴承之间无摩擦。 第二次作业:p.59 1.水银气压计中混进了一个空气泡,因此,它的读数比实际的气压小。当精确的气压计的读数为1.0239×105Pa时它的读数只有0.997×105Pa,此时管内水银面到管顶的距离为80mm.问当此气压计的读数为0.978×105Pa时,实际气压应是多少?设空气的温度保持不变。 2.质量M=1.1kg的实际CO2气体,在体积v=2.0×10-3m3,温度为13℃时的压强是多少? 并将结果与同状态下的理想气体比较。这时CO2的内压强是多大?已知CO2的范德瓦耳斯常数a=3.64×10-1Pa·(m3)2·mol-2,b=4.27×10-5m3·mol-1。 3.温度为300k时,1mol氧的平动动能和转动动能各是多少? 第三次作业:p.142 1.P142 4-1 所示的电荷体系称为电四极子,它可以看成是两个反向放置的电偶极子 的组合体系。若将q和l看成是已知量试求: X﹥l时,图中p点的场强。假设OP垂直于正方形的一对边。 2.一厚度为0.5cm的“无限大”均匀带电平面扳,电荷体密度为1.0×10-4C/m3,求⑴ 薄层外任一点的电场强度;⑵此薄层中心处的电场强度;⑶薄层内与表面相距 0.10cm处的电场强度。 3.一半径为R的“无限长”均匀带电圆柱面,其单位面积上所带的电荷(即电荷面密度)为﹠。求距该圆柱面为r处某点的场强。

大学计算机导论试题(1)

一.选择题 1. 用一个字节表示无符号整数,其最大值是十进制数()。 A. 256 B. 255 C. 127 D. 128 2. 一个完整的计算机系统应包括(c)。 A. 运算器、控制器和存储器 B. 主机和应用程序 C. 硬件系统和软件系统 D. 主机和外部设备 3. 微机中的CPU是指()。 A. 内存和运算器 B. 输入设备和输出设备 C. 存储器和控制器 D. 控制器和运算器 4. 计算机的性能主要取决于()。 A. 字长、运算速度和内存容量 B. 磁盘容量和打印机质量 C. 操作系统和外部设备 D. 机器价格和所配置的操作系统 5. 磁盘上的磁道是(a)。 A. 一组记录密度不同的同心圆 B. 一组记录密度相同的同心圆 C. 一组记录密度不同的阿基米德螺旋线 D. 一组记录密度相同的阿基米德螺旋线 6. 下列E–mail地址正确的是()。 A. wangfang/https://www.doczj.com/doc/cd15914665.html, B. https://www.doczj.com/doc/cd15914665.html, C. wangfang#https://www.doczj.com/doc/cd15914665.html, D. wangfang@https://www.doczj.com/doc/cd15914665.html, 7. UNIX操作系统是一种(c)。 A. 单用户单任务操作系统 B. 实时操作系统 C. 多用户多任务操作系统 D. 单用户多任务操作系统 8. 下列四项中,不属于计算机病毒特征的是()。 A. 潜伏性 B. 免疫性 C. 传染性 D. 激发性 9. 电子计算机主存内的ROM是指()。 A. 不能改变其内的数据 B. 只能读出数据,不能写入数据 C. 通常用来存储系统程序 D. 以上都是 10. 市场上出售的微机中,常看到CPU标注为“Pentium 4/1.2G”,其中的1.2G表示()。 A. CPU的时钟主频是1.2GMHz B. CPU的运算速度是1.2Gb/s C. 处理器的产品系列号 D. CPU与内存的数据交换率 11. 下列语句中()是正确的。 A. 1KB=1024×1024 Bytes B. 1KB=1024 MB C. 1MB=1024×1024 Bytes D. 1MB=1024 Bytes 12. 最少需要()位二进制表示任一四位长的十进制数。 A. 10 B. 14 C. 13 D. 16 13. 下列各种存储器中,断电后会丢失信息的是()。 A. ROM B. RAM C. CD—ROM D. 硬盘

计算机导论练习题

练习题 说明:该练习卷可以作为每章结束后的自测练习,该练习与期末笔试有较大的相关性,希望同学们要独立完成,并通过网上作业提交系统,按时提交老师批改。 第一章习题 (一)选择题 1现在计算机是基于()模型。 a.Ron Newman b. von Newman c. Pascal d. Charles Babbage 2.在冯·诺伊曼模型中,()子系统存储数据和程序。 a. 算术逻辑元 b.输入/输出 c.存储器 d.控制单元 3.在冯·诺伊曼模型中,()子系统执行计算和逻辑运算。 a. 算术逻辑元 b.输入/输出 c.存储器 d.控制单元 4.在冯·诺伊曼模型中,()子系统接收数据和程序,并将处理结果传给输出设备。 a. 算术逻辑元 b.输入/输出 c.存储器 d.控制单元 5.在冯·诺伊曼模型中,()子系统是其他子系统的管理者。 a. 算术逻辑元 b.输入/输出 c.存储器 d.控制单元 6.根据冯·诺伊曼模型,()被存储在存储器中。 a.只有数据 b.只有程序 c.数据和程序 d.以上都不是 7.问题的逐步解决方案被称为() a.硬件 b.操作系统 c.计算机语言 d.算法 8.FORTRAN和COBOL是()的例子。 a.硬件 b.操作系统 c.计算机语言 d.算法 9.在17世纪能执行加法和减法的计算机器是() a. Pascaline b. Jacquard loom c. Analytical d.. Babbage machine 10.在计算机语言中,()是告诉计算机怎么处理数据的一系列指令。 a.操作系统 b.算法 c.数据处理 d.程序 11()是以结构化的形式来设计编写程序。 a.软件工程 b. 硬件工程 c. 算法开发 d .教育体系 12.第一代基于冯·诺伊曼模型的计算机中有一个被称为() a. Pascal b. Pascaline c.ABC d.EDVAC (二)思考题 1、简述计算机发展的历史过程。 2、简述计算机的作用、特点及分类。 3、计算机的主要技术指标有哪些? 4、计算机自身发展面临的挑战有哪些方面? 5、谈谈计算机对社会的影响。 6、结合本章内容和自己的想法,谈谈今后的学习打算。 第二章习题 (一)选择题

四川大学计算机导论期末例题

名词解释 1. 机器指令计算机执行某种操作的命令,可由CPU 直接执行。 2. 程序计数器由若干位触发器和逻辑电路组成,用来存放将要执行的指令在存储器中的存放地址。 3. 进程 一个程序(或程序段)在给定的工作空间和数据集合上的一次执行过程,它是操作系统进行资源分配和调度的一个独立单位。 4. 数据结构数据结构是指具有一定结构(关系)的数据元素的集合,主要研究数据的各种逻辑结构和物理结构,以及对数据的各种操作。 5. 总线若干信号线的集合,是计算机各部分之间实现信息传送的通路。 6. 高速缓冲存储器(Cache) 位于CPU 和内存之间的存储器,其特点是速度快,目的是使存储器的速度和CPU 的速度相匹配。 7. 操作系统操作系统是由程序和数据结构组成的大型系统软件,它负责计算机的全部软硬件资源的分配、调度与管理,控制各类程序的正常执行,并为用户使用计算机提供良好的环境。 8. 计算机病毒破坏计算机功能或数据,影响计算机的使用,并能自我复制的一组计算机指令或程序。 9. 计算机网络计算机网络是利用通信线路连接起来的相互独立的计算机集合,其主要目的是实现数据通信和资源共享。 10. 指令系统一台计算机中所有机器指令的集合,它是表征一台计算机性能的重要因素。 问答题 1. 请列举CPU 的主要技术指标(至少3 个指标),并进行简要说明。 (答案可在以下任选 3 个,且不限于此) 基本字长:CPU一次处理的二进制数的位数。(2分) 主频:CPU内部工作的时钟频率,是CPU运行运算时的工作频率。(2分) 地址总线宽度(地址总线的位数):决定了CPU可以访问的存储器的容量,不同型号的CPU 总线宽度不同,因而可使用的内存的最大容量也不一样。(2 分) 数据总线宽度:数据总线宽度决定了CPU与内存、输入/输出设备之间一次数据传输的信息量。 高速缓存:是可以进行高速数据交换的存储器,它先于内存与CPU 交换数据。 2. 计算机的硬件主要有哪几个部分组成?各部分有什么功能?计算机硬件系统由运算器、控制器、存储器、输入设备、输出设备和总线组成。( 2 分)运 算器:完成算术运算和逻辑运算。( 1 分)控制器:完成取指,译码,产生相应的操作控制信号,使计算机各部分自动协调地工作。(1分)存储器:存放程序和数据。(1 分)输入设备:将外界信息转换为计算机能接收和识别的信息,输入到计算机中。( 1 分)输出设备:将计算机处理后的信息转换为人或其它设备可接受或识别的信息。(1 分) 3. 简述操作系统的概念和五大管理功能。操作系统是由程序和数据结构组成的大型系统软件,它负责计算机的全部软硬件资源的分配、调度与管理,控制各类程序的正常执行,并为用户使用计算机提供良好的环境。(2 分) 处理器管理:实现多道程序运行下对处理器的分配和调度,使一个处理器为多个程序交替服务,最

计算机导论试题及答案

计算机导论》试卷1 注意事项:1)本试卷适用于计算机相关专业本科学生使用。 2)本试卷共7页,满分100分。考试时间120分钟。一)单项选择题(1分×70 =70分) 1、目前,计算机系统中处理的信息是。 A)数字信号B)模拟信号 C)无线电信号D)声音信号 2、在下列叙述中,最能准确地反映计算机主要功能的是。 A)计算机可以代替人的脑力劳动 B)计算机可以实现高速度的运算 C)计算机是一种能处理信息的机器 D)计算机可以存储大量信息 3、与二进制数(1100001)2等价的八进制、十进制数分别为。 A)(157)8(97)10B)(141)8(85)10 C)(141)8(97)10D)(131)8(98)10 4、关于随机存储器RAM,不具备的特点是。 A)RAM中的信息可读可写 B)RAM是一种半导体存储器 C)RAM中的信息不能长期保存 D)RAM用来存放计算机本身的监控程序 5、ASCII码值由小到大的一般顺序是。 A)特殊符号、控制符、数字、大写字母、小写字母 B)控制符、特殊符号、数字、大写字母、小写字母 C)大写字母、小写字母、数字、特殊符号、控制符 D)数字、特殊符号、控制符、小写字母、大写字母 6、扩展名为COM类文件为。 A)命令解释文件B)C语言源程序文件 C)目标代码文件D)系统配置文件 7、在计算机应用中,“计算机辅助设计”的英文缩写是。 A)CAD B)CAM C)CAE D)CAT 8、编译型高级语言源程序可以。 A)由计算机直接执行B)经汇编后执行 C)边解释边执行D)经编译、连接后执行 9、计算机的硬件系统应包括。

A)主机、键盘、显示器B)硬件系统和软件系统 C)计算机外设D)主机、外设 10、显示器最重要的指标是。 A)屏幕大小B)分辨率 C)显示速度D)制造商 11、批处理操作系统是一个操作系统。 A)交互式B)分时 C)非交互式D)网络式 12、把高级语言的源程序变为目标程序要经过。 A)汇编B)编译 C)编辑D)解释 13、微机的性能指标中的内部存储器的容量是指。 A)RAM的容量B)ROM的容量 C)硬盘的容量D)RAM和ROM的容量 14、现代计算机之所以能自动连续进行数据处理,主要因为。 A)采用了开关电路B)半导体器件 C)具有存储程序的功能D)采用了二进制 15、CPU执行计算机指令时使用进行运算。 A)二进制B)八进制 C)十进制D)十六进制 16、现代计算一般都是。 A)模拟计算机B)微型计算机 C)网络计算机D)电子数字计算机 17、存储器容量是1KB,实际包含字节。 A)1000 B)1024 C)1024G D)1000M 18、计算机病毒是一种。 A)特殊的计算机部件B)特殊的生物病毒 C)游戏软件D)人为编制的特殊的计算机程序 19、计算机一旦断电后中的信息会丢失。 A)硬盘B)软盘 C)RAM D)ROM 20、系统软件中最重要的是 A)操作系统B)语言处理程序 C)工具软件D)数据库管理系统 21、总线是连接计算机各部分的一镞公共信号线,它是计算机中传送信息的公共通道,总线是由地址总线)数据总线和控制总线组成,其中地址总线是_ 在微机各部分之间传送的线路。

计算机导论复习题(选择部分)汇总

计算机导论习题 第一章 1.现在的计算机是基于()模型 A 布莱尼茨B冯·诺伊曼C帕斯卡 D 查尔斯巴比奇 2.在计算机中,()子系统储存数据和程序。 A 算术逻辑单元 B 输出\输入C存储器D控制单元 3.在计算机中,()子系统执行计算和逻辑运算。 A 算术逻辑单元B输入\输出C存储器D控制单元 4在计算机中,()子系统接收数据和程序并将运算结果传给输出设备。 A 算术逻辑单元B输入\输出C存储器D控制单元 5在计算机中,()子系统是其它子系统的管理者。 A 只有数据B输入\输出C存储器D控制单元 6问题分析的步骤解决被称为()。 A 硬件B操作系统C计算机语言D算法 7根据冯洛伊曼型,()被存在存储器中。 A 只有数据B只有程序C数据和程序D以上不都是 8.FORTRAN和COBOL是()的例子。 A 硬件B操作系统C计算机语言D算法 9.在17世纪能执行加法和减法运算的计算机器是()。 A Pascaline B Jacquard loom C Analytical Engline D Babbage machine 10在计算机语言中,()是告诉计算机如何处理数据的一系列指令。 A、操作系统B算法C数据处理器D程序 11 ()是以结构化的形式来设计和编写程序。

A 软件工程 B 硬件工程 C 算法开发 d 教育体系 12 第一台特殊用途的电子计算机被称为()。 A Pascal B Pascaline C ABC D EDVAC 13 第一代基于冯诺伊曼模型的计算机中有一个被称为()。 A Pascal B Pascaline C ABC D EDVAC 14 第一台使用存储和编程的计算机器被称为()。 A the Madeline B EDVA C C the babbage machine D the Jacquard loom 15 ()将程序设计任务从计算机运算任务中分离出来。 A 算法B数据处理器 C 高级程序设计语言 D 操作系统 第二章 1、十进制数字系统中的底是___。 a.2 b.8 c.10 d.16 2、二进制数字系统中的底是___。 a.2 b.8 c.10 d.16 3、八进制数字系统中的底是___。 a.2 b.8 c.10 d.16 4、十六进制数字系统中的底是___。 a.2 b.8 c.10 d.16

计算机导论作业与答案 2

习题一 (一)选择题 1.在计算机的专业用语中,ROM表示(C)。 A)外存储器B)内存储器C)只读存储器D)随机存取存储器 2.计算机的基本构成是(C)。 A)主机、存储器、输出设备B)主机、输入设备、显示器 C)运算器、控制器、存储器、输入和输出设备D)主机、键盘、打印机 3.计算机系统可分为硬件系统和软件系统,其中软件系统主要由(B)组成。 A)操作系统和编译系统B)系统软件和应用软件 C)操作系统和应用软件D)系统软件和解释性程序 4.计算机硬件能直接执行的只有(B)。 A)符号语言B)机器语言C)算法语言D)汇编语言 9.显示器的主要参数之一为分辨率,含义为(B)。 A)显示屏幕的水平和垂直扫描频率B)显示屏幕上光栅的列数和行数 C)可显示不同颜色的总数D)同一幅画面允许显示不同颜色的最大数目11.微机中为CPU和其他部件传输数据、地址和控制信息的部件是(B)。 A)存储器B)总线C)控制器D)输入/输出设备 12.CPU由运算器和(C)组成。 A)RAM B)总线C)控制器D)存储器 13.在微机的下列部件中,访问速度最快的部件是(D)。 A)硬盘B)软盘C)磁带D)RAM 14.CD-ROM是(A)设备。 A)输入设备B)输入/输出设备.C)输出设备D)主存储器 15.用高级语言编写的程序称之为(A)。 A)源程序B)目标程序C)汇编程序D)命令程序 16.运算器的主要功能是(A)。 A)算术运算和逻辑运算B)逻辑运算C)控制D)算术运算 17.断电会使存储信息丢失的存储器是(D)。 A)RAM B)软磁盘C)硬磁盘D)ROM 21.现在使用的计算机,其工作原理是(D)。 A)存储程序B)程序控制C)程序设计D)存储程序和程序控制24, 将十六进制数D7转换成二进制数是_B_,转换成十进制数是__D__,?采用十六进制数表示二进制数是因为十六进制数__C_。 【24】(A) 11101011 (B) 11010111 (C) 11101010 (D) 11010110 【25】(A) 217 (B) 152 (C) 172 (D) 215 【26】(A) 在计算机内部比二进制数占用较少空间(B) 在算法规则上比二进制数更简单 (C) 在书写上更简洁,更方便(D) 运算比二进制数快 (二)填空题 1.操作系统、各种程序设计语言的处理程序、数据库管理系统、诊断程序以及系统服务程序等都是系统软件。 4.ALU用来执行当前指令所规定的算术运算和逻辑运算。 7.现代通用电子计算机出现于40 年代,其内部采用 2 进制。

计算机导论第一次作业

计算机导论课第一次作业 根据你自己的理解回答下列问题: 第一题:尝试回答你自己对计算、计算机、计算机科学的理解。 1.计算是一种将零个或多个输入值转换为一个或多个结果(输出值)的思考过程。 2.计算机是能够实现计算过程的机器、工具。是由一系列电子元器件组成的,能进行数值计算和信息处理的机器;是一种能自动、高速、精确地对信息进行存储、传送和加工处理的工具。 3.计算机科学是研究计算机及其周围各种现象和规律的科学;亦即是研究计算机系统结构、程序系统(即软件)、人工智能以及计算本身的性质和问题的学科。 第二题:尝试回答计算机的特点、计算机的发展趋势。 计算机特点: 运算速度快,计算精确度高,记忆能力强,具有逻辑判断能力,有自动控制能力 计算机发展趋势 1 巨型化 发展高速度,大存储容量,强功能的超大型计算机。 2 微型化 是以大规模集成电路为基础的计算机微型化。 3 网络化

用通信线路及通信设备把个别的计算机连接在一起形成一个复杂的系统就是计算机网络。现今最大的网络是Internet;加入这个网络的计算机已达数亿台。 4 智能化 是指计算机具有模仿人类较高层次智能活动的能力。 5 多媒体化 将文字、声音、图形、图像、视频等多种媒体与计算机集成在一起来设计与处理 第三题:简述图灵其人、其事;其对计算机科学发展的贡献。 阿兰·麦席森·图灵Alan Mathison Turing。1912年6月23日,出生于英国伦敦,是英国著名的数学家和逻辑学家,被称为计算机科学之父、人工智能之父,计算机逻辑的奠基者。理论--“图灵机”,理论--“图灵测试”,为了纪念图灵—“图灵奖”。 图灵机,是英国数学家阿兰·图灵于1936年提出的一种抽象计算模型,其更抽象的意义为一种数学逻辑机。--是计算机理论模型。图灵机构成:1、一条无限长的纸带TAPE。2、一个读写头HEAD。3、一套控制规则TABLE。4、一个状态寄存器。图灵机动作:1、在纸上写上或擦除某个符号;2、把注意力从纸的一个位置移动到另一个位置;。 第四题:简述冯诺依曼其人、其事;其对计算机科学发展的贡献;冯诺依曼体系计算机的特点。 ?约翰·冯·诺依曼(JohnvonNewmann),美籍匈牙利人;,著名数学家,奠

相关主题
文本预览
相关文档 最新文档