计算机专业英语试题及答案(A) 2
2023年全国普通高等学校计算机单招真题英语试卷及答案

2023年全国普通高等学校计算机单招真题英语试卷及答案第一部分:阅读理解Passage 11. C2. D3. A4. BPassage 21. C2. A3. D4. B第二部分:完形填空1. C2. A3. B4. D第三部分:语法填空1. were2. to3. and4. by第四部分:改错1. it→them2. have→has3. 在 at 前加 a4. to learn 前加 a第五部分:短文写作One possible answer (800 words):The cloze passage section assessed candidates' understanding of context and their ability to choose the appropriate words to fill in the gaps. This section tested not only their vocabulary knowledge but also their understanding of grammar and sentence structure.The grammar section focused on various grammar rules and required candidates to apply them correctly in given sentences. This section aimed to test candidates' ability to identify and correct grammatical errors.The error correction section aimed to assess candidates' attention to detail and their ability to identify spelling and punctuation errors in given sentences. This section required candidates to carefully examine each sentence and make necessary corrections.The essay writing section challenged candidates to express their thoughts and ideas on a given topic. It tested their ability to structure their writing, use appropriate vocabulary, and convey their message effectively within a limited word count.参考答案仅供参考,以考试官方公布的为准。
计算机英语考试题目及答案

计算机英语考试题目及答案一、选择题1. What does HTML stand for?a) Hyper Text Markup Languageb) High Technology Multimedia Languagec) Home Tool Management Languaged) Human Token Marker Language答案:a) Hyper Text Markup Language2. Which of the following is not a programming language?a) Javab) Pythonc) HTMLd) C++答案:c) HTML3. What is the purpose of CSS?a) To add interactivity to web pagesb) To structure the content of web pagesc) To define the layout and style of web pagesd) To create dynamic web pages答案:c) To define the layout and style of web pages4. What is the function of a router in a computer network?a) To connect computers to the internetb) To store and manage data on a networkc) To protect the network from security threatsd) To direct network traffic between devices答案:d) To direct network traffic between devices5. Which of the following is a commonly used database management system?a) Microsoft Wordb) Adobe Photoshopc) MySQLd) Windows Media Player答案:c) MySQL二、填空题1. The process of converting source code into machine code is called ________.答案:compilation2. The most widely used programming language for web development is ________.答案:JavaScript3. TCP/IP stands for ________.答案:Transmission Control Protocol/Internet Protocol4. The physical components of a computer are referred to as ________.答案:hardware5. SQL stands for ________.答案:Structured Query Language三、简答题1. What are the advantages of using cloud computing?答案:Cloud computing offers several advantages, including:- Cost savings: Companies can reduce their infrastructure costs by using cloud services instead of maintaining their own hardware.- Scalability: Cloud services can easily scale up or down based on demand, allowing businesses to only pay for what they need.- Flexibility: Users can access cloud services from anywhere with an internet connection, enabling remote work and collaboration.- Disaster recovery: Cloud providers often have backup systems in place, ensuring data can be recovered in case of a disaster.- Automatic updates: Cloud services are typically updated regularly by the provider, ensuring users have access to the latest features and security patches.2. Explain the difference between HTTP and HTTPS.答案:HTTP (Hypertext Transfer Protocol) is a protocol used for transmitting data over the internet. It is not secure, meaning that the data being transmitted can be intercepted and read by anyone. HTTPS (Hypertext Transfer Protocol Secure), on the other hand, is a secure version of HTTP. It uses encryption to ensure that data is encrypted before transmission, making it much more difficult for hackers to intercept and read. HTTPS is commonly used for secure online transactions, such as submitting credit card information or personal details.四、编程题请编写一个Python程序,实现计算圆的面积和周长的功能。
《计算机专业英语》答案

《计算机专业英语》参考答案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当使用计算机的时候,你必须知道与它“交流”。
计算机专业英语试题含答案

计算机专业英语试题2Ⅰ. Vocabulary(词汇)(30分)(一).Translate the following words and expressions into Chinese(写出下列词组的汉语。
)(共10分,每题1分)1.operating system2.white box testing3.hard disk4.management information system5.electronic commerce6.relational database7.software engineering8. software maintenance9. menu bar10.network security(二).Fill in the blanks with the corresponding English abbreviations.(根据汉语写出相应的英语缩写。
) (共10分,每题1分)1.只读存储器 2.广域网3.传输控制协议 4.文件传送[输]协议5.通用串行总线 6.面向对象编程7.集成开发环境 8.结构化查询语言9.数据库管理系统 10.开放系统互连(三)Match the following words and expressions in the left column with those similar in meaning in the right column.(将左列的词汇与右列相应的汉语匹配。
)(10分,每空1分)1. application software a. 音频2. machine language b. 应用软件3. structured programming c. 机器语言4. functional testing d. 软件测试5. memory e. 结构化程序设计6. relational database f. 内存7. firewall g. 功能测试8. software testing h. 关系数据库9. hacker i. 黑客10. audio j. 防火墙1. 6.2. 7.3. 8.4. 9.5. 10.Ⅱ. Comprehension(阅读理解)(一)Fill in the blanks with suitable words or expressions from the list given below, and change the form wherenecessary. (从下面方框中选择合适的词或表达,以其适当的形式填空。
计算机专业英语2

In C Language, a ______is a series of characters enclosed in double quotes.••正确答案:B210分The________ storage area that you can use to copy or move selected text or object among applications.••正确答案:C310分____ is the study of the principles of valid reasoning and inference, as well as of consistency, soundness, and completeness.•theory•正确答案:B410分Software design is a _____ process. It requires a certain mounted of flair on the part of the designer.•••正确答案:D510分Very long, complex expres-sions in program are difficult to write correctly anddifficult to _____.•••正确答案:D二、阅读理解共1题,50分150分A software process is a set of activities that leads to the production of a software product. These activities may involve the development of software from scratch in a standard programming language like Java or C. Increasingly, however, new software is developed by extending and modifying existing systems and by configuring and integrating off-the-shelf software or system components.Software processes are complex and, like all intellectual and creative processes, rely on people making decisions and judgments. Because of the need for judgment andcreativity, attempts to automate software processes have met with limited success. Computer-aided software engineering (CASE) tools can support some process activities. However, there is no possibility, at least in the next few years, of more extensive automation where software takes over creative design from the engineers involved in the software process.Although there are many software processes, some fundamental activities are common to all software processes:1). Software specification The functionality of the software and constraints on its operation must be defined.2). Software design and implement-ation The software to meet the specification must be produced.3). Software validation The software must be validated to ensure that it does what the customer wants.4). Software evolution The software must evolve to meet changing customer Needs. Although there is no ‘ideal’ software process, there is scope for improving the software process in many organizations. Processes may include outdated techniques or may not take advantage of the best practice in industrial software engineering. Indeed, many organizations still do not take advantage of software engineering methods in their software development.(1)、A software process is _______.•product•standard programming language•existing system正确答案:B(2)、Software processes ___________.•complex and intellectual enough to be developed byComputer-aided software engineering (CASE) tools.•rely on Computer-aided software engineering(CASE) tools.•depend on the people making decisions and judg ments正确答案:A(3)、software processes usually include ________ activities.•••正确答案:C(4)、Improving the software process in many organizations is ______.•••正确答案:D(5)、Software design and implementat-ion means that _________.•functionality of the software and constraints on its o peration must be defined.•software must be validated to ensure that it does w hat the customer wants.•software must evolve to meet changing customer Ne eds.正确答案:B。
计算机专业英语 考试

一、选择题1.What is the process of converting a high-level programming language into machine languagecalled?A.Debuggingpilation(正确答案)C.ExecutionD.Interpretation2.Which of the following is a programming paradigm that organizes software design around data,and the operations performed on that data?A.Object-oriented programming(正确答案)B.Procedural programmingC.Functional programmingD.Event-driven programming3.In computer networks, what does the term "protocol" refer to?A. A set of rules governing the exchange of information between devices(正确答案)B.The physical connection between devicesC.The speed of data transmissionD.The type of data being transmitted4.What is the term used to describe the process of dividing a complex problem into smaller, moremanageable parts?A.Modularization(正确答案)B.OptimizationC.EncapsulationD.Polymorphism5.In computer security, what is the term for unauthorized access to or modification of data?A.EncryptionB.DecryptionC.Hacking(正确答案)D.Firewall6.Which of the following is a type of software that allows two or more computers tocommunicate and share resources?A.Operating systemB.Database management systemwork operating system(正确答案)D.Word processing software7.What is the term used to describe the process of identifying and correcting errors in computerprograms?A.Debugging(正确答案)B.TestingC.Codingpilation8.In computer graphics, what is the term for the number of distinct pixels that can be displayedon a screen?A.Resolution(正确答案)B.Color depthC.Refresh rateD.Aspect ratio。
《计算机专业英语》考试题A

Test of Special English for Computer Science《计算机专业英语》考试题A一、写出下列计算机专有名词的中文名. (20%)CPU: RAM:DNS: USBLAN: SMTP:URL: WAN:FTP: HTTP:二、阅读理解.(50%)1 本题20分, 阅读下面的短文,回答下列问题.[1] High-level languages (HLL) allow programmers to express algorithms more concisely, take care of much of detail, and often support naturally the use of the structured programming or objected-oriented design.[2] Alas, this solution gave rise of a problem, known as the semantic gap, the difference between the operations provided in HLLs and those provided in computer architecture. Symptoms of this gap are alleged to include exection inefficiency, excessive machine program size, and compiler complexity. Designers of traditional CISC (Complex Instruction Set Computer) machines responded with architectures intended to close this gap. Key features include large instruction sets, dozens of addressing modes, and various HLL statements implemented in hardware.Please answer the following questions (1) – (3) in English:(1)Which functions are there for HLL in the computer according to paragraph[1]?(5分)(2)What is the meaning of “the semantic gap”in the paragraph [2] ? (7分)(3)Please explain which important features there are in CISC machine in orderto reduce this gap? (8分)2 本题10分, 阅读下面的短文,回答下列问题.[3]A major challenge is hence the harmonization of parallel machine architectures, compilers, and the programming languages, with the goal of allowing programs to be written in high-level, problem-oriented languages, while developing compilers that translate the programs into efficient target code for a wide variety of parallel architectures. Success will be measured by how well real, machine-independent application programs will execute on real, parallel computers. Since highly parallel machines with thousands and tens of processors are already being manufactured and used commercially, this challenge requires a solution urgently.Please answer the following questions (4) – (5) in English:(4)Please explain what is the the goal is in paragraph [3]? (5分)(5)Please explain what the urgent solution needed by the challenge is inparagraph [3]. (5分)3. 本题20分, 阅读下面的短文,回答下列问题.[4]Many embedded system s require predictable and bounded responses to real-world events. Such “real-time”systems include factory automation, data acquisition and control systems, audio/video applications, and many other computerized products and devices. What’s a “real-time system”? The commonly accepted definition of “real-time”performance is that real-world events must be responded to within a defined, predicable, and relatively short time interval.[5]Although Linux is not a real-time operating system (the Linux kernel does not provide the required event prioritization and preemption functions), there are currently several add-on options available that can bring real-time capabilities to Linux-based systems.The most common method is the dual-kernel approach. Using this approach, a general purpose (non-real-time) OS runs as a task under a real-time kernel. The general purpose OS provides functions such as disk read/write. LAN/communications, serial/parallel I/O, system initialization, memory management, etc., while the real-time kernel handles real-world event processing. Y ou might think of this as a “have your cake and eat it too”strategy, because it can preserve the benefits of a popular general purpose OS, while adding the capabilities of a real-time OS.Please answer the following questions (6) – (8) in English:(6)Is embedded system“real-time” system according to paragraph [4]? (5分)(7) Is Linux “real-time”OS?And how does Linux provide “real-time”capabilities? (8分)(8) Which functions are there in the general purpose OS? (7分)三、把下面的短文译为中文.(30%)1. 把下面这段[6]英文翻译成中文. (15分)[6]Polymorphism gives objects the ability to respond to messages from routines when the object’s exact type is not known. In C++ this ability is a result of late binding. With late binding, the addresses are determined dynamically at run time, rather than statically at compile time, as in traditional compiler languages. This static (fixed) method is often called early binding. Function names are replaced with memory addresses. Y ou accomplish late binding by using virtual functions. Virtual functions are defined in the parent class when subsequent derived classes will overload the function by redefining the function’s implementation. When you use virtual functions, messages are passed as a pointer that points to the object instead of directly to the object.2. 把下面这段[7]英文翻译成中文. (15分)[7] A long term goal could be to develop interactive program transformation systems that assist programmers in parallelizing programs and provide feedback and guidance. The problem with this idea is that the approach of semiautomatic program transformations is still an object of active research, even for sequential programs. In the medium term, a production-quality transformer for deriving realistic, parallel programs is unlikely to appear. The traditional method of teaching algorithms and formulating them in programming languages with explicit parallelism is likely to be more successful, especially since the body of known parallel algorithm is large and growing rapidly. Initial indications seem to be that writing parallel software is not significantly harder than writing sequential software, provided the languages and support tools are adequate.。
《计算机专业英语》A卷

自编号:重庆电子工程职业学院培训专业13 级应用电子专业《计算机专业英语》课程期末考试试卷A卷(本试卷共 3 页,满分100分, 90 分钟完卷)注意事项:1、考生答题必须将答案按要求填写在答题纸上,否则成绩无效。
2、考试结束后,将本试卷和答题卡一并交回。
一、Translate the following words into Chinese(本大题共20小题,每小题1分,共20分)1. instruction2. interface3. mainframe4. system5. processor6. memory7. device8. specification9. register 10. supervise11. computation 12. command 13. keyboard 14. mouse 15. monitor16. printer 17. document 18. definition 19. dimension 20.type二、Translate the following phrases into Chinese.(本大题共10小题,每小题1分,共10分)1. central processing unit2. control bus3. machine instruction4. data bus5. output device6. input device7. multimedia technology 8. main memory9. artificial intelligence 10. speech recognition三、Match the following words and expressions in the left column with those similar in meaning in the right column.(本大题共10小题,每小题1分,共10分)1. application software a. 图像2. machine language b. 应用软件3. structured programming c. 机器语言4. functional testing d. 软件测试5. memory e. 结构化程序设计6. relational database f. 内存7. firewall g. 功能测试8. software testing h. 关系数据库9. hacker i. 黑客10. image j. 防火墙四、Choose the best answer according to the passage.(本大题共5小题,每小题2分,共10分)In 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 of program 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.1.If you want to solve the computational problem with a computer, you should learn how to .A. calculateB. programC. addD. subtract2. 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 stages of programming?A. Write a program.B. Debug the program.C. Print the program.D. Compile the program.五、Translate the following sentences into Chinese.(本大题共6小题,每小题5分,共30分)1. The program, which tells the computers what to do and the data, which provide the information needed to solve the problem, are kept inside the computer in a place called memory.2. In a big mainframe computer the processor is called a Central Processing Unit, or CPU, while in a microcomputer, it is usually known as a microprocessor.3. The memory unit is an essential component in any digit computer since it is needed for storing the programs that are executed by the CPU.4. At the beginning of each instruction cycle, the CPU fetches an instruction from memory.5. It is very easy to set up a memory system that consists of a single chip.6. If we are going to say that a given program thinks like a human, we must have some way of determining how humans think.六、Translate the following paragraph into Chinese.(20分)Definitions of artificial intelligence vary along two main dimensions. One is concerned with thought processes and reasoning, the other addresses behavior. Also, some definitions measure success in terms of human performance, whereas the others measure against an ideal concept of intelligence, which we will call rationality. A system is rational if it does the right thing. All this gives us four possible goals pursue in artificial intelligence: system that like humans, systems that think rationally, system that act like humans and systems that act rationally.。
- 1、下载文档前请自行甄别文档内容的完整性,平台不提供额外的编辑、内容补充、找答案等附加服务。
- 2、"仅部分预览"的文档,不可在线预览部分如存在完整性等问题,可反馈申请退款(可完整预览的文档不适用该条件!)。
- 3、如文档侵犯您的权益,请联系客服反馈,我们会尽快为您处理(人工客服工作时间:9:00-18:30)。
湖北职业技术学院2007-2008学年度第一学期期末考核试卷 考核课程: 《计算机专业英语》 考试类型: 理论 考试方式: 闭卷笔试 学生所在院系: 计科系 年 级: 2006级 试 卷: A姓名: 班级: 学号:一、Give out the full names for the following abbreviations(写出下列缩写词的全称)(15%)ROM_______________________________________________CPU_________________________________________________BIOS_________________________________________________IT____________________________________________________WWW_______________________________________________HTML________________________________________________PCI__________________________________________________HR__________________________________________________GUI__________________________________________________MHz__________________________________________________二、Match the following words and expressions in the leftcolumn with those similar in meaning in the right)(10%)1. memory unit a. 半导体存储器2. intelligence b. 机制3. semiconductor memory c. 存储单元4. data definition language d. 数据定义语言5. mechanism e. 通信6. machine language f. 机器语言7. communication g. 智能8. distance education h. 远程教育9. pattern recognition i. 企业资源计划10.enterprise resource planning j. 模式识别1. ( ) 6. ( )2. ( ) 7. ( )3. ( ) 8. ( )4. ( ) 9. ( )5. ( ) 10.( )三、Translate the following phrases into English(将下列短语翻译成英语)(10%)1. 系统板 ( )2. 算术逻辑运算 ( )3. 机器码 ( )4. 帮助菜单 ( )5. 图形技术 ( )四、For each of the following blanks, four choices are given. Choosethe most appropriate one (从下面给出的四个选项中选择最恰当的答案)(30 %)1. The basic units of a computer system are as follows: _________A. CPU, memory and diskB. CPU, input and output unitC. CPU, memory and I/O systemD. CPU, memory and ALU2. Today, _________ can give you a music synthesizer, a fax machine, aCD-ROM drive, ect.A. input devicesB. expansion cardsC. output deviceD. joystick*3. The control unit fetches _________ from memory and decodes them.A. dataB. informationC. resultsD. instructions*4. When power is removed, information in the semiconductor memory is________ .A. reliableB. lostC. manipulatedD. remain*5. Please find the item that is not belong to the DBA _________ . ( )A. storage structure and access method definitionB. schema definitionC. integrity constrain specificationD. DDL6. _________ is designed to manage large bodies of information.A. a file systemB. a transactionC. a database systemD. a database language7. A characteristic of operating system is _________ .A. resource managementB. memory managementC. error recoveryD. all the above8. Assembly-language instructions are a series of _________ .A. 0s and 1sB. abstract codesC. machine codesD. words9. _______ program also has potential benefits in parallel processing.A. MachineB. AssemblyC. Object-orientedD. Process-oriented10. An advantage of a ring network is that it needs less _________ .A. computerB. networkC. cableD. information11. An ISP supplies a _________ that you can dial from your computer to log on the internet server.A. public keyB. private keyC. service numberD. help file12. To open Internet Explorer, just click Start, point to _________ , and then click Internet Explorer.A. ProgramsB. ViewC. LayoutD. Control Panel13. Electronic bulletin boards are _________ communication platforms.A. one-to-manyB. one-to-oneC. many-to-manyD. all above14. Followings are some image data file formats, which is wrong? _______A.*.TIFB. *.DOCC. *.BMPD. *.GIFC. it can rotate a three-dimensional model.D. it can do all above at the same time.15. By adding _________ to your programs, you can make computers more interesting and much more fun for the user.A. multimediaB. textC. musicD. picture五. To identify the following to be True or False accordingto computer knowledge( 根据计算机知识判别是非题)(10%)1. Registers in the control unit are used to keep track of the overall status ofthe program. ( )2. The basic resources of a computer system are software and data. (3. The chipset consists of two parts: North Bridge and South Bridge. ( )4. The *.BMP file can only be used in the IBM system. ( )5. ROM does not have the inputs and writing controls. ( )6. “ADD AX, BX ” is a instruction of machine language. ( )7. A data definition language can be used to define a database schema. ( )8. People can only use the ISP to connect Internet. ( )9. We can use E-mail only as a one-to-one platform. ( )10. Hypermedia is the same as multimedia. ( )六. Reading comprehension(阅读理解)(25%)(一) Fill in the blanks with suitable words or expressions from the list givenbelow, and change the form where necessary (从下面所列词语中选择合适的词语, 以其适当的形式填空)(10%)high-level language assembly language writtenmachine language notationA programming language, designed to facilitate the communication betweenhuman and computers, is a __________________ for describing computation in readable form. There are 3 levels of programming languages, they are __________________, which can be run directly by computer; __________________and______________. There are different high-level programming languages. Fortunately, most of them have many kinds of construct in common and vary only in the way that these must be__________________ . Therefore, first thing to be decided about a task is to choose which programming language is best suited for the job.Passage AThe central processing unit (CUP) 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 in micro-Computers that are small enough to fit on your desk and your lap.The CPU comprise 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 signals between 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(根据上文的内容判断下列句子的正误) (15%)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. ( )命题教师游彦教研室主任签字【第页共页】湖北职业技术学院2007-2008学年度第一学期期末考核试卷参考答案及评分标准考核课程:计算机英语考试类型:理论考试方式:闭卷笔试学生所在院系:计科系年级: 2006 试卷: A执笔人:要求:明确标注每小题或每步骤得分点一. Give out the full names for the following abbreviations(写出下列缩写词的全称)(15%)( 本题共15分, 每小题1.5分)ROM: Read Only MemoryCPU: Central Processing UnitBIOS: Basic Input/Output UnitIT: Information TechnologyWWW: World Wide WebHTML: Hypertext Markup LanguagePCI: Peripheral Component InterconnectHR: Human ResourceGUI: Graphical User InterfaceMHz: Megahertz二. Match the following words and expressions in the left column with those similar in meaning in the right column(将左列的词汇与右列相应的汉语匹配)(10%)( 本题共10分, 每小题1分)1. ( c ) 6. ( f )2. ( g ) 7. ( e )3. ( a ) 8. ( h )4. ( d ) 9. ( j )5. ( b ) 10.( i )三. Translate the following phrases into English(将下列短语翻译成英语)(10%)( 本题共10分, 每小题2分)1. the system board2. Arithmetic logical operations3. machine code4. Help menu5. graphics technology四. For each of the following blanks, four choices are given. Choose the most appropriate one (从下面给出的四个选项中选择最恰当的答案)(30 %)( 本题共30分, 每小题2分)1. C2. B3. D4. B5. D6. C7. A8. B9. C 10. C 11. C 12. A13. A 14. B 15. A五.To identify the following to be True or False according to computer knowledge( 根据计算机知识判别是非题)(10%)( 本题共10分, 每小题1分)1. ( T )2. ( F)3. ( T )4. ( F )5. ( T )6. ( F )7. ( T )8. ( F )9. ( F )10. ( F )六.Reading comprehension(阅读理解)(25%)(一) Fill in the blanks with suitable words or expressions from the list given below, and change the form where necessary (从下面所列词语中选择合适的词语, 以其适当的形式填空)(10%)( 本题共10分, 每空2分)notation machine language assembly language high-level language written(3空和4空答案可互换)(二) Tell whether the following statements are true(T) or false(F) according to the passage A(根据上文的内容判断下列句子的正误) (15%)( 本题共15分, 每小题3分)1. ( F )2. ( T )3. ( F )4. ( F )5. ( T )1、_b___ refers to the parts of the computer that you can see and touch.A. SoftwareB. HardwareC. HardshipD. Instruction2、primary memory which is stored on chips located _a___.A. on the motherboardB. outsideC. inside the processorD. on the CPUThe display screen is the most common _c___ device used to show you what the computer is doing.A. inputB. printingC. outputD. electronicWindows gives you more control over the __a__ you work.A. operationB. wayC. energyD. powerPlease find the item that is not belong to the DBA ____d_____ .A. storage structure and access method definitionB. schema definitionC. integrity constrain specificationD. DDL(数据定义语言)The most important program on any computer is a____.A. Operating SystemB. VirusC. softwareD. O教研室主任签字【第7 页共7 页】。