文档库 最新最全的文档下载
当前位置:文档库 › 计算机专业英语文章-存储器

计算机专业英语文章-存储器

计算机专业英语文章-存储器
计算机专业英语文章-存储器

Memory Devices

1)RANDOM-ACCESS MEMORY

Random-access memory,or RAM,is the kind of memory we usually refer to when we speak of computer memory.It is the most widely used type,and consists of rows of chips with locations established in tables maintained by the control unit.

As the name suggests,items stored in RAM can be gotten(accessed)both easily and in any order(randomly)rather than in some sequence.RAM relies on electric current for all its operations;moreover,if the power is turned off or interrupted,RAM quickly empties itself of all your hard work.Thus,we say RAM is-volatile,or nonpermanent.

2)READ-ONLY MEMORY

Read-only memory,or ROM,typically holds programs.These programs are manufactured,or“hard-wired”in place on the ROM chips.For example,a microcomputer has a built-in ROM chip(sometimes called ROM BIOS,for ROM basic input/output system)that stores critical programs such as the one that starts up,or“boots”,the computer.ROM is“slower”than RAM memory,and as a result,items in ROM are transferred to RAM when needed for fast processing.

Items held in ROM can be read,but they cannot be changed or erased by normal input methods.New items cannot be written into ROM.The only way to change items in most forms of ROM is to change the actual circuits.

3)MAGNETIC DISKS

The magnetic disk is a circular platter with a smooth surface and a coating that can be magnetized.Data is stored on it as magnetized spots.The reading and recording device,the disk drive,spins the disk past read/write heads that detect or write the magnetized spots on the disk.

4)CD-ROMS

Optical disks need thin beams of concentrated light to store and read data.It is a form of laser storage,called CD-ROM.

There are two types of optical disks that can he user-recorded:WORM and erasable optical.WORM stands for“write once,read many”:Data can be written to this disk just one time,but the data can be read many times.Erasable optical disks can be written to,read,and erased.

5)MAGNETIC TAPE

A magnetic tape is a narrow plastic strip similar to the tape used in tape recorders.The tapes are read by tape drive moving the tape past a read/write head,which detects or writes magnetized spots on the iron-oxide coating of the tape.Each pattern of spots matches the byte code for character being stored.

存储器

1)随机存储器

随机存储器或称RAM,是人们常说的计算机存储器。它是使用最广的一种类型,由一组芯片构成,其存储单元由控制部件中的地址表管理。

顾名思义,RAM中的内容可以很容易地以任意顺序(随机地)读出(或称访问),而不用考虑什么先来后到。RAM始终靠电流进行操作;而且,如果电源关闭或中断,RAM会很快丢失,人们辛辛苦苦存入的内容。因此人们把RAM称为易失性或非永久性的存储器。

2)只读存储器

只读存储器或ROM,主要用来存储程序。这些程序是做在ROM芯片中或者说通过硬连线实现的。例如在微型计算机中就有内置ROM芯片(有时称为ROM BIOS,即ROM基本输入输出系统),该芯片存储一些关键的程序,如计算机的启动或引导程序。ROM的读取速度比RAM慢,因此如果需要快速处理,则将ROM

中的内容传送到RAM中。

ROM中的内容可以读,但不能用一般的输入方法更改或擦除。新的内容也不能写入ROM。在大多数型号ROM中改变内容的惟一方法是更换实际电路。

3)磁盘

磁盘是一个表面光滑且涂敷可磁化材料的圆盘。数据在磁盘上作为磁化点存入。读出与记录设备即磁盘驱动器驱动磁盘转动,当通过读写磁头时,磁头从磁盘上的磁化点检测出或写入信息。

4)只读光盘

光盘用细聚光光束去存储和读出数据。CD-ROM是激光存储器的一种形式。

用户使用的可读写光盘有两种类型:WORM和可擦除的光盘。WORM代表一次写多次读:数据只能写入一次但可读出多次。可擦除光盘可以读、写和擦除。

5)磁带

磁带是一种类似于录音磁带的窄塑料带。由磁带驱动器去读磁带的内容。驱动器驱动磁带,由读写磁头检出或写入由氧化铁涂敷的磁化点,以各磁化点的不同极性表示所存储字符的二进制代码。

计算机专业英语第3章在线测试

A B C D The data, when they are not encrypted, are called A B C D A virus is a A B C D Many viruses go resident in the memory like a ( ). A B C D Now, about ( ) different viruses account for all the viruses that actually spread in t A B C D

C、attack phase D、create phase 2、( ) maybe a certain cause that some viruses infect upon. A、a day B、a time C、an external event on your PC D、a counter within the virus 3、Many viruses do harmful things such as ( ). A、deleting files B、simulating typos C、slowing your PC down D、changing random data on your disk 4、If a virus simply reproduce and have no cause for an attack phase, but it will still ( ) without your permission. A、stealing storage B、pilfer CPU cycles C、del_ete files D、play music 5、Some viruses, with no attack phase, often damage the programs or disks they infect bec ause they ( ). A、have bugs in them B、contain poor quality code C、steal storage D、show messages on your screen 第三题、判断题(每题1分,5道题共5分)

计算机专业英语及翻译Unit 7

Unit 7 The Fundamentals of Computer Software Text 1 Data Structure A data structure is a data type. Its values are composed of component elements that are related by some structure. Since a data structure is a data type, it has a set of operations on its values. In addition, there may be operations that act on its component elements. The operations of a structured data type might not only act on the values of the data type, they might also act on component elements of the data structure. The data type’s arrays and record s are native to many programming languages. By using the pointer data type and dynamic memory allocation, many programming languages also provide the facilities for constructing linked structures. The first two higher-level abstract data types are stacks and queues. They are extremely important to computing. A stack is a data type. Its major attributes are the way the insertion and deletion of its elements. The only element that can be deleted or removed is the one that was inserted most recently. Such a structure is said to have a last-in/first-out (LIFO) behavior. Queues are familiar to us. The line of people waiting for service at a bank is an example of queues. The main feature of queues is that they follow a first-come/first-served rule. In queues, the earliest element inserted is the first served. In social settings, the rule appeals to our sense of equality and fairness.There are many applications of the first-in/first-out (FIFO) protocol of queues in computing. For example, the line of I/O requests waiting for access to a disk drive might be a queue. The line of computing jobs waiting to be run on a computer system might also be a queue. 参考译文 数据结构 数据结构是一种数据类型,其值是由通过某种结构相互关联的组成元素所构成的。 由于数据结构是一种数据类型,因此它有一组针对这些值的操作;而且,可能有一些操作是作用于其组成元素的。结构化的数据类型的操作不仅可以作用于数据类型的值,并且也可以作用于数据结构的组成元素。 数据类型数组和记录对众多程序设计语言来说都是固有的数据类型。通过使用指针数据类型和动态存储分配,很多程序设计语言还提供了建立链接结构的功能。我们将要讨论的两种更高一级的抽象数据类型是堆栈和队列,它们对计算至关重要。 堆栈是一种数据类型,其主要性质是由支配其元素的插入与删除的规则来决定的。惟一能被删除或移去的元素只能是最后插入的元素,这就是所谓具有后进先出(LIFO)性质的结构。 队列对我们来说是非常熟悉的。在银行等待服务的一队人,就是队列的一个例子。队列的主要特征是遵循先来先服务的规则。在队列中,最先插入的元素将最先被服务。这种原则

计算机专业英语第四章译文

第四单元 课文A:计算机程序 一、引言 计算机程序是指导计算机执行某个功能或功能组合的一套指令。要使指令得到执行,计算机必须执行程序,也就是说,计算机要读取程序,然后按准确的顺序实施程序中编码的步骤,直至程序结束。一个程序可多次执行,而且每次用户输给计算机的选项和数据不同,就有可能得到不同的结果。 程序可分为两大类:应用程序和操作系统。应用程序直接为用户执行某项功能,如字处理或玩游戏。操作系统管理计算机和与之相连的各种资源和设备,如随机访问存储器、硬盘驱动器、监视器、键盘、打印机和调制解调器,以便使其他程序可以使用它们。操作系统的例子包括:DOS、Windows 95、OS/2和UNIX。 二、程序开发 软件设计者通过特殊的应用程序来开发新程序,这些应用程序常被称作实用程序或开发程序。程序员使用称作文本编辑器的另一种程序,来以称作编程语言的特殊标记编写新程序。使用文本编辑器,程序员创建一个文本文件,这个文本文件是一个有序指令表,也称为程序源文件。构成程序源文件的单个指令被称为源代码。在这个时候,一种特殊的应用程序将源代码翻译成机器语言或目标代码——操作系统将认作真程序并能够执行的一种格式。 将源代码翻译成目标代码的应用程序有3种:编译器、解释器和汇编程序。这3种应用程序在不同类型的编程语言上执行不同的操作,但是它们都起到将编程语言翻译成机器语言的相同目的。 编译器将使用FORTRAN、C和Pascal等高级编程语言编写的文本文件一次性从源代码翻译成目标代码。这不同于BASIC等解释执行的语言所采取的方式,在解释执行的语言中程序是随着每条指令的执行而逐个语句地翻译成目标代码的。解释执行的语言的优点是,它们可以立即开始执行程序,而不需要等到所有的源代码都得到编译。对程序的更改也可以相当快地作出,而无需等到重新编译整个程序。解释执行的语言的缺点是,它们执行起来慢,因为每次运行程序,都必须对整个程序一次一条指令地翻译。另一方面,编译执行的语言只编译一次,因此计算机执行起来要比解释执行的语言快得多。由于这个原因,编译执行的语言更常使用,而且在专业和科学领域几乎总是得到采用。 另一种翻译器是汇编程序,它被用于以汇编语言编写的程序或程序组成部分。汇编语言也是一种编程语言,但它比其他类型的高级语言更接近于机器语言。在汇编语言中,一条语句通常可以翻译成机器语言的一条指令。今天,汇编语言很少用来编写整个程序,而是最经常地采用于程序员需要直接控制计算机某个方面功能的场合。 程序经常被编写作一套较小的程序段,每段代表整个应用程序的某个方面。各段独立编译之后,一种被称为连接程序的程序将所有编译好的程序段组合成一个可以执行的完整程

计算机专业英语

计算机专业英语文档编制序号:[KKIDT-LLE0828-LLETD298-POI08]

Chapter1 Competencies After you have read this chapter, you should be able to: 1. Explain the five parts of an information system: people, procedures, software, ?hardware, and data. 2. Distinguish between system software and application software. 3. Discuss the three kinds of system software programs. 4. Distinguish between basic and specialized application software. 5. Identify the four types of computers and the four types of microcomputers. 6. Describe the different types of computer hardware including the system unit, input, output, storage, and communication devices. 7. Define data and describe document, worksheet, database, and presentation files. 8. Explain computer connectivity, the wireless revolution, and the Internet. 第一章能力 当你阅读本章,你应该能够: 1。解释了信息系统的五个部分:人,程序,软件,

计算机专业英语7_8_9_10章

计算机专业英语(2006-2007学年04本) Computing Essentials CHAPTER 7 CONNECTIVITY, THE WIRELESS REVOLUTION, AND COMMUNICATIONS 连接、无线革命和通讯 Connectivity 连接,连接性 Bluetooth 蓝牙(技术) Communication systems 通讯系统 Sending and receiving devices 发送和接受设备 Communication channel 通讯信道 Connection decices 连接设备 Data transmission specification 数据转送规格说明规范 //////////////////////////////////////////////////////////// Concept Check What is the wireless revolution? Describer the four elements of every communication system? //////////////////////////////////////////////////////////// Communication channels 通讯信道 Telephone lines 电话线

Twisted pair 网络双绞线 Coaxial cable 同轴电缆 Microwave 微波 Line of sight communication 视线通讯(微波) Satellite 人造卫星 Fiber-optic cable 光纤电缆 Concept Chack Discuss the types of communication channels. Which is the fastest form of cable communications channels? What is one limitation of microwave communication? Analog signals 模拟信号 Digital signals 数字信号 Modem 调制解调器 Modulation 调制 Demodulation 解调 External modem 外置调制解调器 Internal modem 内置调制解调器 PC card modem Wireless modem 无限调制解调器

计算机专业英语教程(第三版)练习答案

计算机专业英语教程Array第三版练习参考答案 Unit 1 [Ex 1] 1. F 2. T 3. T 4. F 5. T 6. T 7. T 8. T 9. T 10. F [Ex 2] 1. input, storage, processing, and output 2. power; speed; memory 3. central processing unit 4. internal; primary; memory 5. keyboard; central processing unit; main memory; monitor [Ex 3] A. 1. F 2. D 3. G 4. C 5. B 6. A 7. E 8. H B. 1. user 2. monitor 3. data 4. keyboard 5. data processing 6. information 7. computer 8. memory [Ex 4] 1. input device 2. screen, screen 3. manipulates 4. instructions 5. retrieve 6. code 7. hard copy 8. function [Ex 5] 1. T 2. T 3. F 4. F 5. T 6. F 7. T 8. F Unit 2 [Ex 1] 1. T 2. F 3. T 4. F 5. T 6. T 7. T 8. F [Ex 2] 1. sizes, shapes, processing capabilities 2. supercomputers, mainframe computers, minicomputers, microcomputers 3. mainframe computer 4. microcomputers, storage locations 5. protables, laptop computers/notebook/palm-sized computer. desktop workstations 6. semiconductor 7. CPU, memory, storage, devices, processing, users 8. microprocessor chip [Ex 3] A. 1. C 2. A 3. H 4. I 5. E 6. F 7. G 8. B B. 1. capacity 2. device 3. laptop computer 4. Portable computers 5. Silicon 6. semiconductor 7. workstation 8. voltage 9. RAM 10. ROM [Ex 4] 1. portable 2. access 3. main memory 4. sophisiticated programs 5. processing capability 6. instructions 7. computation 8. computer professional [Ex 5] 1. T 2. T 3. T 4. F 5. F 6. T 7. F 8. T 9. F 10. T 11. F 13. T 14. T Unit 3 [Ex 1] 1. T 2. F 3. T 4. T 5. T 6. T 7. F 8. F 9. T 11. T 12. F 13. F 14. T [Ex 2] 1. microprocessor 2. bus 3. register 4. control unit 5. processor 6. binary 7. arithmetic, logical 8. milliseconds, nanoseconds. 9. instruction 10. execution 11. megahertz 12. wordsize [Ex 3] A. 1. F 2. A 3. J 4. C 5. D 6. E 7. H 8. I 9. B 10. G B. 1. Storage 2. chip 3. registers 4. ALU 5. bus 6. control unit 7. machine language 8. binary system 9. bits 10. computer program [Ex 4] 1. configuration 2. converts 3. data buses 4. characters

济南大学计算机专业英语第一章答案

Homework of Chapter One 1. Chapter 1 Multiple Choice Select the best answer for each question below. When you are finished, check your answers by clicking the 'Check Answers' button at the bottom of the page. 1. People, procedures, software, hardware, and data are the five parts of a(n) competency system computer system information system software system 2. Procedures are typically documented in manuals written by computer specialists end users Microsoft service providers 3. Which of the following is an example of connectivity data hard disk

Internet power cord 4. Windows 7 is an example of a(n) application software browser operating system shareware 5. The most powerful type of computer. mainframe computers microcomputers minicomputers supercomputers 6. The system component that controls and manipulates data in order to produce information is called the keyboard microprocessor monitor mouse

《计算机专业英语》第03章在线测试

《计算机专业英语》第03章在线测试 A B C D Windows gives you more control over the ________ A B C D The most important program on any computer is________ A B C D 、____is a word processing tool that helps you to crea A B C D ( )as a significant majority of market share in the desktop A B C D

D、Windows 2000 Datacenter Server 2、Windows 2000 has the key technologies, they are ( ). A、flat directory B、security C、active directory D、enterprise management 3、Active Directory supports ( ). A、delegation of administrative task B、granular access control C、encapsulation D、inheritance 4、Common contemporary operating systems include __________________________. A、Mac OS B、Microsoft Windows C、Linux D、Solaris 5、Microsoft Windows currently supports _______ and _______file systems A、NTFS B、ext2 C、FAT D、NILFS E、OCFS 第三题、判断题(每题1分,5道题共5分) 1、Operating systems are unique to their manufacturers.

计算机专业英语教程(第四版)习题答案解析

计算机专业英语(第四版)课后习题答案 Unit 1 [Ex 1] 1. F 2. T 3. T 4. F 5. T 6. T 7. T 8. T 9. T 10. F [Ex 2] 1. input, storage, processing, and output 2. power; speed; memory 3. central processing unit 4. internal; primary; memory 5. keyboard; central processing unit; main memory; monitor [Ex 3] A. 1. F 2. D 3. G 4. C 5. B 6. A 7. E 8. H B. 1. user 2. monitor 3. data 4. keyboard 5. data processing 6. information 7. computer 8. memory [Ex 4] 1. input device 2. screen, screen 3. manipulates 4. instructions 5. retrieve 6. code 7. hard copy 8. Function [Ex. 5] 新处理器开始IT技术的新时代 New Processors Open New Era of IT Technologies Last week, Intel introduced to the public in Russia and other CIS countries a family of processors Intel Xeon E5-2600. They are more powerful and reliable and, importantly, are very economical in terms of energy consumption. Their presence opens a new era in the field of IT technologies and means that the cloud technology is getting closer. These processors are primarily designed for servers, data centers (DPC) and supercomputers. The emergence of this class of devices is not accidental. According to the regional director of Intel in Russia and other CIS states Dmitri Konash who spoke at the event, the market of IT-technology is developing so rapidly that, according to forecasts, by 2015 there will be 15 billion devices connected to the Internet, and over 3 billion of active users. 上周,英特尔公司向俄罗斯和其它独联体国家的公众推出了英特尔Xeon E5-2600系列处理器,它们更加强大可靠,尤其是在能量消耗方面更加经济实惠。它们的问世意味着IT技术领域开始了一个新时代,标志着云技术距离我们越来越近。 这些处理器主要是为服务器、数字处理中心和超级计算机设计的。这种处理器的出现并非偶然。根据英特尔公司俄罗斯和其他独联体地区负责人Dmitri Konash就此事发表的看法,IT技术市场的发展速度极快,根据预测,到2015年与英特网连接的设施将有150亿,用户超过30亿。 [Ex 6] 1. T 2. T 3. F 4. F 5. T 6. F 7. T 8. F Unit 2 [Ex 1] 1. T 2. F 3. T 4. F 5. T 6. T 7. T 8. F [Ex 2] 1. sizes, shapes, processing capabilities

计算机专业英语

Chapter1 Competencies After you have read this chapter, you should be able to: 1. Explain the five parts of an information system: people, procedures, software, hardware, and data. 2. Distinguish between system software and application software. 3. Discuss the three kinds of system software programs. 4. Distinguish between basic and specialized application software. 5. Identify the four types of computers and the four types of microcomputers. 6. Describe the different types of computer hardware including the system unit, input, output, storage, and communication devices. 7. Define data and describe document, worksheet, database, and presentation files. 8. Explain computer connectivity, the wireless revolution, and the Internet. 第一章能力 当你阅读本章,你应该能够: 1。解释了信息系统的五个部分:人,程序,软件, 硬件和数据。

计算机专业英语全部答案(第三版)

计算机专业英语全部答案(第三版)

Unit1 EX1 1 F 2 T 3 T 4 F 5 T 6 F 7 T 8 T 9 T 10F EX2 Input hardware, storage hardware, processing hardware, output hardware power, speed, memory central processing unit internal, primary, memory keyboard, central processing unit, main memory, monitor EX3 PARTA 1 F 2 D 3 G 4 C 5 B 6 A 7 E 8 H EX3 PART B 1 F 2 E 3 G 4 B 5 A 6 C 7D 8 H EX4 1 input device 2 screen 3 manipulates 4 instructions 5 retrieve 6 codes 7 hardcopy 8 function EX5 1 T 2 T 3 F 4 F 5 T 6 F 7 T 8 T

UNIT2 EX1 1 T 2 F 3 T 4 F 5 T 6 F 7 T 8 F EX2 1 sizes, shapes, processing capabilities 2 supercomputers, mainframe computers, minicomputers, microcomputers 3 mainframe computer 4 microcomputer, storage locations 5 portables, laptop computers, desktop workstations 6 semiconductor 7 CPU, memory, storage, devices, processing, users 8 microprocessor chip EX3 PARTA 1 C 2 A 3 H 4 I 5 E 6 F 7 G 8 J EX3 PARTB 1 capacity 2 device 3 laptop computer 4 Portable computers 5 Silicon 6 semiconductor 7 workstation 8 Voltage, voltage 9 RAM 10ROM EX4 1 portable 2 access 3 main memory

计算机专业英语教程(第三版)(unit5——)

Unit 5 Ex1: 1 T 2 T 3 F 4 T 5 F 6 F 7 F 8 T 9 T 10 T 11F 12T 13F 14F 15T 16T 17F 18T 19F 20F 21T 22T 23T EX2 1.mail, courier 2.hub, star 3.local area network 4.packets 5.Ethernet 6.kilobits per second, megabits per second, gigabits per second 7.circuit switching 8.reassembled 9.internet protocol, transmission control protocol 10.datagrams 11.frames 12.binary, decimal EX3 part A 1 C 2 E 3 B 4 F 5 A 6 D 7 H 8 G EX3 part B 1.hub 2.zipped 3.decimal 4.frame 5.binary number 6.internet 7.packet 8.bandwidth EX4 1.forwarded 2.reassembled 3.are encapsulated 4.cable 5.bursty 6.submit 7.are retransmitted 8.protocol EX5

1.IP address 2.notation 3.dotted-decimal https://www.wendangku.net/doc/7f2984989.html,puter network 5.background 6.shared 7.geographic 8.privacy Exercise to the Passage for Reading EX6 1.有意为维修技师使用所留 2.被弃的、丢失的或损坏了的数据都进了数据桶。 3.比大多数人怀疑的那样有更少的相同之处。 4.只能由真正有特殊才能的人所打造的核心技术。 5.程序和文件 6.(1)和拓展程序所能(5)敏感信息的干涉者 7.隐藏的特性和控制开发复杂性 8.(2)意在用权宜而不清晰的方式解决某一特别难以解决情形的聪明的编程窍门。 9.不能很好地和人沟通 10.对程式,数据结构或整个程序 11.互相指责别人和不适当的团组有关 12.(1)打免费长途电话(2)但并不限于通讯网络 13.眼部疲劳 14.(1)他们认为微不足道或令人讨厌的问题。 15.没人能发现这些漏洞,或者,即便发现了,也不会探究利用。 16.受雇攻入某地以检测其安全性 17.用了很多GO To语句,例外语句或其它非结构化的分支构造 18.其后,没有定时作适当的压制(炸弹爆炸)的工作, 19.善意 20.在发布前很久 21.这种技术可能不能运转,如果真是这样,人们再不会知道是为什么 22.在Suns系统中,是L1—A,在苹果机中,是! 23.它完全不起作用,系统想做些什么,但被卡住了,不能取得进展 24.(1)指与计算机软硬件相对的人的神经系统,(2)此计算机系统的软硬件 25.在紧急关头,能很快找到程序缺陷并予以修复 26.指头脑封闭的人 Unit 6 Unit6 EX1 1 F 2 T 3 F 4 T 5 T 6 F 7 F 8 T 9 T 10 F 11F 12F 13T

计算机专业英语教程(第四版)习题答案

计算机专业英语教程(第四版)习题答案
计算机专业英语(第四版)课后习题答案 Unit 1 [Ex 1] Fb5E2RGbCAP [Ex 2] 1. input, storage, processing, and output 2. power; speed; 1. F 2. T 3. T 4. F 5. T 6. T 7. T 8. T 9. T 10.
memoryp1EanqFDPw 3. central processing unit memoryDXDiTa9E3d 5. keyboard; [Ex 3] B. A. central processing unit; 1. F 2. D 2. monitor 3. G 4. C 5. B main memory; 6. A 7. E monitorRTCrpUDGiT 8. H5PCzVD7HxA 4. internal; primary;
1. user
3. data
4. keyboard
5. data processingjLBHrnAILg
6. information [Ex 4] instructions
7. computer
8. memory 3. manipulates 4.
1. input device 2. screen, screen 5. retrievexHAQX74J0X 8. Function
6. code 7. hard copy
[Ex. 5] 新处理器开始 IT 技术的新时代 New Processors Open New Era of IT Technologies Last week, Intel introduced to the public in Russia and other CIS countries a family of processors Intel Xeon E5-2600. They are more powerful and reliable and, importantly, are very economical in terms of energy consumption. Their
1 / 30

《计算机专业英语》第03章在线测试

A B C D Windows gives you more control over the you work. A B C D The most important program on any computer is________. A B C D is a word processing tool that helps you to crea e quality documents. A B C D ( )as a significant majority of market share in the desktop A B C D

2、Windows 2000 has the key technologies, they are ( ). A、flat directory B、security C、active directory D、enterprise management 3、Active Directory supports ( ). A、delegation of administrative task B、granular access control C、encapsulation D、inheritance 4、Common contemporary operating systems include __________________________. A、Mac OS B、Microsoft Windows C、Linux D、Solaris 5、Microsoft Windows currently supports _______ and _______file systems A、NTFS B、ext2 C、FAT D、NILFS E、OCFS 第三题、判断题(每题1分,5道题共5分) 1、Office 2000 is an incredible set of business tools. 正确错误 2、Operating systems are not unique to their manufacturers.

计算机专业英语名词翻译

第一章(计算机系统概论) digital computer 数字计算机 decimal digits 十进制数字 binary 二进制 bit 位 ASCII 美国国家信息交换标准代码 computer system 计算机系统 hardware system 硬件系统 software system 软件系统 I/O devices 输入输出设备 central processing unit(CPU) 中央处理器memory 存储器 application software 应用软件 video game 计算机游戏 system software 系统软件 register 寄存器 floating point data浮点数据 Boolean布尔值 character data字符数据 EBCDIC扩充的二十一进制交换代码 punched cards穿孔卡片 magnetic tape磁带 main memory主存 vacuum tubes电子管 magnetic drum磁鼓 transistors晶体管 solid-state devices固体器件 magnetic cores磁芯 integrated circuit(IC)集成电路 silicon chip硅芯片 multiprogramming多道程序设计 timessharing分时分时技术 minicomputers小型计算机 mainframe大型计算机 large-scaleintegrated(LSI)大规模集成 very-large-scale integrated(VLSI)超大规模集成word processing文字处理 eletronic spreedsheets电子表格 database management programs数据库管理程序desktop publishing桌面印刷personalcomputer(PC)个人计算机microcomputer微型计算机 storage capacities存储容量 stand-alone computer独立计算机 local area network(LAN)局域网 peripheral devices外部设备 assembly line流水线 supercomputer巨型计算机 第二章(计算机系统结构) memmory subsystem存储子系统 I/O subsystem输入输出子系统 bus总线 system bus系统总线 chip 芯片 address bus地址总线 instructions指令 memory location存储单元 data bus数据总线 control bus控制总线 local bus 局部总线 microprocessor微处理器 register set寄存器组 arithmetic logic unit(ALU)运算器 clock cycle时钟周期 control unit控制器 computer architecture计算机体系结构introduction format指令格式 addressing modes寻址方式 introduction set指令集 internal memory内存 main memory主存 Random Access Memory(RAM)随机存取存储器Read Only Memory (ROM)只读存储器secondary storage副主存储器 vitual memory虚拟存储器 Dynamic RAM(DRAM)动态存储器 refresh circuitry刷新电路 Static RAM(SRAM)静态RAM cache memory高速缓冲存储器 masked ROM掩膜ROM PROM可编程RAM EPROM可擦写PROM ultraviolet light紫外线 EEPROM or EEPROM电擦写PROM basic input/output system(BIOS)基本输入输出系统flash EEPROM 快闪存储器

相关文档
相关文档 最新文档