浙大研究生 2017-2018学年《计算机理论》期末考试英文版及答案

合集下载

英文版计算机试题及答案

英文版计算机试题及答案

英文版计算机试题及答案Section 1: Multiple Choice Questions (MCQs)1. Which of the following is NOT a programming language?a) Javab) HTMLc) Pythond) SQLAnswer: b) HTML2. What does CPU stand for?a) Central Processing Unitb) Computer Processing Unitc) Control Processing Unitd) Central Program UnitAnswer: a) Central Processing Unit3. Which of the following is NOT an input device?a) Keyboardb) Mousec) Printerd) ScannerAnswer: c) Printer4. What does RAM stand for?a) Read-Only Memoryb) Random Access Memoryc) Recordable Audio Mediad) Runtime Activity MonitorAnswer: b) Random Access Memory5. Which of the following is NOT a type of computer network?a) LAN (Local Area Network)b) WAN (Wide Area Network)c) MAN (Metropolitan Area Network)d) CAN (Campus Area Network)Answer: d) CAN (Campus Area Network)Section 2: Short Answer Questions1. Define the term "algorithm."Answer: An algorithm is a step-by-step procedure or set of rules for solving a specific problem or completing a specific task.2. What is object-oriented programming (OOP)?Answer: Object-oriented programming is a programming paradigm that organizes code into objects, which are instances of classes. It emphasizes the concept of objects and their interactions to solve complex problems.3. Explain the difference between static and dynamic memory allocation.Answer: Static memory allocation is performed at compile-time, where memory is allocated for variables and objects before the program execution starts. Dynamic memory allocation, on the other hand, is performed at runtime using functions like malloc() or new(). It allows for the allocation and deallocation of memory during program execution.4. What is the purpose of an operating system?Answer: The operating system is responsible for managing computer hardware and software resources, providing an interface between the user and the computer, and ensuring that various programs and applications can run smoothly. It also provides file management, process management, and memory management.5. Name three programming paradigms.Answer: Three programming paradigms are procedural programming, object-oriented programming, and functional programming.Section 3: Coding Questions1. Write a Java program to find the factorial of a given number.```javaimport java.util.Scanner;public class Factorial {public static void main(String[] args) {Scanner input = new Scanner(System.in);System.out.print("Enter a number: ");int number = input.nextInt();int factorial = 1;for (int i = 1; i <= number; i++) {factorial *= i;}System.out.println("The factorial of " + number + " is " + factorial); }}```2. Write a Python program to check if a number is prime or not.```pythondef is_prime(number):if number < 2:return Falsefor i in range(2, int(number/2)+1):if number % i == 0:return Falsereturn Truenumber = int(input("Enter a number: "))if is_prime(number):print(number, "is prime.")else:print(number, "is not prime.")```3. Write a C program to reverse a given string. ```c#include <stdio.h>#include <string.h>void reverse_string(char* str) {int length = strlen(str);for (int i = 0; i < length/2; i++) {char temp = str[i];str[i] = str[length - i - 1];str[length - i - 1] = temp;}}int main() {char str[100];printf("Enter a string: ");gets(str);reverse_string(str);printf("Reversed string: %s", str);return 0;}```Note: The code provided above is just examples for the coding questions. Please ensure to compile and test the programs before using them in production.Conclusion:In this article, we discussed multiple-choice questions, short answer questions, and coding questions related to computer science and programming. These questions cover various aspects of computer knowledge and can be used for self-assessment or preparation for exams or interviews.。

计算机英语试题及答案

计算机英语试题及答案

计算机英语试题及答案一、选择题(每题2分,共20分)1. What does the term "CPU" stand for?A. Central Processing UnitB. Central Power UnitC. Customer Personal UnitD. Control Power Unit答案:A2. The term "RAM" refers to:A. Random Access MethodB. Random Access MemoryC. Remote Access ModuleD. Real-time Application Module答案:B3. Which of the following is a type of computer virus?A. TrojanB. TractorC. TrackerD. Tracker答案:A4. The acronym "GUI" stands for:A. Graphical User InterfaceB. General User InterfaceC. Graphical Unified InterfaceD. Global User Interface答案:A5. What is the purpose of an "API" in computer programming?A. Application Programming InterfaceB. Advanced Programming InterfaceC. Automated Programming InterfaceD. Advanced Programming Indicator答案:A6. The term "LAN" is short for:A. Local Area NetworkB. Long Area NetworkC. Limited Area NetworkD. Large Area Network答案:A7. Which of the following is a common file extension for a text document?A. .txtB. .jpgC. .exeD. .mp3答案:A8. The process of finding and removing errors in a computer program is called:A. DebuggingB. BuggingC. LoggingD. Tagging答案:A9. What does "FTP" stand for?A. File Transfer ProtocolB. Fast Transfer ProtocolC. Full-Time ProtocolD. Future Technology Protocol答案:A10. The term "URL" stands for:A. Uniform Resource LocatorB. Unique Resource LocatorC. Universal Resource LocatorD. User Resource Locator答案:A二、填空题(每空1分,共10分)11. The basic unit of data in a computer is the _______.答案:bit12. A computer's _______ is the primary component that controls and processes data.答案:CPU13. The _______ is a type of software that protects a computer from malicious software.答案:antivirus14. A _______ is a location on a network where files can be stored and accessed.答案:server15. The process of converting data into a code to protect its confidentiality is known as _______.答案:encryption16. A _______ is a set of data that describes the characteristics of a file or set of files.答案:metadata17. The _______ is the process of recovering data after a system failure.答案:backup18. The term _______ refers to the use of a computer to create visual content, such as images and videos.答案:graphics19. A _______ is a program that controls the way a computer system operates.答案:operating system20. The _______ is the process of connecting two or morenetworks to enable communication between them.答案:networking三、简答题(每题5分,共20分)21. Explain the difference between a "bit" and a "byte".答案:A bit is the smallest unit of data in computing, representing a single binary digit (0 or 1). A byte is a group of eight bits, which is used to represent a character or a string of data.22. What is the role of a "firewall" in a computer system?答案:A firewall is a network security system that monitors and controls incoming and outgoing network traffic based on predetermined security rules. It acts as a barrier between a trusted internal network and untrusted external networks, such as the Internet.23. Describe the purpose of a "router" in a computer network.答案:A router is a networking device that forwards data packets between computer networks. It uses routing tables to determine the best path for data to travel, allowing multiple devices to communicate with each other across different networks.24. What is "cloud computing" and how does it benefit users?答案:Cloud computing is the delivery of computing services, including storage, processing power, and software, over the internet. It benefits users by providing scalable resources, reducing the need for on-premises infrastructure, and allowing for remote access to applications and data.四、翻译题(每题5分,共20分)25. Translate the following sentence into English: "操作系统是管理计算机硬件和软件资源的程序。

计算机专业英语B卷带答案

计算机专业英语B卷带答案

2018-2019学年第二学期期末考试试卷(B卷)年级 2017级专业计算机应用层次大专科目专业英语I. Choose the correct answers.(20%)( D )1. has a range of database system, from which DB2 is the best known.A. MicrosoftB. HPC. OracleD. IBM( A )2. A row in a table of a database is called aA. recordB. fieldC. fileD. relation( A )3. is available for free.A. MySQL B . Oracle C. DB2 D. Access( A )4. can only run on Windows platform.A. Microsoft SQL serverB. OracleC. DB2D. MySQL ( C )5. When considering office automation, three main areas need further discussion. Which of the follow is not the area?A. PeopleB. ToolsC. NetworkD. Workplace( C )6.If the full benefits of automation are to be realized, you must overcome resistance.A. toolsB. peopleC. workplaceD. network( B )7. Usually, office automation system has functions.A. fourB. sixC. sevenD. five( C )8. In administrative organs, office automation is mostly calledA. e-governmentB. paperless officeC. OAD. Government office( C )9. A is a list of instruction for the computer to follow to accomplish the task of processing data into information.A. codeB. programmerC. programD. programming ( B )10.Programming languages are called level when they are closer to the language the computer itself uses.A. higherB. lowerC. advancedD. middleII. Fill in the blanks.(10%)1.Middware describes separate product that serves as the glue between two applications .2.Database is often abbreviated as DB.3.There are two kinds of storage device: internal and external .puters are electronic devices that can follow instructions to accept input, process that input, and produce information .5. An information system has five parts: people procedures, software hardware, and data .III. Match each numbered item with the most closely related lettered item.(20%)( e )1. chip a. 显示器( a )2. monitor b. 程序员( f )3. scanner c. 电子政务( g )4. platform d. 指令( j )5. database e. 芯片( h )6. table f. 扫描仪( c )7. e-government g. 平台( i )8. desktop h. 表格( b )9. programmer i. 台式机( d )mand j. 数据库IV. Translate the following phrases into Chinese.(20%)1. WWW万维网2. control unit控制单元3. dance pad 跳舞毯4. movable disk可移动磁盘5. IT 信息技术6. CPU中央处理器7. assembly language 汇编语言8. OS 操作系统9. OA办公自动化10. source code源代码V. Translate the following sentences into Chinese.(30%)1.Office automation tools may stand alone(without access to information at other computers) or be networked (with such access)办公自动化工具可能是独立的(不从其它计算机获取信息),也可能是网络化的(从其它计算机获取信息)。

《计算机专业英语》习题参考答案

《计算机专业英语》习题参考答案

《计算机专业英语》习题参考答案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是有很多组件构成的一个系统。

计算机英语参考译文和练习答案(doc 78页)

计算机英语参考译文和练习答案(doc 78页)

计算机英语参考译文和练习答案(doc 78页)二、历史第一台加法机,数字计算机的先驱,是1642年由法国科学家、数学家兼哲学家布莱斯•帕斯卡设计的。

这个装置使用了一系列有10个齿的轮子,每个齿代表从0到9的一个数字。

轮子互相连接,从而通过按照正确的齿数向前移动轮子,就可以将数字彼此相加。

在17世纪70年代,德国哲学家兼数学家戈特弗里德•威廉•莱布尼兹对这台机器进行了改良,设计了一台也能做乘法的机器。

法国发明家约瑟夫―玛丽•雅卡尔,在设计自动织机时,使用了穿孔的薄木板来控制复杂图案的编织。

在19世纪80年代期间,美国统计学家赫尔曼•何勒里斯,想出了使用类似雅卡尔的木板那样的穿孔卡片来处理数据的主义。

通过使用一种将穿孔卡片从电触点上移过的系统,他得以为1890年的美国人口普查汇编统计信息。

1、分析机也是在19世纪,英国数学家兼发明家查尔斯•巴比奇,提出了现代数字计算机的原理。

他构想出旨在处理复杂数学题的若干机器,如差分机。

许多历史学家认为巴比奇及其合伙人,数学家奥古斯塔•埃达•拜伦,是现代数字计算机的真正先驱。

巴比奇的设计之一,分析机,具有现代计算机的许多特征。

它有一个以一叠穿孔卡片的形式存在的输入流、一个储存数据的“仓库”、一个进行算术运算的“工厂”和一个产生永久纪录的打印机。

巴比奇未能将这个想法付诸实践,尽管在那个时代它在技术上很可能是可行的。

2、早期的计算机模拟计算机是在19世纪末期开始制造的。

早期型号是靠转动的轴和齿轮来进行计算的。

用任何其他方法都难以解答的方程,可以用这样的机器来求其近似数值。

开尔文勋爵制造了一台机械潮汐预报器,这实际上就是一台专用模拟计算机。

第一次和第二次世界大战期间,机械模拟计算系统以及后来的电动模拟计算系统,被用作潜艇上的鱼雷航线预测器和飞机上的轰炸瞄准具的控制器。

人们还设计了另一个系统,用于预测密西西比河流域春天的洪水。

3、电子计算机第二次世界大战期间,以伦敦北面的布莱切利公园为工作地点的一组科学家和数学家,制造了最早的全电子数字计算机之一:“巨人”。

《计算机英语》期末考试及答案

《计算机英语》期末考试及答案

《计算机英语》B卷本卷满分100分,90分钟完卷。

得分:一、选出下列单词所缺字母组合(共10小题,每小题2分,共20分)。

1.Parti__lar (特别的)A. ceB. cuC.coD. cr2.Determ___(决定)A. ineB. ingC. innD. ino3.Previ___ly (先前地,以前地)A.ocsB. onsC. ousD.obs4.Functionali__(功能)A.tiB. tyC. ttD. to5.Distri__tion (发行版,发布)A.biB. buC. beD. bo6.Catego___ (种类)A.ryB.riC.rtD.ty7.Sophisti__tion (复杂)A.coB.ceC.ca8.Capa__ty (容量,能力)A.ceB.coC.ciD.cr9.Private__ (私下地,私密地)A.lyB.liC.tyD.il10.Dere__lation (违反规定)A.gaB.goC.ggD.gu二、单项选择题(共10小题,每小题2分,共20分)。

11. I can ____ basketball.A. playedB. playsC. playingD. play12. ---Happy birthday to you.---______________A.The same to youB.good luckC. Not at allD.Thank you.13. Happy life rely on_____ hard.A. workB. workingC. worksD. to work14. She is a ____ girl.A. beautyB. beautiesC. beautifulD. beautifully15.---What`s wrong with you?---____________A. I don`t knowB. I feel terribleC. Don`t worryD. Thanks16. ---How about having bread for lunch?---_____________A.Yes,it isB. That`s greatC .I am fine D.Fine,thanks.and you?17. He expresses an interest ___ reading.A. inB. onC. atD.to18.She _______ English for seven years.A. studyB. studiesC. studiedD. has studied19. ---You are Jack, right?---___________.A. Yes,it isB. yes,I amC. Yes,I wasD.Yes,I do20. She goes to the library ______.A. readB. to readC. readingD. reads三、阅读理解(共5题,每小题4分,共20分)。

计算机专业英语D卷带答案

计算机专业英语D卷带答案

2018-2019学年第二学期期末考试试卷(B卷)年级 2017级专业计算机应用层次大专科目计算机英语I. Choose the correct answers.(30%)( B )1.The _______ refers to any program or set of program instructions desined to surreptitiously enter a computer and disrupt its normal operations.A.CodeB. malwareC. softwareD. worm( D )2.To defend your computer against viruses, you should undersrand what they are, how they work, and how to use ______ software.A.NonvirusB. systemC. applicationD. antivirus( A )3.The refers to any program or set of program instructions designed to surreptitiously enter a computer and disrupt its normal operations.A. malwareB. codeC. softwareD. worm( C )4.To define your computer against viruses, you should understand what they are, how they work, and how to use software.A. no virusB. systemC. antivirusD. application( B )5.__________ gains unauthorized access to a computer for malicious purpose.A. hackerB. crackerC. programmerD. thief( D )6. are the most widely used type of computer.A. SupercomputerB. Mainframe computersC. MinicomputersD. Microcomputers( C )7. A computer is another name for a notebook computer.A. midrangeB. handheldC. laptopD. DVD( B )8. device is also known as primary storage device or “memory”.A. External storageB. Internal storageC. USB deviceD. Hard disk( D )9. is not an output device.A. DisplayB. PrinterC. LoudspeakerD. Fax machine ( C )10. is not an input device.A. MouseB. KeyboardC. PrinterD. Scanner( D )11. If you were to think of a computer as a living being, then the hardware would beA. the eyesB. the faceC. the brain D . the body( D )12. is not a system software.A. Window XPB. LinuxC. WordD. PowerPoint ( B )13. is not an application software.A. ExcelB. UnixC. WordD. PowerPoint ( D )14. rose to dominate the home computer operating system market with MS-DOS in the Mid-1980s, followed by the Microsoft Window line of operating systems.A. IntelB. DellC. Apple ComputerD. Microsoft ( C )15. To access information from a database, you need aA. DBB. hardwareC. DBMSD. bandwidth II. Fill in the blanks.(10%)1. There are four types of computers: supercomputers,_minicomputers, _mainframe computers, microcomputers.2. __computers are electronic devices that can follow instructions to accept input, process that input, and produce information.3. an information system has five parts: people, procedures, hardware, __software__, ___data__.4. ___software is another name for a program or programs.5.A _desktop computer fits on a desk and runs on power from an electrical wall outlet.III. Match each numbered item with the most closely related lettered item.(10%)( d )1.超级计算机 a. computer( f ) 2.芯片 b.device( c) 3.信息 rmation( g ) 4.微处理器 d.supercomputer( b ) 5.设备 e.microcomputer( a ) 6.计算机 f.chip( e ) 7.微型计算机g.microprocessor( i ) 8.文本h.capacity( h ) 9.容量i.text( j ) 10.数据j.dataIV. Translate the following phrases into Chinese.(20%)1. PC 个人计算机2. IT 信息技术3. MPC 多媒体个人计算机4.PDA 个人数字助理5. POST 计算机加电自检6. VLSI 超大规模集成电路7. DIY 自己装机8. DTE 数据终端设备9. ENIAC 电子数字积分计算机0.palmtop computer__掌上计算机V. Translate the following sentences into Chinese.(30%)1. An interpreter converts the procedural language one statement at a time into machine code just before it is to be executed.解释程序将过程化语言的一句程序转化成机器代码,然后执行这段程序。

2017级计机导论B卷

2017级计机导论B卷

2017-2018学年第1学期2017 级《计算机导论》考试试题B卷考试时间:2018年1月9日班级教学号姓名✧要求答案写在答题纸上,写上题号,不必抄题,英文答卷;✧要求在答题纸和试题纸上都写上班级、学号和姓名,交卷时一并交上来;✧要求在每个大题号(I, II, III,IV)前划一个满页的横线,以便教师批阅。

I、Choice Questions(20 questions, 1 score for each question)1. A computer uses isolated I/O addressing. Memory has 512 words, If each controller has 16 registers, controllers can be accessed by this computer.A. 16B. 32C. 64D. 5122.Most computers today use the _____ method of integer representation.A. Sign-and-magnitudeB. One’s complementC. two’s complementD. none of the above3.A(n) ________ is a set of rules that controls the interaction of different devices in a network or internetwork .A. modelB. operating systemC. algorithmD. protocol4.The first electronic special-purpose computer was called ________A. ABCB. EDV ACC. PascalineD.Pascal5.________ octal digits are needed to convert a 19-bit pattern?A. 5B. 6C. 7D. 86.If the ASCII code for k is 1101011, the the ASCII code for K is _______.A. 1101110B. 1101111C. 1101001D. 10010117.If the leftmost bit is 1 in _____ number representation, then the decimal number is negative.A. Sign-and-magnitudeB. One’s complementC. two’s complementD. all of the above8. A ________ document has fixed contents.A. staticB. dynamicC. activeD. none of the above9.________ is a memory type with capacitors that need to be refreshed periodically.A. SRAMB. ROMC. DRAMD. EPROM10.For an 8-bit allocation, the smallest decimal number that can be represented in unsigned, sign-and-magnitude, one’s complement, two’s complement form is ______.A. -128,-127,-127,-127B. 0,-128,-128,-127C. 0,-127,-127,-128D. 0,-128,-128,-12811. A computer has 64MB(megabytes) of memory, Each word is 4 bytes. ______bits are needed to address each single word in memory.A. 24B. 26C. 36D. 1612.The ________ model is a theoretical model that shows how any two different systems can communicate with each other.A. ISOB. OSIC. TCP/IPD. WWW13.A______ is a connecting device that acts as a protocol converter.A. routerB. bridgeC. gatewayD. all of the above14.Change the IP addresses 01111110 11111011 01100111 01111111 from binary notation to dotted-decimal notation ______.A. 125. 252.103.127B. 126. 251.103.127C. 125. 252.103.128D. 126.251.103.12815. A word consists of ________ bits.A. 1B. 8C. 16D. none of the above16.For insertion sort, _____ passes are needed to sort the data.A. n-1B. nC. 2nD. n217.Every job is a _______.A. processB. programC. partitionD. all of the above18.______can occur if a process has too many resource restrictionsA. StarvationB. DeadlockC. StoppedD. halted19. A process in the ready state goes to the _____ state when it gets access to the CPU.A. waitingB. runningC. readyD. holding20. A subalgorithm is also known as a ________.A. functionB. subroutineC. moduleD. all of the aboveII、Questions(5 questions, 4 scores for each question)1.What is computer science defined in this book? four types connecting devices for network.3.What’s the memory hierarchy?4.What steps are needed to convert audio data to bit patterns?5.To run an instruction in a program, what are the steps in a machine cycle?III、Calculation(5 subjects, 4 scores for each subject)1.Change the following decimal numbers to 8-bit Sign-and-magnitude, one’s complement andtwo’s complement integers, and fill the blanks with the result value in hexadecimal or “overflow” string.2.3.Change the -11.40625 decimal numbers to binary numbers, and show it in 32-bit IEEE format,Write the detailed calculation process and then convert the result to hexadecimal.4. A gray scale picture is digitized using four different gray levels ,If the picture is composed of100x100 pixles,how many bits are needed to represent the picture?5. A computer has 4GB(gigabyteS) of memory. Each word is 4 bytes. How many bits are needed toaddress each single word in memory?IV、Analyzing and Design(5 subjects, 8 scores for each subject)ing the bubble sort algorithm, manually sort the following list and show your work in eachpass.14 7 23 9 35 78 64 21 17 63 54 2 982. A list contains the following elements. Using the binary search algorithm, trace the steps followedto find 35. At each step, show the values of first, last and mid.3 , 7, 8, 10, 14, 21, 23, 36, 62, 77, 89, 1103.Write an algorithm to find the largest of 1000 integer numbers.4.An imaginary computer has eight data registers(R0,R1,…,R7), 2048 bytes in memory, and 4different instructions(add, subtract, etc..)(1) What is the minimum size of an instruction in bits if a typical instruction uses the followingformat: ADD 65, R2.(2) If the computer uses the same size of word for data and instructions, what is the size ofeach data register?(3) What is the size of the program counter of the computer ?5. A multiprogramming operating system uses paging. The available memory is 100MB divided into25 pages, each of 4MB, The first program needs 13MB, The second program needs 20Mb, thethirds program needs 39MB.The fourth program needs 18MB.(1)How many pages are used by the first program?(2)How many pages are unused?。

计算机专业英语试题及答案(A)-2

计算机专业英语试题及答案(A)-2

学院2007-2008学年度第一学期期末考核试卷考核课程:《计算机专业英语》考试类型: 理论考试方式: 闭卷笔试学生所在院系:计科系年级:20所级试卷: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 left columnwith those similar in meaning in the rightcolumn(将左列的词汇与右列相应的汉语匹配)(10%)1.memory unit2.intelligence3.semiconductor memon r4.data definition language5.mechanism6.machine languagemunication a.半导体存储器b.机制c.存储单元d.数据定义语言e.通信f.机器语言g・智能四、For each of the following blanks, four choices are given. Choose the 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 synthesizei; a fax machine, a CD-ROM drive, ect.A. input devicesB. expansion cardsC. output deviceD. joystick*3. The control unit fetches from memory and decodes them.-------------------------------- VA. dataB. informationC. resultsD. instructions*4. When power is removed, information in the semiconductor memory is A. reliable B. lost C. manipulatedD- remain1. ( ) 6. ( )2. ( ) 7. ( )3. ( ) 8. ( )4. ( ) 9. ( )5.( ) 10.( )8. distance education 9. pattern recognitionlO.enterprise resource planning h.远程教育 i.企业资源计划 J-模式识别得分阅卷人三、 T ranslate the following phrases into English (将下列短语翻译成板逻码菜技 统术器助形系算机帮图得分阅卷人英语)(10%)*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. Os and IsB. 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 logon 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 modeLD.it can do all above at the same time.15.By adding to your programs, you can make computers moreinteresting and much more fun for the user.五.To Identify the following to be True or False according to computer knowledge(根据计算机知识判别是非题)(10%)1. Registers in the control unit are used to keep track of the overall status of the 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 multimediae( ) 六.Reading comprehension(阅读理解)(25%)(一)Fill in the blanks with suitable words or expressions from thelist given below, and change the form where necessary (从下面所列词语中选择合适的 词语,以其适当的形式填空)(10%)high-level language assembly language written machine language notationA programming language, designed to facilitate the communication between human and computers, is a for describing computationin 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 varv onlv in the wav 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 forA. multimedia C. musicB.text D. picturedirecting 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 smaller9 which its speed and capacity have increased tremendously. Indeed, these changes have resulted in mlcro-Computers that are small enough to fit on your desk and your lap.The CPU comprise the control unit and the arithmetic/Iogic 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/Iogic unit, as well as the control signals between the CPU and input/output devices.The ALU perforins all the arithmetic and logical(comparison) functions—that is, it adds, subtracts, multiplies, divides, and does comparison. These comparisons9 which are basically “less than”,“greater than”, and “equal to”, can be combined into several common expres sions, 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学年度第一学期期末考核试卷参考答案及评分标准考核课程:计算机英语考试类型:理论 考试方式:闭卷笔试学生所在院系:计科系 年 级: 2016 试卷:A 执笔人: ______________要求:明确标注每小题或每步骤得分点一• Give out the full names for the following abbreviations (写出下列缩写词 的全称)(15%)(本题共15分,每小题1.5分)ROM: Read Only Memory CPU: Central Processing Unit BIOS: Basic Inpiit/Output Unit IT: Information Technology WWW: World Wide WebHTML: Hypertext Markup Language PCI: Peripheral Component Interconnect HR: Human ResourceGUI: Graphical User Interface MHz: Megahertz二.Match the following words and expressions in the left column with those similar inmeaning 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. (• 1 )三. 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. C 2,B 3.D 4.B 5.D 6 C 7. A 8. B 9. C 10. C IL C 12. A 13. A 14. B 15. A五.To identify the following to be True or False according to computer knowledge(根M计算机知识判别是非题)(10%)(本题共10分,每小题1分)1. ( T )2. ( F)3. (T)4. ( F )5. (T )6. ( F )7. (T )8. ( F )9. ( F )10.( F )六.Reading comprehensk)n(阅读理解)(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 thepassage A(根据上文的内容判断下列句子的正误)(15%)(本题共15分,每小题3分)l.(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. Instruction 2、primary memory which is stored on chips located_a_。

《计算机专业英语》期末考试试卷

《计算机专业英语》期末考试试卷

2014年下学期《计算机专业英语》期中考试试卷班级:_________ 姓名:________ 学号:________ 计分:________ I. 根据图片把方框里的单词或词组填入对应的空格。

(14分)1. __________________2. _________________3. __________________4. _________________5. __________________6. _________________7. __________________II. 中英文配对:将中文前的字母填入其对应的英文前的空格里。

(20分)_____ 1. input device a. 闪盘_____ 2. RAM b. 只读光盘_____ 3. floppy disk c. 芯片_____ 4. memory bank d. 移动硬盘_____ 5. output device e. 输入设备_____ 6. flash disk f. 随机存储器_____ 7. chip g. 软盘_____ 8. mobile hard disk h. 输出设备_____ 9. motherboard i. 内存条_____ 10. CD-ROM j. 主板III. 阅读理解:AMary: Hello, PC Support Center. This is Mary. What can I do for you? Customer: Hello. this is Chen Lin. I’m calling because I have some questions about my disk.Mary: Hi, Chen Lin. You can tell me one by one.Customer: I’m afraid I’ll run out of disk space. What shall I do?Mary: OK, running out of hard disk space is no big deal. You can just start moving old junks off to the CDs or you can just add a second hard disk. Customer: Oh, I see. Are there any signs before the hard drive fails?Mary: Yes, the signs may include strange sounds, noise, popping or similar problems.Customer: Thanks for your helpMary: You’re welcome.根据上文判断以下句子是否正确,正确的写“T”,错误的写“F”。

考研浙大计算机复试英语问答资料(真实问题总结)

考研浙大计算机复试英语问答资料(真实问题总结)

1.自我介绍Question: Please introduce yourself.A:Good Morning, My dear teachers. I am glad to be here for this interview. Firstly let me introduce myself. My name is ZZY, 22 years old. I am senior student from SCUT majoring in CS. For the pass three year I learn how to self-study and make friends; I come from suixi, a very beautiful and famous county of guang dong.It’s called the sweetest county of china.I am easy to get along with, and good at thinking.I am skillful in coding some simple programs and searching for information on the Internet for study or research.for the one past year I mainly do my research on stream-media and Network architecture.I’m good at network programming.In my spare time, I like reading book about Philosophy and Science.and, Besides, solving the problems on a ACM online judge system is my hobby. Ok, that is all, thank you for your patience and attention. 2.介绍自己的家庭。

计算机专业英语期末试题及答案

计算机专业英语期末试题及答案

计算机专业英语试题及答案Ⅰ. Vocabulary(词汇)(30分) (一).Translate the the following following following words words words and and and expressions expressions expressions into into into Chinese(Chinese(写出下列词组的汉语。

)(共10分,每题1分) 1.operating system 2.requirements analysis 3.network security 4.data structure 5.decision support system 6. relational database 7. software crisis 8. computer virus 9. email attachment 10.central processing unit ( CPU ) (二).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. multimedia a.字处理器字处理器2. software life cycle b.交换机交换机3. structured programming c.多媒体多媒体4. functional testing d.局域网局域网5. word processor e.结构化程序设计结构化程序设计6. code windows f.软件生命周期软件生命周期7. firewall g.功能测试功能测试8. LAN h.代码窗口代码窗口9. hacker i.黑客黑客10. switch 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 where necessary. (从下面方框中选择合适的词或表达,以其适当的形式填空。

2017-2018年研究生英语入学考试真题及解析

2017-2018年研究生英语入学考试真题及解析

2017年考研英语二试题及答案跨考教育英语教研室Section I Use of EnglishDirections:Read the following text. Choose the best word (s) for each numbered blank and mark A, B, C or D on the ANSWER SHEET. (10 points)People have speculated for centuries about a future without work .Today is no different, with academics, writers, and activists once again_____(1)that technology be replacing human workers. Some imagine that the coming work-free world will be defined by_____(2)A few wealthy people will own all the capital, and the masses will struggle in an impoverished wasteland.A different and not mutually exclusive_____(3)holds that the future will be a wasteland of a different sort, one_____(4)by purposelessness:Without jobs to give their lives_____(5), people will simply become lazy and depressed._____(6),today's unemployed don't seem to be having a great time. One Gallup poll found that 20 percent of Americans who have been unemployed for at least a year report having depression, double the rate for_____(7)Americans. Also, some research suggests that the_____(8)for rising rates of mortality, mental-health problems, and addicting_____(9)poorly-educated middle-aged people is shortage of well-paid jobs. Perhaps this is why many_____(10)the agonizing dullness of a jobless future.But it doesn't_____(11)follow from findings like these that a world without work would be filled with unease. Such visions are based on the_____(12)of being unemployed in a society built on the concept of employment. In the_____(13)of work, a society designed with other ends in mind could_____(14)strikingly different circumstanced for the future of labor and leisure. Today, the_____(15)of work may be a bit overblown. “Many jobs are boring, degrading, unhealthy, and a waste of human potential,” says John Danaher, a lecturer at the National University of Ireland in Galway.These days, because leisure time is relatively_____(16)for most workers, people use their free time to counterbalance the intellectual and emotional_____(17)of their jobs. “When I come home from a hard day's work, I often feel_____(18)," Danaher says, adding, "In a world in which I don't have to work, I might feel rather different”—perhaps different enough to throw himself_____(19)a hobby or a passion project with the intensity usually reserved for_____(20)matters.1. _____A.boasting B.denying C.warning D.ensuring 2. _____ A.inequality B.instability C.unreliability D.uncertainty 3. _____ A.policy B.guideline C.resolution D.prediction 4. _____ A.characterized B.divided C.balanced D.measured 5. _____ A.wisdom B.meaning C.glory D.freedom6. _____A.Instead B.Indeed C.Thus D.Nevertheless7. _____A.rich B.urban C.working D.educated8. _____A.explanation B.requirement C.compensation D.substitute9. _____A.under B.beyond C.alongside D.among10. _____A.leave behind B.make up C.worry about D.set aside11. _____A.statistically B.occasionally C.necessarily D.economically12. _____A.chances B.downsides C.benefits D.principles 【答案】B13. _____A.absence B.height C.face D.course14. _____A.disturb B.restore C.exclude D.yield15. _____A.model B.practice C.virtue D.hardship16. _____ A.trickyB.lengthy C.mysterious D.scarce17. _____A.demands B.standards C.qualities D.threats18. _____A.ignored B.tired C.confused D.starved【答案】B 19. _____A.off B.against C.behind D.into20. _____A.technological B.professional C.educationalD.interpersonal【答案】BSection II Reading ComprehensionPart ADirections:Read the following four texts. Answer the questions below each text by choosing A, B, C or D. Mark your answers on the ANSWER SHEET. (40 points)Text 1Every Saturday morning, at 9 am, more than 50,000 runners set off to run 5km around their local park. The Parkrun phenomenon began with a dozen friends and has inspired 400 events in the UK and more abroad. Events are free, staffed by thousands of volunteers. Runners range from four years old to grandparents; their times range from Andrew Baddeley's world record 13 minutes 48 seconds up to an hour.Parkrun is succeeding where London's Olympic "legacy" is failing. Ten years ago on Monday, it was announced that the Games of the 30th Olympiad would be in London. Planning documents pledged that the great legacy of the Games would be to level a nation of sport lovers away from their couches. The population would be fitter, healthier and produce more winners. It has not happened. The number of adults doing weekly sport did rise, by nearly 2 million in the run-up to 2012-but the general population was growing faster. Worse, the numbers are now falling at an accelerating rate. The opposition claims primary school pupils doing at least two hours of sport a week have nearly halved. Obesity has risen among adults and children. Official retrospections continue as to why London 2012 failed to "inspire a generation." The success of Parkrun offers answers.Parkun is not a race but a time trial: Your only competitor is the clock. The ethos welcomes anybody. There is as much joy over a puffed-out first-timer being clapped over the line as there is about top talent shining. The Olympic bidders, by contrast, wanted to get more people doing sports and to produce more elite athletes. The dual aim was mixed up: The stress on success over taking part was intimidating for newcomers.Indeed, there is something a little absurd in the state getting involved in the planning of such a fundamentally "grassroots", concept as community sports associations. If there is a role for government, it should really be getting involved in providing common goods-making sure there is space for playing fields and the money to pave tennis and netball courts, and encouraging the provision of all these activities in schools. But successive governments have presided over selling green spaces, squeezing money from local authorities and declining attention on sport in education. Instead of wordy, worthy strategies, future governments need to do more to provide the conditions for sport to thrive. Or at least not make them worse.21. According to Paragraph1, Parkrun has_____.A.gained great popularityB.created many jobsC.strengthened community tiesD.become an official festival22. The author believes that London's Olympic "legacy" has failed to_____.A.boost population growthB.promote sport participationC.improve the city's imageD.increase sport hours in schools【答案】B23. Parkrun is different from Olympic games in that it_____.A.aims at discovering talentsB.focuses on mass competitionC.does not emphasize elitismD.does not attract first-timers24. With regard to mass sport, the author holds that governments should_____.A.organize "grassroots" sports eventsB.supervise local sports associationsC.increase funds for sports clubsD.invest in public sports facilities25. The author's attitude to what UK governments have done for sports is_____.A.tolerantB.criticalC.uncertainD.sympathetic【答案】BText 2With so much focus on children's use of screens, it's easy for parents to forget about their own screen use. "Tech is designed to really suck on you in," says Jenny Radesky in her study of digital play, "and digital products are there to promote maximal engagement. It makes it hard to disengage, and leads to a lot of bleed-over into the family routine."Radesky has studied the use of mobile phones and tablets at mealtimes by giving mother-child pairs a food-testing exercise. She found that mothers who sued devices during the exercise started 20 percent fewer verbal and 39 percent fewer nonverbal interactions with their children. During a separate observation, she saw that phones became a source of tension in the family. Parents would be looking at their emails while the children would be making excited bids for their attention.Infants are wired to look at parents' faces to try to understand their world, and if those faces are blank and unresponsive—as they often are when absorbed in a device-it can be extremely disconcerting foe the children. Radesky cites the "still face experiment" devised by developmental psychologist Ed Tronick in the 1970s. In it, a mother is asked to interact with her child in a normal way before putting on a blank expression and not giving them any visual social feedback; The child becomes increasingly distressed as she tries to capture her mother's attention. "Parents don't have to be exquisitely parents at all times, but there needs to be a balance and parents need to be responsive and sensitive to a child’s verbal or nonverbal expressions of an emotional need," says Radesky.On the other hand, Tronick himself is concerned that the worries about kids' use of screens are born out of an "oppressive ideology that demands that parents should always be interacting" with their children: "It's based on a somewhat fantasized, very white, very upper-middle-class ideology that says if you're failing to expose your child to 30,000 words you are neglecting them." Tronick believes that just because a child isn't learning from the screen doesn't mean there's no value to it-particularly if it gives parents time to have a shower, do housework or simply have a break from their child. Parents, he says, can get a lot out of using their devices to speak to a friend or get some work out of the way. This can make them feel happier, which lets then be more available to their child the rest of the time.26. According to Jenny Radesky, digital products are designed to ______.A.simplify routine mattersB.absorb user attentionC.better interpersonal relationsD.increase work efficiency【答案】B27. Radesky's food-testing exercise shows that mothers' use of devices ______.A.takes away babies' appetiteB.distracts children's attentionC.slows down babies' verbal developmentD.reduces mother-child communication28. Radesky's cites the "still face experiment" to show that _______.A.it is easy for children to get used to blank expressionsB.verbal expressions are unnecessary for emotional exchangeC.children are insensitive to changes in their parents' moodD.parents need to respond to children's emotional needs29. The oppressive ideology mentioned by Tronick requires parents to_______.A.protect kids from exposure to wild fantasiesB.teach their kids at least 30,000 words a yearC.ensure constant interaction with their childrenD.remain concerned about kid's use of screens30. According to Tronick, kid's use of screens may_______.A.give their parents some free timeB.make their parents more creativeC.help them with their homeworkD.help them become more attentiveText 3Today, widespread social pressure to immediately go to college in conjunction with increasingly high expectations in a fast-moving world often causes students to completely overlook the possibility of taking a gap year. After all, if everyone you know is going to college in the fall, it seems silly to stay back a year, doesn't it? And after going to school for 12 years, it doesn't feel natural to spend a year doing something that isn't academic.But while this may be true, it's not a good enough reason to condemn gap years. There's always a constant fear of falling behind everyone else on the socially perpetuated "race to the finish line," whether that be toward graduate school, medical school or lucrative career. But despite common misconceptions, a gap year does not hinder the success of academic pursuits -in fact, it probably enhances it.Studies from the United States and Australia show that students who take a gap year are generally better prepared for and perform better in college than those who do not. Rather than pulling students back, a gap year pushes them ahead by preparing them for independence, new responsibilities and environmental changes-all things that first-year students often struggle with the most. Gap year experiences can lessen the blow when it comes to adjusting to college and being thrown into a brand new environment, making it easier to focus on academics and activities rather than acclimation blunders.If you're not convinced of the inherent value in taking a year off to explore interests, then consider its financial impact on future academic choices. According to the National Center for Education Statistics, nearly 80 percent of college students end up changing their majors at least once. This isn’t surprising, considering the basic mandatory high school curriculum leaves students with a poor understanding of themselves listing one major on their college applications, but switching to another after taking college classes. It’s not necessarily a bad thing, but depending on the school, it can be costly to make up credits after switching too late in the game. At Boston College, for example, you would have to complete an extra year were you to switch to the nursing school from another department. Taking a gap year to figure things out initially can help prevent stress and save money later on.31. One of the reasons for high-school graduates not taking a gap year is that_____.A.they think it academically misleadingB.they have a lot of fun to expect in collegeC.it feels strange to do differently from othersD.it seems worthless to take off-campus courses32. Studies from the US and Australia imply that taking a gap year helps_____.A.keep students from being unrealisticB.lower risks in choosing careersC.ease freshmen's financial burdensD.relieve freshmen of pressures33. The word "acclimation" (Line 8, Para. 3)is closest in meaning to_____.A.adaptationB.applicationC.motivationD.competition34. A gap year may save money for students by helping them_____.A.avoid academic failuresB.establish long-term goalsC.switch to another collegeD.decide on the right major35. The most suitable title for this text would be_____.A.In Favor of the Gap YearB.The ABCs of the Gap YearC.The Gap Year Comes BackD.The Gap Year: A DilemmaText 4Though often viewed as a problem for western states, the growing frequency of wildfires is a national concern because of its impact on federal tax dollars, says Professor Max Moritz, a specialist in fire ecology and management.In 2015, the US Forest Service for the first time spent more than half of its $5.5 billion annual budget fighting fires-nearly double the percentage it spent on such efforts 20 years ago. In effect, fewer federal funds today are going towards the agency's other work-such as forest conservation, watershed and cultural resources management, and infrastructure upkeep-that affect the lives of all Americans.Another nationwide concern is whether public funds from other agencies are going into construction in fire-prone districts. As Moritz puts it, how often are federal dollars building homes that are likely to be lost to a wildfire?"It's already a huge problem from a public expenditure perspective for the whole country," he says. We need to take a magnifying glass to that. Like, "Wait a minute, is this OK?""Do we want instead to redirect those funds to concentrate on lower-hazard parts of the landscape?" Such a view would require a corresponding shift in the way US society today views fire, researchers say.For one thing, conversations about wildfires need to be more inclusive. Over the past decade, the focus has been on climate change-how the warming of the Earth from greenhouse gases is leading to conditions that worsen fires.While climate is a key element, Moritz says, it shouldn't come at the expense of the rest of the equation."The human systems and the landscapes we live on are linked, and the interactions go both ways," he says. Failing to recognize that, he notes, leads to "an overly simplified view of what the solutions might be. Our perception of the problem and of what the solution is becomes very limited."At the same time, people continue to treat fire as an event that needs to be wholly controlled and unleashed only out of necessity, says Professor Balch at the University of Colorado. But acknowledging fire's inevitable presence in human life is an attitude crucial to developing the laws, policies, and practices that make it as safe as possible, she says."We've disconnected ourselves from living with fire," Balch says. "It is really important to understand and try and tease out what is the human connection with fire today."36. More frequent wildfires have become a national concern because in 2015 they_____.A.exhausted unprecedented management effortsB.consumed a record-high percentage of budgetC.severely damaged the ecology of western statesD.caused a huge rise of infrastructure expenditure【答案】B37. Moritz calls for the use of "a magnifying glass" to _____.A.raise more funds for fire-prone areasB.avoid the redirection of federal moneyC.find wildfire-free parts of the landscapeD.guarantee safer spending of public funds38. While admitting that climate is a key element, Moritz notes that _____.A.public debates have not settled yetB.fire-fighting conditions are improvingC.other factors should not be overlookedD.a shift in the view of fire has taken place39. The overly simplified view Moritz mentions is a result of failing to _____.A.discover the fundamental makeup of natureB.explore the mechanism of the human systemsC.maximize the role of landscape in human lifeD.understand the interrelations of man and nature40. Professor Balch points out that fire is something man should _____.A.do away withB.come to terms withC.pay a price forD.keep away from【答案】BPart BDirections:Read the following text and match each of the numbered items in the left column to its corresponding information in the right column. There are two extra choices in the right column. Mark your answers on the ANSWER SHEET. (10 points)The decline in American manufacturing is a common refrain, particularly from Donald Trump. "We don't make anything anymore," he told Fox News, while defending his own made-in-Mexico clothing line.Without question, manufacturing has taken a significant hit during recent decades, and further trade deals raise questions about whether new shocks could hit manufacturing.But there is also a different way to look at the data.Across the country, factory owners are now grappling with a new challenge: instead of having too many workers, they may end up with too few. Despite trade competition and outsourcing, American manufacturing still needs to replace tens of thousands of retiring boomers every years. Millennials may not be that interested in taking their place, other industries are recruiting them with similar or better pay.For factory owners, it all adds up to stiff competition for workers-and upward pressure on wages. "They're harder to find and they have job offers," says Jay Dunwell, president of Wolverine Coil Spring, a family-owned firm, "They may be coming [into the workforce], but they've been plucked by other industries that are also doing an well as manufacturing," Mr. Dunwell has begun bringing high school juniors to the factory so they can get exposed to its culture.At RoMan Manufacturing, a maker of electrical transformers and welding equipment that his father cofounded in 1980, Robert Roth keep a close eye on the age of his nearly 200 workers, five are retiring this year. Mr. Roth has three community-college students enrolled in a work-placement program, with a starting wage of $13 an hour that rises to $17 after two years.At a worktable inside the transformer plant, young Jason Stenquist looks flustered by the copper coils he's trying to assemble and the arrival of two visitors. It's his first week on the job. Asked about his choice of career, he says at high school he considered medical school before switching to electrical engineering. "I love working with tools. I love creating." he says.But to win over these young workers, manufacturers have to clear another major hurdle: parents, who lived through the worst US economic downturn since the Great Depression, telling them to avoid the factory. Millennials "remember their father and mother both werelaid off. They blame it on the manufacturing recession," says Birgit Klohs, chief executive of The Right Place, a business development agency for western Michigan.These concerns aren't misplaced: Employment in manufacturing has fallen from 17 million in 1970 to 12 million in 2013. When the recovery began, worker shortages first appeared in the high-skilled trades. Now shortages are appearing at the mid-skill levels."The gap is between the jobs that take to skills and those that require a lot of skill," says Rob Spohr, a business professor at Montcalm Community College. "There're enough people to fill the jobs at McDonalds and other places where you don't need to have much skill. It's that gap in between, and that's where the problem is."Julie Parks of Grand Rapids Community points to another key to luring Millennials into manufacturing: a work/life balance. While their parents were content to work long hours, young people value flexibility. "Overtime is not attractive to this generation. They really want to live their lives," she says.41.根据题干人名Jay 定位文中“They’re harder to find and they have job offers,”他们很难发现他们有工作邀请。

计算机专业英语—考试题库及答案

计算机专业英语—考试题库及答案
收藏 A. tsr program B. data file C. .com file D. .exe file
9 / 223
精品资料 欢迎下载
回答错误!正确答案: A
Assembly-language instructions are a series of _________.
收藏 A. machine codes B. 0s and 1s C. words D. abstract codes
回答错误!正确答案: D
Videodisc and laser technology provide the ability to_________
收藏 A. cost more B. enhance other forms of education C. create some education files D. store large amounts of data
2 / 223
精品资料 欢迎下载
Which of the following type of wireless devices has the highest po wer consumption? __________
收藏 A. ZigBee B. Wi-Fi C. Bluetooth D. Not mentioned
收藏 A. file B. hard C. backup D. soft
回答错误!正确答案: C
1 / 223
精品资料 欢迎下载
Which of the following is WRONG about Web 2.0? __________
收藏 A. The ideas of Web 2.0 was featured originally in late 2004. B. Web 2.0 enables business to embrace the Web as a platform and user its strengths more effectively. C. Web 2.0 enhances creativity, information sharing and collaboration among Web users. D. Web 2.0 changes the ways of software developers and end-users utilizing the web

浙大计算机机试历年真题

浙大计算机机试历年真题

浙江大学历年机试真题2011 A+B forMatricesGrading MedianGraduateAdmission2010 A+B ZOJ问题奥运排序问题最短路径问题二叉搜索树2009 xxx定律ZOJ 继续xxx定律寻找大富翁找出直系亲属2008 又一版A+B欧拉回路继续畅通工程魔咒词典毕业bg2007 最小长方形统计字符游船出租EXCEL排序畅通工程最大报销额2006 还是A+B 火星A+B 还是畅通工程统计同成绩学生人数简单计算器2005 A + B 最大连续子序列畅通工程开门人和关门人排名2011年题目1001:A+B for Matrices时间限制:1 秒内存限制:32 兆特殊判题:否提交:2490 解决:1130题目描述:This time, you are supposed to find A+B where A and B are two matrices, and then count the number of zero rows and columns.输入:The input consists of several test cases, each starts with a pair of positive integers M and N (≤10) which are the number of rows and columns of the matr ices, respectively. Then 2*M lines follow, each contains N integers in [-100, 100], separated by a space. The first M lines correspond to the elements of A and the second M lines to that of B.The input is terminated by a zero M and that case must NOT be processed.输出:For each test case you should output in one line the total number of zero rows and columns of A+B.样例输入:2 21 11 1-1 -110 92 31 2 34 5 6-1 -2 -3-4 -5 -6样例输出:15题目1002:Grading题目描述:Grading hundreds of thousands of Graduate Entrance Exams is a hard work. It is even harder to design a process to make the results as fair as possible. One way is to assign each exam problem to 3 independent experts. If they do not agree to each other, a judge is invited to make the final decision. Now you are asked to write a program to help this process.For each problem, there is a full-mark P and a tolerance T(<P) given. The grading rules are: • A problem will first be assigned to 2 experts, to obtain G1 and G2. If the differenc e is within the tolerance, that is, if |G1 - G2| ≤ T, this problem's grade will be the average of G1 and G2.• If the difference exceeds T, the 3rd expert will give G3.• If G3 is within the tolerance with either G1 or G2, but NOT both, then this p roblem's grade will be the average of G3 and the closest grade.• If G3 is within the tolerance with both G1 and G2, then this problem's grade will be the maximum of the three grades.• If G3 is within the tolerance with neither G1 nor G2, a judge will give the final grade GJ.输入:Each input file may contain more than one test case.Each case occupies a line containing six positive integers: P, T, G1, G2, G3, and GJ, as described in the problem. It is guaranteed that all the grades are valid, that is, in the interval [0, P]. 输出:For each test case you should output the final grade of the problem in a line. The answer must be accurate to 1 decimal place.样例输入:20 2 15 13 10 18样例输出:14.0题目1004:Median题目描述:Given an increasing sequence S of N integers, the median is the number at the middle position. For example, the median of S1={11, 12, 13, 14} is 12, and the median of S2={9, 10, 15, 16, 17} is 15. The median of two sequences is defined to be the median of the non-decreasing sequence which contains all the elements of both sequences. For example, the median of S1 and S2 is 13.Given two increasing sequences of integers, you are asked to find their median.输入:Each input file may contain more than one test case.Each case occupies 2 lines, each gives the information of a sequence. For each sequence, the first positive integer N (≤1000000) is the size of that sequence. Then N integers follow, separated by a space.It is guaranteed that all the integers are in the range of long int.输出:For each test case you should output the median of the two given sequences in a line.样例输入:4 11 12 13 145 9 10 15 16 17样例输出:13题目1005:Graduate Admission题目描述:It is said that in 2011, there are about 100 graduate schools ready to proceed over 40,000 applications in Zhejiang Province. It would help a lot if you could write a program to automate the admission procedure.Each applicant will have to provide two grades: the national entrance exam grade GE, and the interview grade GI. The final grade of an applicant is (GE + GI) / 2. The admission rules are: • The applicants are ranked according to their final grades, and will be admitted one by one from the top of the rank list.• If there is a tied final grade, the applica nts will be ranked according to their national entrance exam grade GE. If still tied, their ranks must be the same.• Each applicant may have K choices and the admission will be done according to his/her choices: if according to the rank list, it is one's turn to be admitted; and if the quota of one's most preferred shcool is not exceeded, then one will be admitted to this school, or one's other choices will be considered one by one in order. If one gets rejected by all of preferred schools, then this unfortunate applicant will be rejected.• If there is a tied rank, and if the corresponding applicants are applying to the same school, then that school must admit all the applicants with the same rank, even if its quota will be exceeded.输入:Each input file may contain more than one test case.Each case starts with a line containing three positive integers: N (≤40,000), the total number of applicants; M (≤100), the total number of graduate schools; and K (≤5), the number of choices an applicant may have.In the next line, separated by a space, there are M positive integers. The i-th integer is the quota of the i-th graduate school respectively.Then N lines follow, each contains 2+K integers separated by a space. The first 2 integers are the applicant's GE and GI, respectively. The next K integers represent the preferred schools. For the sake of simplicity, we assume that the schools are numbered from 0 to M-1, and the applicants are numbered from 0 to N-1.输出:For each test case you should output the admission results for all the graduate schools. The results of each school must occupy a line, which contains the applicants' numbers that school admits. The numbers must be in increasing order and be separated by a space. There must be no extra space at the end of each line. If no applicant is admitted by a school, you must output anempty line correspondingly.样例输入:11 6 32 1 2 2 2 3100 100 0 1 260 60 2 3 5100 90 0 3 490 100 1 2 090 90 5 1 380 90 1 0 280 80 0 1 280 80 0 1 280 70 1 3 270 80 1 2 3100 100 0 2 4样例输出:0 1035 6 72 81 42010题目1003:A+B题目描述:给定两个整数A和B,其表示形式是:从个位开始,每三位数用逗号","隔开。

计算机英语试题及答案

计算机英语试题及答案

KEY TO COMPUTER ENGLISH TESTPAPER ONE(120 minutes)Part One: Translate the following words from English into Chinese and vice versa. (10 points)template(模板)algorithm(算法)retrieve(检索)embed(把…嵌入)firmware(固件)topology(拓扑结构)metadata(元数据)surfer(网上冲浪者)bandwidth(带宽)spreadsheet(电子数据表,电子表格)调制解调器(modem)节点(node)扫描仪(scanner)域(domain)微芯片(microchip)网关(gateway)工作站(workstation)(鼠标)点击(click)虚拟的(virtual)端口(port)Part Two: Translate the following phrases from English into Chinese and vice versa. (10 points)源代码(source code)数据库对象(database object)硬件平台(hardware platform)搜索引擎(search engine)地址总线(address bus)character set(字符集)command-line interface(命令行界面)entity relationship diagram(实体关系图)public key cryptosystem(公钥密码系统)root hub(根集线器)Part Three: Write in full the following abbreviations and give their Chinese meaning. (10 points)GUI(Graphical User Interface图形用户界面)IP(Internet Protocol网际协议)HTML(Hypertext Markup Language超文本标记语言)BBS(Bulletin Board System公告板系统)SQL(Structured Query Language结构化查询语言)Part Four: Translate the following passage from English into Chinese. (20 points) UNIX is a popular operating system among computer programmers and computer scientists. It is a very powerful operating system with three outstanding features. First, UNIX is a portable operating system that can be moved from one platform to another without many changes. Thereason is that it is written mostly in the C language instead of a machine language for a specific system. Second, UNIX has a powerful set of utilities (commands) that can be combined in an executable file called a script to solve many problems that require programming in other operating systems. Third, it is device independent because it includes the device drivers in the operating system itself, which means that it can be easily configured to run any device. In summary, UNIX has every feature that a powerful operating system has. The only criticism heard often about UNIX is that its commands are short and esoteric (深奥的)for normal users; in fact, it is very convenient for programmers who need short commands.UNIX是一个在计算机程序设计员和计算机科学家中广为流行的操作系统。

2017-2018-2学期期末考试试题

2017-2018-2学期期末考试试题

2017-2018-2学期期末考试试题说明:本试卷分第I卷(选择题)和第II卷(非选择题)两部分。

满分120分,考试时间100分钟。

答案写在答题卡上,交卷时只交答题卡。

第I卷(选择题)第一部分阅读理解(共两节,满分30分)第一节阅读理解(共10小题每小题2分,满分20分)阅读下列短文,从每题所给的四个选项中,选出最佳选项,并在答题卡上将该选项涂黑。

AWe are busy talking about and using the Internet, but how ma ny of us know the history of the Internet?Many people are surprised when they find that the Internet wa s set up in the 1960s. At that time, computers were large and expensive. Computer network didn’t work well. If one compute r in the network broke down, then the whole network stopped. So a new network system had to be set up. It should be good enough to be used by many different computers. If part of the network was not working, information could be sent through a nother part. In this way computer network system would keepon working on the time.At first the Internet was only used by the government, but in th e early 1970s, universities, hospitals and banks were allowed to use it too. However, computers were still very expensive an d the Internet was difficult to use. By the start of the 1990s, co mputers became cheaper and easier to use. Scientists had al so developed software that made “surfing” in the Internet mor e convenient.Today it is easy to get on-line and it is said that millions of people use the Internet every day. Sending e-mail is more and more popular among students.The Internet has now become one of the most important parts of people’s life.1. A new network system was set up to _________.A. make computers cheaperB. make itself keep on working all the timeC. break down the whole networkD. make computers large and expensive2. __________ made “surfing” the Internet more convenient.A. ComputersB. HardwareC. SoftwareD. Information3. Which of the following is TRUE?A. In the 1960s, computer network worked well.B. In the early 1970s, the Internet was easy to use.C. Today it’s still not easy to get on-line.D. Sending e-mail is now more popular among students than before.【答案】1. B 2. C 3. D【解析】本文是一篇说明文。

  1. 1、下载文档前请自行甄别文档内容的完整性,平台不提供额外的编辑、内容补充、找答案等附加服务。
  2. 2、"仅部分预览"的文档,不可在线预览部分如存在完整性等问题,可反馈申请退款(可完整预览的文档不适用该条件!)。
  3. 3、如文档侵犯您的权益,请联系客服反馈,我们会尽快为您处理(人工客服工作时间:9:00-18:30)。

浙江大学2017-2018学年秋冬学期
《计算理论》课程期末考试试卷
课程号:21120520开课学院:计算机学院
考试试卷: A卷 B卷
考试形式: 闭卷 开卷,允许带入场
考试日期:2018年1月24日,考试时间:120分钟
诚信考试,沉着应考,杜绝违纪
考生姓名学号所属院系
题序123456总分
得分
评卷人
Zhejiang University
Theory of Computation,Fall-Winter2017
Final Exam
1.(24pts)Determine whether the following statements are true or false.If
it is truefill a T otherwise a F in the bracket before the statement.
(a)()Let A,B be two languages.If both A and A∪B are regular,then B is
definitely regular.
(b)()If A is regular and B is non-regular,then A◦B must be non-regular.
(c)()Language{xcy|x,y∈{a,b}∗,|x|≤|y|≤3|x|}is context-free.
(d)()Every regular language can be generated by a context-free grammar.
(e)()If A is recursive and B⊆A,then B is recursive as well.
(f)()Recursively enumerable languages are always infinite.
(g)()There’s a functionφsuch thatφcan be computed by some Turing ma-
chines,yetφis not a primitive recursive function.
(h)()Let A and B be recursively enumerable languages and A∩B=∅.If A∪B
is also recursively enumerable,then both A and B is decidable.
(i)()The language{“M”“w”|TM M accepts w in less than2018steps}is
recursive.
(j)()The language{“M”|TM M accepts exactly2018strings}is recursively enumerable but not recursive.
(k)()Let H e={“M”|TM M halts on e}.If H e≤L,then L is recursive enumerable but not recursive.
(l)()A language L is recursive if and only if it is Turing-enumerable.
2.(18pts)On FA and Regular Languages
Say whether each of the following languages is regular or not regular?Prove your answers,where{a,b}+={a,b}∗◦{a,b}.
(a)L1={wtw|w,t∈{a,b}+}
(b)L2={wtw|w,t∈{a,b}∗}
3.(20pts)On PDA and Context-Free Languages
Let L3={ww R ca m b n|w∈{a,b}∗,m,n∈N,m=n}.
(a)Construct a context-free grammar that generates the language L3.
(b)Construct a pushdown automata that accepts L3.
Solution:
(a)
(b)The PDA M=(K,Σ,Γ,∆,s,F)is defined below:
(q,σ,β)(p,γ)
K=
Σ={a,b,c}
Γ=
s=
F=
4.(10pts)On Turing Machine
Design a single tape Turing machine M that decides the language L4
L4={uvcww R|u,v,w∈{a,b}∗,|u|=2|v|}
When describing the Turing machines above,you can use the elementary Turing machines described in textbook.Always assume that your Turing machine starts from the configuration◃⊔x,where x is the input string.
5.(10pts)On Primitive Recursive Function
→N,and k∈N,k≥2 Show the following functionφk:N×N×···×N
k
{n1,n2,···,n k}
φk(n1,n2,···,n k)=max
k
is primitive recursive.
6.(18pts)On Undecidability
Classify whether each of the following languages are recursive,recursively enumerable but not recursive,or non-recursively enumerable.Prove your answers,but you may not simply appeal to Rice’s theorem.
(a)L5={“M”|M is a TM,and L(M)is uncountable}
(b)L6={“M”|TM M accepts at least two strings of different lengths}
Enjoy Your Spring Festival!。

相关文档
最新文档