计算机专业英语(2008影印版)课后习题单选题题目及答案
计算机专业英语2008影印版unit_3

home software家庭软件 home suite家庭套装软件 Icons图标 integrated package集成组件 Label标签 master slide母板 Menu菜单 menu bar菜单栏 numbered list编号列表 numeric entry数值型输入 personal software个人软件 personal suite个人套装软件 Pointer指针 presentation graphic图形演示文稿 productivity suite生产力套装软件
Application software, in turn, can be divided into two categories. One category, Basic applications, is the focus of this chapter. These programs are widely used in nearly every discipline and occupation. They include word processors, spreadsheets, database management systems, and presentation graphics. 那么接下来应用软件,也可以被划分为两大类型。第一类 是基本应用软件,也是这一章的重点。这些软件被广泛地 适用于几乎任何学科和职业。它们包括文字处理器,电子 制表软件,数据库管理系统以及演示图片。
Introduction
Not long ago, trained specialists were required to perform many of the operations you can now do with a microcomputer. 不久前,执行许多工作都需要训练有素的专家,现在却可以用一个微 型计算机来完成。 Secretaries used typewriters to create business correspondence. Market analysts used calculators to project sales. Graphic artists created designs by hand. Data processing clerks created electronic files to be stored on large computers. Now you can do all these tasks—and many others—with a microcomputer and the appropriate application software. 秘书用打字机来创建商业信函。市场分析师使用计算器来做项目销售。 图形艺术家用手工创建设计。数据处理职员创建的电子文件需要存储在 大型计算机上。现在你可以通过微机和适当的应用软件做所有这些任务 -以及更多。
计算机专业英语2008影印版-复习资料

Unit 11.Operating systems are programs that coordinate computer resources,provide an interfacebetween user and the computer,and run applications. 协调计算机资源,用户和计算机之间提供一个接口,运行应用程序。
2.Device drivers are specialized programs designed to allow particular input or output devicesto communicate with the rest of the computer system. 设备驱动程序是专门的程序设计为允许特定的输入或输出设备与计算机系统的其余部分。
3.System unit:the system unit is a container that houses most of the electronic components thatmake up a computer system. 系统单元:系统单元是一个容器,房子的大部分电子元件组成一个计算机系统。
4.Optical discs use laser technology and have the greatest capacity光盘使用激光技术和具有最大的能力5.*Connectivity is the capability of your microcomputer to share information with othercomputers连接是微机的功能与其他计算机共享信息6.Procedures are rules or guidelines to follow when using software,hardware,and date.they aretypically documented in manuals written by computer professionals. 程序规则或指导方针在使用软件,硬件,和日期。
《计算机专业英语》习题参考答案

《计算机专业英语》习题参考答案Lesson 1I.1. Operating System2. Fetch-evaluate-execute3. Front-side bus4. Dual-core processor5. Basic Input/Output System(BIOS)II.1. 指令是特定各式的二进制数列,它们对于每台机器都是唯一的。
2. CPU是中央处理单元的简称,每个字母分开发音。
3. 大多数计算在中央处理器中进行。
4. 双核是指一个处理器上有两个完整运算内核的CPU。
5. 处理器:是微处理器或CPU的缩写。
6. 集成电路:即芯片,是由半导体材料制成的一种电子设备。
III.1. F2. T3. TIV.1.ALU, CU, Register2.memory3.processor4.the CPULesson 2I.1.Static Random Access Memory(SRAM)2.Dynamic Random Access Memory(DRAM)3.Virtual Memory4.Physical Memory5.Level 1 Cache6.Level 2 Cache7.HDD access speedII.1.动态随机存储器之所以称为“动态”是因为它每秒钟被刷新数千次。
2.RAM:是计算机中存储操作系统、应用程序和当前正是用数据的地方。
3.ROM由计算机中一小块长寿命电池供电。
4.RAM缓存是由高速静态随机存储器构成的存储器。
III.1. F2. F3. F4. TIV.1. non-volatile2. compiler3. volatile4. DRAMLesson 3I.1. Motherboard2. PC Case3. Hard Disk Drive(HDD)4. Optical mouse5. RAM6. Mobile DiskII.1.PC是有很多组件构成的一个系统。
《计算机专业英语》答案

《计算机专业英语》参考答案Chapter 1 Computer ScienceText AExercises2.(a)out (b)with (c)in (d)in (e)in (f)with (g)for (h)aboutText BExercises3.(a)to (b)now (c)in (d)with (e)out (f)uponText CExercises1.(1)analyze, analytic (2)complicate, complex (3) collaborate, collaborative (4)vary, various (5)introduce, introductory (6)base, basic (7)create, creative (8)differ, different (9)free, freeChapter 2 Discrete Mathematics for Computer ScienceText AExercises1.C48 =70,C38 =562.6*25=1923.if a=0then i f b=0then return(0)else return(1+Add(0,b-1))else if b=0then return(1+Add(a-1,0))else return(1+1+Add(a-1,b-1))4.if Rest(S)=Øthen return(First(S))else if (First(S)<Largest(Rest(S)))return(Largest(Rest(S)))else Return(First(S))5.Now we can define function Concat(S1,S2) as:if(Length(S1)=0)then return(S2)else return(Cons(First(S1), Concat(Rest(S1),S2)))Text BExercises1.[Proof]:According to given conditions, we knowa n = a n-1 + 2na n-1 = a n-2 + 2(n-1)……a2 = a1 + 2*2a1 = 3sum all items in left side, and delete same items in the right side of equations, we can result thata n = 3 + 2(2+3+……+n-1+n)=1+n(n+1)=n2+n+1that is what we conclude.Text CExercises1.(1)depend, dependent (2) correspond, correspondent (3)grow, grown (4)solve, solvent (5) relate, relational (6)recur, recursive (7) validate, valid (8) conclude, conclusive (9) justify, justificative2.(1)connect-disconnect (2)possible-impossible (3)regular-irregular (4)measure-countermeasureChapter 3 Algorithms in the Real WorldText AExercises2. finite, solving, processing, effective, eventually, next, randomly3. by, in, on, in, on, from4. the algorithm can terminate.It is correct for sorting.If the length of array A is n, the time for computation is O(n2)Its memory cost n units.As n increase, its computational cost will become large.Text BExercises3.(1)—(e), (2)—(c), (3)—(d), (4)—(a), (5)—(b)4. inconvenience, incapacity, independence5.We couldn’t have lived without water.Chapter 4 Dictation SystemText AExercises2. forefront, institution, turnaround, boost, embrace, portfolio, handle, portable, issue, stringent3. off, on, from, into, in, to, over, to, on, toText BExercises2.(1)—(h), (2)—(g), (3)—(a), (4)—(j), (5)—(e), (6)—(f), (7)—(b), (8)—(i), (9)—(c), (10)—(d) Text CExercises3. organize,organizationaldictate,dictativeproduce,productiveadministrate,administrativetranscribe, transcriptivesimplify,simplicialimplement,implementativeprotect,protectiveChapter 10 Introduction to ComputersText AⅠ.1. hardware, software2. a Central Processing Unit (CPU), memory, an input device, an output device3. Input devices, Output devices4. An input device5. application software, system softwareⅡ.1. hardware 6. integrated circuit2. software 7. secondary storage3. a Central Processing Unit (CPU) 8. computer system4. application software 9. main memory5. operating system 10. scannerText BⅠ.1. The WYSIWYG2. cell3. finding, fixing4. Formulas5. headings across the top6. character, word, phraseⅡ.1. true 6. false2. true 7. false3. true 8. true4. true 9. true5. false 10. falseText C当使用计算机的时候,你必须知道与它“交流”。
计算机专业英语试题及答案(B卷)

计算机专业英语试题及答案(B卷)湖北职业技术学院2008-2009学年度第一学期期末考核试卷考核课程:《计算机专业英语》考试类型:理论考试方式:闭卷笔试学生所在院系:信息技术学院年级: 2007级试卷: B姓名:班级:学号:Ⅰ. Translate the following phrases into English(将下列短语翻译成英语)(10%)1. 机器语言 ( )2. 随机存取存储器 ( )3. 汇编语言指令 ( )4. 软件产品 ( )5. 取指—译码—执行( )6. 面向服务的 ( )7. 电子媒介 ( )8. 感染模块 ( )9. 分辨率 ( )10. 硬件维护 ( )Ⅱ. Match the following words and expressions in the leftcolumn with those similar in meaning in the right)(10%)1. output devices a. 操作系统2. silicon b. 扩展存储器3. expanded memory c. 硅4. database administrator d. 输出设备5. operating system e. 汇编语言6. assembly language f. 数据库管理员7. gateway g. 数字图像处理8. laser technology h. 网关9. digital image processing i. 作业队列10.job queue j. 激光技术1. () 6. ()2. () 7. ()3. () 8. ()4. () 9. ()5. () 10.()Ⅲ. Fill in the blanks with the corresponding English abbreviations.(根据汉语写出相应的英语缩写) (10%)1. 广域网 _________ 6. 网络服务提供商 _________2. 超文本传输协议_________ 7. 可扩展标记语言_________3. 计算机辅助设计_________ 8. 基本输入输出系统_________4. 万维网联盟_________ 9. 信息技术_________5. 数据库管理系统_________ 10. 万维网__________Ⅳ. For each of the following blanks, four choices are given. Choose the most appropriate one (从下面给出的四个选项中选择最恰当的答案)(15 %)1. _________ refers to the number of individual dots of color, known as pixels, contained on a display.A. Dot PitchB. ResolutionC. Refresh RateD. Scan Style2. A processor is composed of two functional units, they are _________.A. an arithmetic/logic unit and a storage unitB. a control unit and some registersC. a control unit and an arithmetic/logic unitD. some registers an arithmetic/logic unit3. _________ is a storage location inside the processor.A. A registerB. ALUC. ControlD. Memory4. A periodic refresh is needed to restore the information for the _________ .A. SRAMB. DRAMC. EPROMD. EEPROM5. The raw data are stored on the disk using the _________ .A. data dictionaryB. file systemC. DBMSD. DBA6. The _______ serves as an interface between hardware and software.A. systemB. application programC. operating systemD. control unit7. Most operating system have a standard set of _________ to handle the processing of all input and output instructions.A. spreadsheetB. control instructionsC. I/O operationD. data table8. _________ uses commands that are easier for programmers to understand than are machine language commands.A. Assembly languageB. High-level languageC. C languageD. C++ language9. When a _________ is used, all the devices in the network are connected to a single cable.A. bus networkB. ring networkC. star networkD. network10. Two common applications of LANs are _________ resource sharing and information resource sharing.A. softwareB. computerC. networkD. hardware11. With Internet Explorer and an Internet connection, you can search for andview information on the ________.A. Active DesktopB. ProgramsC. Phone DialerD. World Wide Web12. To open Internet Explorer, just click Start, point to _________ , and then click Internet Explorer.A. ProgramsB. ViewC. LayoutD. Control Panel13. E-commerce does business through _________.A. face-to-face meetingB. computerC. wire-photoD. Internet and EDI14. Every transaction in electronic commerce includes information flow, commercial flow, _______ and material flow.A. data flowB. currency flowC. merchandise flowD. file flow15. Many companies use _________ to train their employees.A. technologyB. entertainmentC. multimedia applicationsD. animation(一) Fill in the blanks with suitable words or expressions from the list given below, and change the form where necessary (从下面所列词语中选择合适的词语, 以其适当的形式填空)(5%)requirements maintain disciplinedcoding modifySoftware Engineering, which means the application of engineering to software, is a method to develop, operate and ________ software. That is, the development of software is on a systematic, _________, quantitive basis. Before starting the development of software, you have to systematically approach the problem. You have to understand the _________ (what the software is supposed to do), carry out the design, do the _________, carry out a rigorous testing and if the software is as per the requirements, release the software to the customer. Subsequently, if the customer wants some changes--refinements or enhancements then the software has to be _________. Passage A The central processing unit (CPU) is the heart of the computer systems. Among other things, its configuration determines whether a computer is fast or slow in relation to other computers. The CPU is the most complex computer system component, responsible for directing most of the computer system activities based on the instructions provided. As one computer generation has evolved to the next, the physical size of the CPU has often become smaller and smaller, which its speed and capacity have increased tremendously. Indeed, these changes have resulted inmicro-Computers that are small enough to fit on your desk and your lap.The CPU comprises the control unit and the arithmetic/logic unit (ALU).The control unit is responsible for directing and coordinating most of the computer systems activities. It determines the movement of electronic signalsbetween main memory and the arithmetic/logic unit, as well as the control signals between the CPU and input/output devices.The ALU performs all the arithmetic and logical(comparison) functions—that is,it adds, subtracts, multiplies, divides, and does comparison. These comparisons, which are basically “less than”, “greater than”, and “equal to”, can be combined into several common expressions, such as “greater than or equal to”. The objective of most instructions that use comparisons is to determine which instruction should be executed next.(二) Tell whether the following statements are true(T) or false(F) according to the passage A(根据上文的内容判断下列句子的正误)(10%)1. With the development of computer, the physical size of the CPU has often become bigger and bigger. ( )2. The movement of electronic signals between main memory and the ALU as well as the control signal between the CPU and input/output devices are controlled by the control unit of the CPU. ( )3. The CPU comprises the control unit and memory. ( )4. The control unit performs all the arithmetic and logical functions. ( )5. The central processing unit (CPU) is the heart of the computer systems. ( ) Passage BA computer virus is a computer program that is created to make and spread copies of itself. The program may however also be designed to have other effects on the systems it infects, ranging from the annoying to the disastrous.Virus attacks are growing rapidly these days. According to Business Week, the 76,404 attacks reported in the first half of 2003 nearly match previous year's total number. As new antivirus tools are more powerful than before, the virus writers are getting a lot smarter with newer and creative ways to attack network systems. Let's first examine some common virus types:Basic Virus a piece of software code that is developed to attack computers and network systems via email or Internet connections. It quickly replicates itself and gradually attaches to files, programs or the hard drive.Trojan Horses - This is a program that doesn't replicate when entering a systembut can be effectively used to open 'back doors.' Trojan Horses allow hackers to take control over a particular system or to steal very important data.Worm - this type of virus is able to spread itself automatically over the network from one computer to the next. During a worm attack, users' computers get infected without even having to click open email attachment or any program, etc.Since it is very difficult to avoid the virus, your best defense is a powerful antivirus program. In order to fight with such viruses, the software vendors should focus on making their products more robust. This may ask for a trade-off between user-friendliness and security. In specific cases it may require line-by-line inspection, code retooling and even systems automation to defend the installed programs.(三) Choose the best answer according to the passage B(根据上文的内容选择正确的答案)(10%)1.A computer virus is a computer program that is created to make and spread _________of itself.A. programsB. virusC. copiesD. files 2.Worm spread itself except by_________. .A. networkB. E-mailC. programD. hardware 3.Antivirus program can scan and_________ virus.A. cleanB. produceC. replicateD. make 4.Trojan Horses_________ .A.quickly replicate itself and gradually attach to files, programs or the harddrive. B.infect the computer without even having to click open email attachment or any program.C.allow hackers to take control over a particular system or to steal very important data.D.avoid the virus to attack computer.5.According to Business Week, the_________ attacks reported in the first half of 2003 nearly match previous year's total number .A. 86,404B. 76,404C. 56,354D. 34,876 Passage CIn order to solve a computational problem, its solution must be specified in terms of a sequence of computational steps, each of which may be performed by a human or a digital computer. If you want to solve the computational problem with a computer, you should learn how to program. The task of developing programs for the solution of computational problems is referred to as programming. Computer programming is the process of planning and creating a sequence of steps for a computer to follow. In general, this process will help us resolve a problem, which is either too tedious or difficult to work out otherwise. So programming is breaking a task down into small steps.Programming is sometimes contrasted with coding. Coding generally refers to the writing of programs for given program specification, while programming includes the task of preparing the program specification as well as that of writing the program. The text of a program is sometimes referred to as code, and lines ofprogram text are referred to as lines of code, especially in the case of machine-language programs. The term coder is used to describe a person engaged exclusively in implementing program specifications prepared by others.What's actually involved in programming - the actual process of writing programs?Here's a quick overview of the process:· Write a program.· Compile the program.· Run the program.· Debug the program.· Repeat the whole process until the program is finished.(四) Choose the best answer according to the passage C(根据上文的内容选择正确的答案)(10%)1.If you want to solve the computational problem with a computer, you should learn how to_________.A. calculateB. programC. addD. subtract 2. Computer programming is the process of planning and creating a sequence of _________ for a computer to follow.A. stepsB. processC. linesD. graphics3. The term coder is used to describe _________.A. machineB. computerC. keyboardD. person4. In order to solve a computational problem, you can let a person or a _________to do it.A. machineB. computerC. keyboardD. mouse5. Which of the following is not the stage of programming? _________.A. Write a program.B. Debug the program.C. Print the program.D. Compile the program.(一) Translate the following sentences into Chinese.(将下列句子翻译成汉语) (12%)1.SQL Server is designed to allow thousands of users to access the database at the same time and is a true client/server database system.2.An application software is any program designed to perform a specific function directly for the user or, in some cases, for another application program.3.A small network may only connect two computers inside a home to share a single printer and Internet connection4.There is free firewall software available that can run on your computer and provide a good level of protection to your network.(二) Translate the following paragraph into Chinese.(将下段文章翻译成汉语)(8%)Input Devices. Computer systems use many devices for input purpose. Some Input Devices allow direct human/machine communication, while some first require data to be recorded on an input medium such as magnetic material. Devices that read data magnetically recorded on specially coated plastic tapes or flexible or floppy plastic disks are popular. The keyboard of a workstation connected directly to or online to a computer is an example of a direct input device. Additional direct input devices include the mouse, input pen, touch screen, and microphone.Regardless of the type of device used, all are components for interpretation and communication between people and computer systems.命题教师游彦教研室主任签字【第页共页】湖北职业技术学院2008-2009学年度第一学期期末考核试卷参考答案及评分标准考核课程:计算机英语考试类型:理论考试方式:闭卷笔试学生所在院系:信息技术学院年级: 2007 试卷: B执笔人:要求:明确标注每小题或每步骤得分点要求:明确标注每小题或每步骤得分点Ⅰ. Translate the following phrases into English(将下列短语翻译成英语)(10%) ( 本题共10分, 每小题1分)1. machine language2. Random Access Memory3. assembly language instruction4. software product5. fetch-decode-execute6. service-oriented7. electronic media8. infecting module9. resolution10. hardware maintenanceⅡ. Match the following words and expressions in the left column with those similar in meaning in the right column(将左列的词汇与右列相应的汉语匹配)(10%)( 本题共10分, 每小题1分)1. ( d ) 6. ( e )2. ( c ) 7. ( h )3. ( b ) 8. ( j )4. ( f ) 9. ( g )5. ( a ) 10.( i )Ⅲ. Fill in the blanks with the corresponding English abbreviations.(根据汉语写出相应的英语缩写) (10%)1. WAN 6. ISP2. HTTP 7. XML3. CAD 8. BIOS4. W3C 9. IT5. DBMS 10.Ⅳ. For each of the following blanks, four choices are given. Choose the most appropriate one (从下面给出的四个选项中选择最恰当的答案)(15%)( 本题共15分, 每小题1分)1. B2. C3. A4. B5. B6. C7. B8.A9. A 10. D 11. D 12. A 13 .D 14. B 15. CⅤ. Reading comprehension(阅读理解)(35%)(一) Fill in the blanks with suitable words or expressions from the list given below, and change the form where necessary (从下面所列词语中选择合适的词语, 以其适当的形式填空)(5%)( 本题共5分, 每空1分)maintain disciplined requirements coding modified(二) Tell whether the following statements are true(T) or false(F) according to the passage A(根据上文的内容判断下列句子的正误) (10%)( 本题共10分, 每小题2分)1. ( F )2. ( T )3. ( F )4. ( F )5. ( T )(三) Choose the best answer according to the passage B.(根据上文的内容选择正确的答案)(10%)( 本题共10分, 每小题2分)1. C2. A3. A4. C5. B(四) Choose the best answer according to the passage C(根据上文的内容选择正确的答案)(10%)( 本题共10分, 每小题2分)1. B2. A3. D4. B5. CⅥ. Translation.翻译(20%)(一) Translate the following sentences into Chinese(将下列句子翻译成汉语)(12%)1. SQL服务器用于允许成前上万的用户同时访问数据库,是一个真正的客户端/服务器端的数据库系统。
计算机专业英语影印版(Computing Essentials 2008)课后答案大全——第六单元Chapter 6 The System Unit

Crossword Puzzle Answers:Open Ended Questions:1.Describe the four basic types of system units.• Desktop system units contain the system’s electronic components and selected secondarystorage devices. Input and output devices are located outside the system unit.• Notebook system units are portable and much smaller and contain the electronic components, selected secondary storage devices, and input devices• Tablet PC system units are highly portable devices that support the use of a stylus or pen toinput commands and data.• Handheld computer system units are the smallest and contain an entire computer system2.Describe the two basic components of the CPU.• Control unit: tells the rest of the computer system how to carry out a program’s instructions. It directs the movement of electronic signals between memory, which temporarily holds data,instructions, and processed information, and the arithmetic-logic unit. It also directs these control signals between the CPU and input and output devices.• Arithmetic-logic unit: The arithmetic-logic unit performs two types of operations: arithmetic and logical. Arithmetic operations are, as you might expect, the fundamental math operations: addition, subtraction, multiplication, and division. Logical operations consist of comparisons. 3.What are the differences and similarities between the three types of memory?Random-access memory (RAM) chips hold the program and data that the CPU is presently processing. RAM is called temporary or volatile storage because everything in most types of RAM is lost as soon as the microcomputer is turned off.Read-only memory (ROM) chips have programs built into them at the factory. Unlike RAM chips, ROM chips are not volatile and cannot be changed by the user.C omplementary metal-oxide semiconductor (CMOS) chips provide flexibility andexpandability for a computer system. They contain essential information that is required every time the computer system is turned on.4.Identify five expansion cards and describe the function of each.• Sound cards: These cards accept audio input from a microphone and convert it into a form that can be processed by the computer. Also, these cards convert internal electronic signals to audio signals so they can be heard from external speakers.• Modem cards: These cards allow distant computers to communicate with one another byconverting electronic signals from within the system unit into electronic signals that can travel over telephone lines and other types of connections.• Network interface cards (NIC): These cards are used to connect a computer to one or more other computers. The network adapter card typically connects the system unit to a cable that connects to the network.• TV tuner cards: TV tuner cards contain a TV tuner and a video converter that changes the TV signal into one that can be displayed on your monitor.• Video cards: These cards connect the system board to the computer’s monitor, and they convert the internal electronic signals to video signals so they can be displayed on the monitor.5.Identify and describe four standard ports and three specialized ports.The four standard ports are:• Serial ports are used for a wide variety of purposes. They are often used to connect a mouse, keyboard, modem, and many other devices to the system unit. Serial ports send data one bit at a time and are very good for sending information over a long distance.• Parallel ports are used to connect external devices that need to send or receive a lot of data over a short distance. These ports typically send eight bits of data simultaneously across eight parallel wires. Parallel ports are mostly used to connect printers to the system unit.• Universal serial bus (USB) ports are gradually replacing serial and parallel ports. They are faster, and one USB port can be used to connect several devices to the system unit.• FireWire ports are as fast as USB 2.0 ports and provide connections to specialized FireWire devices such as camcorders.The three specialized ports are:• Musical instrument digital interface (MIDI) ports are a special type of serial port for connecting musical instruments to a sound card. The sound card converts the music into a series of digital instructions. These instructions can be processed immediately toreproduce the music or saved to a file for later processing.• Small computer system interface (SCSI) ports are a special type of highspeed parallel port for connecting a series of input and/or output SCSI devices to a single SCSI controller card. This arrangement allows several devices to communicate with the system unit through a single slot on the system board.• Infrared Data Association (IrDA) provide a wireless mechanism for transferring data between devices. Instead of cables, the IrDA ports from each device are directly aligned and infrared light waves are used to transmit data. One of the most common applications is to transfer data from either a handheld or notebook computer to a desktop computer.1.Writing About Technology exercise #1 Processor Serial Numbers has the studentsexplore the issue of the microprocessors containing unique serial numbers that can beaccessed by web sites to track individuals buying habits, and how it relates to personalprivacy.Web Tools1.Applying Technology exercise #2 Desktop and Notebook Computers has the students usethe Web to research different desktop and notebook options and decide which they would purchase.2.Applying Technology exercise #3 Custom System Units has the students configure acomputer online.3.Expanding Your Knowledge exercise #3 Binary Numbers has the students use the binaryconversion tool on the website to translate binary numbers to decimal and ASCII equivalents.Software Tools1.Applying Technology exercise #1 TV Tuner Cards and Video Clips has the studentsexplore the different functions of TV Tuner cards.2.Expanding Your Knowledge exercise #1 How TV Tuner Cards Work has the studentexplore the functionality and configurations of tuner cards.3.Expanding Your Knowledge exercise #2 How Virtual Memory Works explores thefunctionality of virtual memory and why operating systems employ it.Writing Skills1.Writing About Technology exercise #2 Smart Cards has the students explore the usage ofSmart Cards and how it relates to privacy issues。
计算机专业英语(2008影印版)课后习题Multiple choice题目,答案及翻译

1、A common term that describes the combination of traditional computer and communication technologies isb. information technology一个描述了传统的计算机和通信技术结合的常见的术语B.信息技术2、Procedures are typically documented in manuals written byb. computer specialists程序一般是在手册撰写记录的B.计算机专家3、Which of the following is an example of connectivity?a. Internet下列哪一项是连接的一个例子吗?A.互联网4、Windows XP, windows Vista, and Macintosh OS X are all examples ofb. operating systems Windows XP,Windows Vista,和Macintosh OS X都是例子B.操作系统5、Because of their size and cost, these computers are relatively rare.d. supercomputers由于它们的尺寸和成本,这些电脑是比较少见的。
D.超级计算机6、The system component that controls and manipulates data in order to produce information is called thed. microprocessor系统组成,控制和操纵数据来产生信息称为D.微处理器7、A system component that translates data and programs that humans can understand into a form that the computer can process is called a(n)c. output device一个系统组件,将人类可以理解成计算机能够处理的形式的数据和程序被称为C.输出设备8、A CD is an example of a(n)c. optical disc CD是一个例子(N)C.光盘9、If you want to communicate a message or persuade other people, you would typically use this type of software.d. presentation如果你想传达信息或说服别人,你通常会使用这种类型的软件。
计算机专业英语(2008影印版)课后习题答案(包括crossword_puzzle的句子翻译)

Computing Essentials 2008课后练习题答案详解Chapter 1: Information Technology, The Internet, and Y ouCrossword Puzzle Answers: (p22)Across1 、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可以用手写输入的笔记本电脑。
平板电脑DownNum. Clue Answer2 、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 允许输入和输出设备通信的专业程序。
- 1、下载文档前请自行甄别文档内容的完整性,平台不提供额外的编辑、内容补充、找答案等附加服务。
- 2、"仅部分预览"的文档,不可在线预览部分如存在完整性等问题,可反馈申请退款(可完整预览的文档不适用该条件!)。
- 3、如文档侵犯您的权益,请联系客服反馈,我们会尽快为您处理(人工客服工作时间:9:00-18:30)。
CHAPTER 1A common term that describes the combination of traditional computer and communication technologies isb. information technologyProcedures are typically documented in manuals written byb. computer specialistsWhich of the following is an example of connectivity?a. InternetWindows XP, windows Vista, and Macintosh OS X are all examples ofb. browsersBecause of their size and cost, these computers are relatively rare.d. supercomputersThe system component that controls and manipulates data in order to produce information is called thed. microprocessorA system component that translates data and programs that humans can understand into a form that the computer can process is called a(n)c. output deviceA CD is an example of a(n)c. optical discIf you want to communicate a message or persuade other people, you would typically use this type of software.d. presentationMany experts are predicting that this revolution is expected to dramatically affect the way we communicate and use computer technology.d. wirelessCHAPTER 2The Internet was launched in 1969 when the United States funded a project that developed a national computer network calledd. ARPANET__ is the most popular Internet activity.a. communicationA(n) __ program provides access to Web resources.c. ISPRules for exchanging data between computers are calledc. protocolsThe last part of the domain name following the dot (.) is the top __ domain.a. level__ are widely used to add interest and activity to a Web site by presenting animation, displaying graphics, providing interactive games, and more.a. AppletsUnwanted and unsolicited e-mails are called __.a. spamPrograms that automatically submit your search request to several search engines simultaneously are called __.a. metasearch engines__ cash is the Internet’s equivalent to traditional cash.d. DigitalThese programs allow parents as well as organizations to block out selected sites and set time limits on Internet access.b. filtersCHAPTER 3This type of software works with end users , application software, and computer hardware t handle the majority of technical details.d. system software__ are narrowly focused on specific disciplines and occupations.c. Specialized applicationsThe primary purpose of this type of software is to create text-based document.b. word processingOrganizations create newsletters, manuals, and contracts are all examples ofd. documentsNumbers and formulas entered in a cell are calleda. numeric entriesThe acronym DBMS stands for what?b. database management systemDatabase __ are primarily used to enter new records and to make changes to exciting records. c. queriesA file that includes predefined settings that can be used to create many common types of presentations is called ac. templateA(n) __ is a single program that provides the functionality of a word processor, spreadsheet, database manager, and more.b. integrated packageCHAPTER 4Graphic programs widely used in the graphic arts profession include __.a. desktop publishing programs, image editors, and illustration programsImage editors are used for creating and editing __.a. bitmap imaginePrograms used to create or modify vector images are called __.a. illustration programsPages in a multimedia presentation typically provide __ or connections to related information. b. linksWhen determining the overall objective of a multimedia project, the resources required, and the people who will work on the project, you are in __ step.a. planningMany individuals create their own personal sites called Web logs, orb. blogsA special effect in which one image seems to melt into another is referred to asc. morphingUsers can interact in a fully immersed 3-D environment using __.b. virtual realityFuzzy logic isa. used to respond to questions in a humanlike wayRobots used in automobile plants would be classified asb. industrial robotsCHAPTER 5Software that allows your computer to interact with the user, applications, and hardware is called c. system softwareIn order for a computer to understand a program, it must be converted into machine language by a(n) __.d. language translator“GUI” stands forc. graphical user interfaceTo connect several computer together, one generally needs to be running a(n) __ operating system.a. network__ is the most widely used operating system.a. WindowsThis operating system is most popular with graphic designers and those who work in multimedia c. Mac OSThis operating system was originally designed to run on minicomputers used in a network environment.b. UNIXThese programs guard your computer against malicious programs that may invade your computer system.b. antivirus programA concentric ring on a hard disk is referred to as aa. trackEvery time the computer system is started ,the operating system loads these into memory.c. device driversCHAPTER 6The container that house most of the electronic components that make up a computer system is known as thed. system unitThe smallest unit in a digital system is ab. bitThe communication medium for the entire computer system is thec. motherboardThese provide expansion capability for a computer system.b. slotsThe __tells the rest of the computer how to carry out a program’s instructions.b. control unitA 32-bit word computer can access __ bytes at a time.a. 4These chips are specifically designed to handle the processing requirements ralated to display and manipulating 3-D image.a. graphics coprocessorsThis type of memory improves processing by acting as a temporary high-speed holding area between the memory and the CPU.c. cache memory__ is a set of hardware and software standards.b. Plug and Play__ ports connect special types of music instruments to sound cardsd. MIDICHAPTER 7Hardware used to translate words, sounds, images, and actions that people understand into a form that the system unit can process is known asa. input devicesThis type of keyboard provides the greatest amount of flexibility and convenience by eliminating cables connected to the system unit.b. wireless keyboardThe mouse __ usually appears in the shape of an arrow.a. pointerThis type of pointing device is located in the middle of the keyboard.b. pointing stickThis type of pointing device has crisscrossed invisible beams of infrared light that are protected with a clear plastic outer layer.d. touch screenA universal product code is read by what type of scanner?a. bar code__ input devices convert sounds into a form that can be processed by the system unitd. AudioThe most important characteristic of a monitor is itsc. clarityWhich of the following printer types requires special paper?d. thermal__ is a specialized input and output device for receiving and sending voice communication.b. Internet telephoneCHAPTER 8Primary storage is referred to as __storage.a. volatileThe amount of time required by a storage device to retrieve data and programs is itsa. access speedHow tightly the bits can be packed next to one another on a disk is referred to anc. densityThick, rigid metal platters that are capable of storing and retrieving information at a high rate of speed are known asa. hard disksThe data on an optical disc is represented by flat areas called __ on the disc surface.c. landsA CD-RAM disca. cannot be erased and rewrittenDVD stands forc. digital versatile discThis type of storage device has no moving parts.d. solid stateTape is described as using this type of accessd. sequentialSpecialized high-capacity secondary storage device designed to meet organizational demands for data.c. mass storageCHAPTER 9Connectivity is a concept related toc. using computer networks to link people and resourcesThe transmission medium that carries the message is referred to as theb. communication channelBluetooth is a type of radio wave information transmission system that is good for abouta. 30 feetSpecial high-speed lines used by large corporations to support digital communications are known asd. T1, T2, T3 and T4 linesThe rules for exchanging data between computers are calledc. protocolsTwo or more computer connected so that they can communicate with each other and share information are called ad. networkA device, connected to a network, that shared resources with other nodes is called ab. serverThe arrangement of the computers in a network is called theb. topologyA way of coordinating the sharing of information and resources is called a network __ .b. strategyA(n) __ protects an organization’s network from outside attack.d. firewallCHAPTER 10The standards of moral conduct that control how computers are used are calleda. ethicsThe ethical issue that involves who is able to read and use data isa. accessTwo types of cookies are __.d. ad network and traditionalPeople who gain unauthorized access to computers for the fun of it, but do not intentionally do damage, are__b. hackersA program that migrates through networks and operating systems by attaching itself to different programs and databases is a __.a. virusAn attempt to slow down or stop a computer system or network by flooding the system with requests for information is called ac. denial-of-service attackSecret words or numbers used to gain access to a computer system are calledd. passwordsOne of the more common type of technological failures is when your computer experiences too much electricity. This is known as__c. a voltage surge__ is the study of human factors relating to things people useb. ergonomicsThe computer industry response to the Energy Star program is thed. Green PC。