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

计算机导论作业1

计算机导论作业1
计算机导论作业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

9. Which of the following bit patterns (represented in hexadecimal notation) represents a negative number in two’s complement notation?

A. 7F

B. 55

C. A6

D. 08

ANSWER: C

10. What value is represented by the bit pattern 01011100 when interpreted using 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?

A. -1 1/2

B. 1 1/2

C. -3/8

D. 3/8

ANSWER: B

11. Which of the following values cannot be stored accurately using 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?

A. 2 1/2

B. 3/16

C. 7

D. 6 1/4

ANSWER: D

121. Which of the following bit-patterns represents the smallest value using the 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?

A. 01001000

B. 01011000

C. 00101000

D. 01111000

ANSWER: C

13. Which of the following data storage systems provides the most efficient random access to individual data items?

A. Main memory

B. Magnetic disk

C. Optical CDs and DVDs

ANSWER: A

14. Which of the following storage systems is best suited for storing and retrieving long strings of data that are processed in their sequential order?

A. Main memory

B. Magnetic disk

C. Optical CDs and DVDs

ANSWER: C

15. Which of the following mass storage system does not require physical motion?

A. Magnetic tape

B. Magnetic disk

C. DVDs

D. Flash drives ANSWER: D

16. Assuming that each of the following bit patterns originally had even parity, which one contains an error?

A. 10110100

B. 11000011

C. 00011000

D. 10001001 ANSWER: D

17. How many errors per pattern could be corrected when using an error-correcting code in which any two code patterns differ by a Hamming distance of 8?

A. 3

B. 4

C. 5

D. 6

ANSWER: A

18. Which of the following is a possible LZW compression of the message “xyz xyz xyz”?

A. 1234

B. 1234545

C. 232

D. 12

ANSWER: B

19. How many different symbols can be encoded using Unicode?

A. 256

B. 4,096

C. 65,536

D. 1,046,476

ANSWER: C

20. Which of the following systems is least efficient when encoding numeric values?

A. Two’s complement notation

B. Excess notation

C. ASCII

D. Floating-point notation

ANSWER: C

21. Which of the following is a means of encoding music?

A. ASCII

B. MIDI

C. JPEG

D. GIF

ANSWER: B

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

1. A computer’s main memory consists of numerous memory cel ls, each of which contains ________ bits. Each memory cell is identified by a numeric value called the cell’s _________.

ANSWER: eight, address

2. Represent the bit pattern 1011010010011111 in hexadecimal notation.

_________

ANSWER: B49F

3. A7DF is the hexadecimal representation for what bit pattern?

____________

ANSWER: 1010 0111 1101 1111

4. How many different bit patterns can be formed if each must consist of exactly 6 bits?

____________

ANSWER: 64

5. Translate each of the following binary representations into its equivalent base ten representation.

A. 1100 __________

B. 10.011 __________

C. 0.01 __________

D. 10001 __________

ANSWER: A. 12 B. 2 3/8 C. 1/4 D. 17

6. Rewrite each of the following values (represented in base ten notation) in binary notation.

A. 7 __________

B. 23 __________

C. 2 1/4 __________

D. 5/8 __________

ANSWER: A. 111 B. 10111 C. 10.01 D. 0.101

7. If the patterns 101.11 and 1.011 represent values in binary notation, what is the binary representation of their sum?

____________

ANSWER: 111.001

8. Using a two’s complement notation system in which each value is represented by a pattern of six bits, represent the value 3.

____________

ANSWER: 000011

9. Using a two’s complemen t notation system in which each value is represented by a pattern of six bits, represent the value -3.

____________

ANSWER: 111101

10. What is the largest positive integer that can be represented in a two’s complement system in which each value is represented by eight bits?

____________

ANSWER: 127 (represented by 01111111)

11. In a two’s complement system, what value is represented by the pattern 11111111111111001?

____________

ANSWER: -7

12. When using two’s complement notation, what bit pat tern represents the negation of 01101010?

____________

ANSWER: 10010110

13. What value is represented by each of the following patterns in excess notation?

A. 10000 ____

B. 0110 ____

C. 1011 ____

ANSWER: A. 0, B. -2, C. 3

14. Using an 8-bit 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, write the bit pattern that represents the value 1 3/4. (Use normalized form.)

____________

ANSWER: 01011110

15. What is the largest value that can be represented in a floating-point system in which each value is encoded by a byte whose 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: 7 1/2 (represented as 01111111)

16. Which of the following addition problems cannot be solved accurately when using a floating-point system in which each value is encoded by a byte whose 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?

A. 2 1/2 + 1 3/8

B. 3 1/2 + 4 1/2

C. 7 + 3/4

____________

ANSWER: A, B, and C

17. The following is an error-correcting code in which any two patterns differ by a Hamming distance of at least three.

Symbol Representation

A 000000

B 001111

C 010011

D 011100

E 100110

F 101001

G 110101

H 111010

Decode each of the following patterns

010011 ________ 101010 ________ 011000 ________ 101101 _______ ANSWER: C, H, D, F

18. How many errors in a single code pattern could be corrected when using an error-correcting code in which each code pattern is a Hamming distance of at least seven from any other code pattern?

____________

ANSWER: 3

19. The following is a message that was originally encoded so that each pattern had odd parity. Circle the patterns in which an error has definitely occurred.

10110101 11110000 10010010 00000000 11111111 00001000 00111101

______________________________________

ANSWER: Second, fourth, fifth, and sixth

20. Data compression techniques apply various principles to reduce the size of data. One, called

_______________________, avoids repeating long strings of the same data item. Another, called

_______________________, encodes the difference between consecutive blocks of data rather than encoding each block in its entirety. Still another, called _________________________, uses short bit patterns to encode frequently occurring items and longer patterns to encode less frequent items. ANSWER: Run-length encoding, relative encoding, and frequency-dependent encoding.

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

bit Binary digit

Boolean operation AND, OR, XOR, NOT

address A numeric value used to identify a memory cell

hexadecimal notation An efficient way of representing bit patterns

sector A segment of a track in a mass storage system

zoned-bit recording A means of increasing the storage capacity of a magnetic disk system buffer A storage area used to hold data on a temporary basis, often as a step

in transferring the data from one device to another

ISO An international organization for establishing standards

ANSI A major standardization organization within the United States

ASCII A system developed by the American Standards Institute for encoding

text.

flip-flop A digital circuit capable of holding a single digit

two’s complement notation A means of encoding whole numbers

floating-point notation A means of encoding numeric values that may involve fractions truncation An error that may occur when using floating-point notation

pixel A small part of an image

GIF A means of compressing an image file by restricting the number of

colors available

JPEG A means of compressing images by blurring the boundaries between

different colors while maintaining all brightness information

Unicode A means of encoding text in which each symbol is represented by 16

bits

LZW An example of adaptive dictionary encoding

MIDI A means of encoding music in terms of notes and instruments rather

than actual audio

Key field A part of a logical record in a file used to identify the record.

VLSI A means of constructing complex circuitry in a very small space.

General Format Questions

1. Describe how a computer can produce an incorrect answer when performing numerical computations even though it has not malfunctioned.

ANSWER: Most students will probably refer to overflow and truncation errors.

2. Describe ho the concept of Hamming distance is used to produce an error-correcting code. ANSWER: By designing a code in which each pattern has a Hamming distance of n from any other pattern, patterns with fewer than n/2 errors can be corrected by replacing them with the code pattern that is closest.

3. a. What is the output of the circuit below?

b. In general, how does the three-bit input pattern acros s the top of the diagram relate to the circuit’s output?

ANSWER: a. 0 b. The output is 0 if the input parity is odd; the output is 1 if the input parity is even.

4. If the input and output bit patterns in the circuit below are interpreted as binary representations of numeric values, what operation does the circuit perform?

ANSWER: The circuit subtracts one (except for the case of the input being 000).

5. Explain why such terms as kilobyte, megabyte, and gigabyte have acquired double meanings.

ANSWER: The prefixes kilo, mega, and giga are used traditionally to refer to units measured in powers of ten. However, due to the early misuse of the prefix kilo in reference to units of the size 1024, these prefixes are now often used to refer to units that are powers of two—especially when referring to the capacity of main memories.

6. Convert the following addition problem into two’s complement notation (using four bits per value), perform the addition, convert the answer back into base ten notation, and explain the results.

6

+ 3

ANSWER: In two’s complement notation the problem is to add 0110 and 0011. The sum is 1001 which translates to -7. This answer is incorrect due to overflow.

7. Under what condition is each of the following data compression techniques most effective?

a. Run-length encoding

b. Relative encoding

ANSWER: a. Compresses most when data consists of long strings of the same entry.

b. Compresses most when each block of data differs little from the previous block.

8. What is frequency-dependent encoding?

ANSWER: Frequency-dependent encoding is an encoding system that uses short bit patterns to represent data items that occur most often and longer patterns to represent less frequently occurring items. The result is that entire blocks of data can be represented in less space than would be required if each data item were represented by the same size bit pattern.

9. Construct the entire two’s complement scale in which each value is represented by three bits.

ANSWER: 3 011

2 010

1 001

0 000

-1 111

-2 110

-3 101

-4 100

10. To what does the term “normalized form” refer in the context of floating-point notation?

ANSWER: Normalized form refers to a standard for positioning the bit pattern within the mantissa field. Many values can be represented in floating-point notation by different bit patterns, only one of which is in normalized form. Hence, restricting representations to normalized form assures that each value is represented by a unique pattern.

11. Explain why the final version of the dictionary need not be transmitted with a message encoded using LZW compression.

ANSWER: The dictionary can be constructed during decompression in the same way it was constructed during compression.

12. Among the Boolean operations AND, OR, EXCLUSIVE OR, and NOT, which is least like the others? Explain your answer.

ANSWER: There is not really a right or wrong answer. The student’s explanation is the most important part. Most students will probably answer NOT because it has only one input whereas the others have two.

13. If a term paper consisted 42 pages, each containing 40 lines of 100 symbols each (counting each space as

a symbol), was to be encoded using Unicode, how many bytes of storage space would be required?

ANSWER: 336,000 bytes (168,000 symbols times 2 bytes per symbol)

14. Explain why adding only a few characters to a text file may increase the file’s size by several hundred bytes and at other times may not increase the file’s s ize at all.

ANSWER: File space is allocated in terms of physical records, each of which is several hundred bytes in size. Thus, the size of a file grows by physical record units rather than by byte size units.

15. In a two’s complement system, what valu e can be added to any other value without causing an overflow? How many values in the system have this property? Explain your answer.

ANSWER: Adding the value 0 to any other value will not produce an overflow. However, if m is the largest positive integer that can be represented in the system, then any value in the range 1 to m will produce an overflow when added to m, and any value in the range -1 to -( m + 1) will produce an overflow when added to -( m + 1).

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

计算机专业计算机导论期末试题 一、单选题(每小题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、输入设备、输出设备、主存储器 C、输入设备、输出设备与存储器 D、输入设备、输出设备、辅助存储器 15、计算机工作时,内存储器用来存储 B 。 A、程序与指令 B、程序与数据 C、数据与信号 D、ASCII码与汉字编码 16.MIPS常用来描述计算机的运算速度,其含义就是。 A、每秒钟执行百万条指令 B、每分钟执行百万条指令

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

计算机导论试题与答案[技巧] 计算机导论试题与答案 《计算机导论》试题和答案 一、填空题(每小题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章 课后习题及参考答案

第一章习题 一、选择题 1.世界上第一台通用电子数字计算机诞生于( )。 A、1950年 B、1945年 C、1946年 D、1948年 2.与二进制数(10111.101)2等值的十进制数是( )。 A、23.625 B、23.5 C、39.5 D、39.625 3.与十进制数(101.1)10等值的二进制数是( )。 A、5.5 B、110010.00011 C、11000101.0011 D、1100101.000110011… 4.与十六进制数(1AE.5D)16等值的八进制数是( )。 A、(647.272)8 B、(565.727)8 C、(656.272)8 14 160 16 2 ‘ D、(656.235)8 5.与二进制数(1111111111)2等值的十六进制数是( )。 A、FF3H B、3FFH C、210-1 D、1777O 6. 在PC机中,1MB准确等于( )。 A、1000×1000KB B、1024×1024KB C、1024×1024B D、1000×1000B 7.已知真值X= 11101010,则其补码[X]补等于( )。 A、00010110 B、01101010 C、10010110 D、0010110 8.已知机器数[X]反=11111111,则其真值X为( )。 A、00000000 B、+0000000 C、10000000 D、-0000000 9.已知[X]原=10011110,则其对应的[X]补为( )。 A、01100010 B、11100001 C、-0011110 D、11100010 10.已知A =01011101,B =11101010,则A○+B为( )。 A、10110111 B、01001000 C、11111111 D、10100010 11.1MB等于( )字节? A、10K B、100K C、1024K D、10000K 12.把十进制数215转换成二进制数,结果为( )。 A、10010110 B、11011001 C、11101001 D、11010111 13.ASCII是( )。 A、条形码 B、二~十进制编码 C、二进制码 D、美国信息交换标准码 14.已知3×4=10,则5×6=( )。 A、24 B、26 C、30 D、36 15.已知“B”的ASCII码值是66,则码值为1000100的字符为( )。 A、“C” B、“D” C、“E” D、“F” 16.一个汉字字形采用( )点阵时,其字形码要占72B。 A、16×16 B、24×24 C、32×32 D、48×48 17.已知内存条的容量为16MB,则其对应的地址寄存器最少应有( )。 A、8位 B、16位 C、24位 D、36位 18.MIPS是表示计算机运行速度的一种单位,其含义是( )。

计算机导论试题及答案

计算机导论》试卷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、总线是连接计算机各部分的一镞公共信号线,它是计算机中传送信息的公共通道,总线是由地址总线)数据总线和控制总线组成,其中地址总线是_ 在微机各部分之间传送的线路。

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

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

计算机导论习题答案

计算机导论习题答案 【篇一:计算机导论课后习题参考答案】 >习题参考答案 华南理工大学计算机教学团队 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

课程《计算机导论》考试时间:120分钟班级姓名学号 一、填空题(将正确答案填在横线上,每空1分,共10分) 1.现代计算机都是基于__________模型的。 2.位运算可分为两大类,即__________运算和__________运算。 3.中央处理单元(CPU)由__________ 、__________和寄存器组三个部分组成。 4.根据网络覆盖的范围,可以将网络划分为__________、__________和广域网。 5.当操作系统没有对进程的资源进行限制时会发生__________。 6.计算机系统由两个部分组成,分为 __________ 和__________。 二、选择题(将正确答案的代号填在横线上,每小题2分,共20分) 1、下面哪些属于数据? A.数 B. 视频 C.音频 D. 以上全是 2、在计算机语言中,是告诉计算机怎么处理数据的一系列指令。 A、操作系统 B、算法 C、数据处理器 D、程序 3、一个字节有位。 A、2 B、4 C、8 D、16

4、如果计算机断电,那么下列中的数据将被擦除。 A、RAM B、ROM C、磁带驱动器 D、CD-ROM 5、兄弟土豆公司总部在A市,但在B市和C市有分店,各分店之间要通信,这种网络类型可能是。 A、LAN B、MAN C、WAN D、以上都不是 6、进程在状态能够转换到就绪、终止或等待状态 A、保持 B、虚拟 C、运行 D、a和c 7、在排序中,将最小的元素移到无序列表的起始位置,但没有一对一交换。 A、选择 B、冒泡 C、插入 D、以上都是 8、对于无序列表使用查找。 A、顺序 B、折半 C、冒泡 D、插入 9、计算机硬件唯一可理解语言。 A、机器 B、符号 C、高级 D、自然 10、记录中的所有成员必须是。 A、同类型 B、相关类型 C、整型 D、字符型 三、判断题(请在括号内正确的打“√”,错误的打“╳”。每小题1分,共10分) 1.在冯诺.伊曼模型中,程序可以不存储在存储器中。() 2.在扩展的ASCII码中,每个符号为16位。() 3.把位模式的指定位置位是异或运算的一个应用。() 4.高速缓冲存储器是中速存储器。()

计算机导论作业

《计算机导论》作业 作业一 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次作业

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

计算机导论第一次作业

计算机导论课第一次作业 根据你自己的理解回答下列问题: 第一题:尝试回答你自己对计算、计算机、计算机科学的理解。 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),美籍匈牙利人;,著名数学家,奠

计算机导论答案

Computing Essentials 2008练习答案 Chapter 1: Information Technology, The Internet, and You Crossword Puzzle Answers: Across Num. Clue Answer 1 The most essential part of an information system. People 7 Coordinates computer resources. Operating System 10 Modifies signals for processing. Modem 12 Data that has been processed by the computer. Information 13 Unprocessed facts. Data 14 Notebook computer that accepts handwritten input.. Tablet PC Down Num. Clue Answer 2 Uses computers to become more productive. End User 3 Rules or guidelines to follow when using software, hardware, and data. Procedures 4 Created by word processors. Document Files 5 Specialized programs that allow input and output devices to communicate. Device Drivers 6 Created by database management programs. Database Files 8 The physical equipment of a microcomputer. Hardware 9 The world’s largest computer network. Internet 13 Provides step-by-step instructions to the computer. Software Num Multiple Choice Answers Matching Answers 1 B E 2 B F 3 A I 4 B H 5 D A 6 D C 7 A G 8 C B 9 D D 10 D J

西电14年春计算机导论作业及答案

学习中心/函授站_ 姓名学号 西安电子科技大学网络与继续教育学院 2014学年上学期 《计算机导论》期末考试试题 (综合大作业) 考试说明: 1、大作业于2014年6月12日下发,2014年6月28日交回; 2、考试必须独立完成,如发现抄袭、雷同均按零分计; 3、答案须手写完成,要求字迹工整、卷面干净。 一、填空题(每空1分,共20分) 1、冯·诺依曼型计算机采用“____二进制____”代码表示数据和指令,并提出了“______冯·诺依曼____”的概念,它奠定了现代电子计算机的基础。 2、计算机由五个基本部分组成,它们是__控制器____、__运算器____、__输入设备____、______和____输出设备__。 3、美国标准信息交换代码,简称ASCII码,它是7位二进制编码,因此,它可以表示 __128__种字符。已知字符“A”的 ASCII 码用二进制表示为1000001,那么字符“E”的?ASCII码是__1000101__。 4、计算机的存储器是存放数据和程序的设备,可分为主存储器和辅助存储器两大类,其中___主存储器___存储直接与CPU交换的信息,___辅助存储器___存放当前不立即使用的信息。 5、计算机的字长是指它能够__并行处理____的二进制代码的位数。通常,计算机的字长都为__字节__的整数倍。 6、将辅助存储器、___输入设备___和__输出设备__统称为计算机的外部设备,简称外设。 7、计算机的可靠性用___平均无故障时间__来表示,它是指系统在两次故障间能正常工作的时间的平均值。 8、折半查找又称二分法查找,适用于对__有序表___进行查找。

《计算机导论》模拟试题及参考答案1

计算机导论模拟试题 一、单项选择题(每题2分,共30分) 1.采用晶体管作为电子元器件的计算机属于()。 A. 第一代计算机 B. 第二代计算机 C. 第三代计算机 D. 第四代计算机 2.冯诺伊曼的主要贡献是( )。 A. 发明了微型计算机 B. 提出了存储程序概念 C. 设计了第一台计算机 D. 设计了高级程序设计语言 3.计算机中,运算器的主要功能是进行()。 A.逻辑运算 B.算术运算 C.算术运算和逻辑运算 D.复杂方程的求解 4.计算机病毒是一种()。 A.特殊的计算机部件 B.特殊的生物病毒 C.游戏软件 D.人为编制的特殊的计算机程序 5.随机存储器简称为( )。 A.CMOS B. RAM C. XMS D. ROM 6.计算机一旦断电后( )中的信息会丢失。 A. 硬盘 B. 软盘 C. RAM D. ROM 7.CPU指的是计算机的( )部分。 A. 运算器 B. 控制器 C. 运算器和控制器 D. 运算器、控制器和内存 8.系统软件中最重要的是( )。 A. 操作系统 B. 语言处理程序 C. 工具软件 D. 数据库管理系统 9.编译程序和解释程序都是( )。 A. 目标程序 B. 语言编辑程序 C. 语言连接程序 D. 语言处理程序 授课:XXX

10.硬盘存储器的特点是()。 A.由于全封闭,耐震性好,不易损坏 B.耐震性差,搬运时注意保护 C.没有易碎件,在搬运时不像显示器那样要注意保护 D.不用时应套入纸套,防止灰尘进入 11.下列描述中正确的是()。 A.激光打印机是击打式打印机 B.击打式打印机价格最低 C.喷墨打印机不可以打印彩色效果 D.计算机的运算速度可用每秒执行指令的条数来表示 12.Windows2000是一个()操作系统。 A.单用户单任务 B.单用户多任务 C.多用户多任务 D.多用户单任务 13.WINDOWS 2000的“回收站”是( ) A.内存中的一块区域 B.硬盘上的一块区域 C.软盘上的一块区域 D.高速缓存上的一块区域 14.计算机网络的特点是( )。 A.运算速度快 B.精度高 C.资源共享 D.内存容量大 15.下列选项中( )是调制解调器的作用 A.将计算机信号转变为音频信号 B.将音频信号转变为计算机信号 C.预防病毒进入系统 D.计算机信号与音频信号相互转换 二、简答题(每小题5分,共15分) 1.从计算机的发展过程来看,大致可分为那几个阶段,各阶段的主要特征是什么? 2. 显示器的分辨率与视频卡的关系是什么? 3.简述OSI模型中网络层、数据链路层、物理层各起什么作用。 授课:XXX

计算机导论习题答案

习题答案 P20 习题1 一、简单题: 2、计算机的发展主要经历了四个时代,各有什么特征: 从1946年到1959年这段时期我们称之为“电子管计算机时代”,使用电子管为主要元器件。 从1960年到1964年这段时期被称之为“晶体管计算机时代”,使用晶体作为主要元器件。 从1965年到1970年被称之为“中小规模集成电路计算机时代”,使用中小规模集成电路为主要元器件。 从1971年到现在被称之为“大规模集成电路计算机时代”,使用大规模及超大规模集成电路为主要元器件。 4、计算机有哪些特点:虽然各种类型的计算机在规模、性能、用途和结构等方面有所不同,但他们都具有以下特点:(1) 运算速度快(2) 计算精度高(3) 存储容量大(4) 计算自动化(5) 连接与网络化(6) 通用性强。 5、计算机有(哪几种)五大类:(1)巨型计算机(2)大型计算机(3)服务器(4)个人计算机(5)嵌入式计算机 P101习题3 三、简答题: 1、简述程序在计算机中的执行过程:①任务启动时,执行该任务的程序和数据从外存成批送到内存②CPU从内存中读取该程序的指令及相关的数据③CPU逐条执行指令,按指令要求完成对数据的运算和处理④将指令的运算处理结果送回内存保存⑤任务完成后,需要时将处理得到的全部结果成批传送到外存以长久保存。

3、常用的存储器种类有哪些?:常用的微型计算机的存储器有磁芯存储器和半导体存储器,微型机的内存都采用半导体存储器。半导体存储器从使用功能上分为随机存储器(简称 RAM)/只读存储器(,简称为ROM)和FLASH存储器(又称闪存)。 8、CPU的主要性能指标有哪些: 1、主频、外频和倍频 2、前段总线频率 3、位和字长 4、缓存 5、内核个数 6、多线程和超线程 P139 习题4三、简答题: 1、程序与软件的区别:软件是结果,程序是过程,也就是说软件是包含程序的有机集合体,程序是软件的必要元素。任何软件都有可运行的程序,至少一个。软件是程序以及开发、使用和维护所需要的所有文档的总称,而程序是软件的一部分。 2、简述操作系统的启动过程:加电启动计算机工作后,CPU首先执行主板上BIOS中的自检程序,测试计算机中主要部件的工作状态是否正常。若无异常情况,CPU 将继续执行BIOS中的引导装人程序,按照CMOS中预先设定的顺序启动,将其主引导记录读到内存,然后将控制权交给其中的操作系统引导程序,由引导程序继续将硬盘中的操作系统装入内存。操作系统装入成功后,整个计算机就处于操作系统的控制之下。 3、程序在计算机里面的执行过程:运行 -翻译 -计算处理-翻译-返回结果 P183 习题5 三、简答题:

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