计算机专业英语论文--硬件概述

计算机专业英语论文--硬件概述
计算机专业英语论文--硬件概述

题目:计算机硬件概述(Overview of the computer hardware based)

学院:信息技术学院

班级:XXXXXX

学号:XXXXXXXXXX

姓名:XXXX

A computer is a fast and accurate symbol processing system. It can accept, store, process data and produce output results. A computer can automatically process data without human intervention. However, it must be given a set of instruction to guide it, step by step, through processes. The set of instructions is called a program, The program is stored physically inside the machine, making it a program.

All computer systems of interest to us are similar. They contain hardware components for input, central processing unit and output. The system on the small-scale is called a microcomputer or minicomputer. Continuing up the size scale, the mainframe computer is one that may offer a faster processing speed and a greater storage capacity than a typical mini. Finally comes the supercomputer, designed to process complex scientific applications,which is the largest and fastest.

Although the capacity of computers' storage locations is varied,every computer stores numbers,letters,and other characters in a coded form. Every character in the storage is represented by a string of 0s and 1s,the only digits founded in the binary numbering system. BCD and ASCII are popular computer codes.

So, what part of computer hardware that contains it? Computer hardware has four parts: the central processing unit (CPU) and memory, storage hardware, input hardware, and output hardware.

The Central Processing Unit

Pronounced as separate letters it is the abbreviation for central processing unit. The CPU is the brains of the computer. Sometimes referred to simply as the central processor, but more commonly called processor, the CPU

is where most calculations take place. In terms of computing power, the CPU is the most important element of a computer system.

On large machines, CPUs require one or more printed circuit boards. On personal computers and small workstations, the CPU is housed in a single chip called a microprocessor. Since the 1970's the microprocessor class of CPUs has almost completely overtaken all other CPU implementations.

Early CPUs were custom-designed as a part of a larger, sometimes one-of-a-kind, computer. However, this costly method of designing custom CPUs for a particular application has largely given way to the development of mass-produced processors that are made for one or many purposes. This standardization trend generally began in the era of discrete transistor mainframes and minicomputers and has rapidly accelerated with the popularization of the integrated circuit (IC). The IC has allowed increasingly complex CPUs to be designed and manufactured to tolerances on the order of nanometers. Both the miniaturization and standardization of CPUs have increased the presence of these digital devices in modern life far beyond the limited application of dedicated computing machines. Modern microprocessors appear in everything from automobiles to cell phones and children's toys.

The CPU itself is an internal component of the computer. Modern CPUs are small and square and contain multiple metallic connectors or pins on the underside. The CPU is inserted directly into a CPU socket, pin side down, on the motherboard. Each motherboard will support only a specific type or range of CPU so you must check the motherboard manufacturer's specifications before attempting to replace or upgrade a CPU. Modern CPUs also have an attached heat sink and small fan that go directly on top of the CPU to help dissipate heat.

Two typical components of a CPU are the following:

The arithmetic logic unit (ALU), which performs arithmetic and logical operations.

The control unit (CU), which extracts instructions from memory and decodes and executes them, calling on the ALU when necessary.

To properly perform its job, the CPU must complete a cycle of four steps. The first step in this cycle is to fetch a instruction from a software program's memory. Once the CPU fetches the instruction, its second step is to decode the instruction. By decoding the instruction, the CPU is able to organize the

information from the instruction in a manner that allows the CPU to complete the next step, which is executing.

During the execution step, the CPU completes the instruction. It accomplishes this by following the information gained during the decoding step. Once the CPU has finished executing the instruction, the final step in this cycle is to write-back the results that occurred during the execution step. The CPU can write-back the results to its own internal register, or to the main memory of the computer.

The Control Unit: A control unit is one of the two components of the central processing unit. The function of the control unit is to extract information which is stored in the memory and to decode and execute those instructions.

It also takes help from the arithmetic logic unit , whenever required. The control unit is very important for computers functioning . The control unit has outputs which take charge of the activities of the entire device. Some regard the control unit to be an FSM or finite state machine which is used for hardware and software applications.

Control Unit and Microprogram :There was a time when the manufacturing of control units was a difficult process, especially in designing it. But today the scenario has changed. A control unit is executed in the form of microprograms which remain in control stores. There is a micro sequencer which chooses the words and certain portions of those words which directly manage the various computer parts. These parts are arithmetic and logic units, buses, instruction registers, registers and input/output. Today the latest computers may possess subsidiary controllers for every subsystem, which would be supervised by the main control unit .

Functions of Control Unit:A control unit can be described as a sort of circuitry that supervises and controls the path of information that runs over the processor and organizes the various activities of those units that lie inside it.

It carries out many tasks such as decoding, fetching, handling the execution and finally storing the results.

It controls the execution of instructions in a sequential order.

It guides the flow of data through the different parts of the computer.

It interprets the instructions.

It regulates the time controls of the processor.

It sends and receives control signals from various peripheral devices.

A control unit is a major computer part which helps in the functioning of the central processing unit and in turn runs the whole computer.

The Arithmetic-Logic Unit: An arithmetic-logic unit (ALU) is the part of a computer processor ( CPU ) that carries out arithmetic and logic operations on the operand s in computer instruction word s. In some processors, the ALU is divided into two units, an arithmetic unit (AU) and a logic unit (LU). Some processors contain more than one AU - for example, one for fixed-point operations and another for floating-point operations. (In personal computers floating point operations are sometimes done by a floating point unit on a separate chip called a numeric coprocessor.)

Typically, the ALU has direct input and output access to the processor controller, main memory (random access memory or RAM in a personal computer), and input/output devices. Inputs and outputs flow along an electronic path that is called a bus . The input consists of an instruction word (sometimes called a machine instruction word) that contains an operation code (sometimes called an "op code"), one or more operands, and sometimes a format code. The operation code tells the ALU what operation to perform and the operands are used in the operation. (For example, two operands might be added together or compared logically.) The format may be combined with the op code and tells, for example, whether this is a fixed-point or a floating-point instruction. The output consists of a result that is placed in a storage register and settings that indicate whether the operation was performed successfully. (If it isn't, some sort of status will be stored in a permanent place that is sometimes called the machine status word.)

In general, the ALU includes storage places for input operands, operands that are being added, the accumulated result (stored in an accumulator ), and shifted results. The flow of bits and the operations performed on them in the subunits of the ALU is controlled by gated circuits. The gates in these circuits are controlled by a sequence logic unit that uses a particular algorithm or sequence for each operation code. In the arithmetic unit, multiplication and division are done by a series of adding or subtracting and shifting operations. There are several ways to represent negative numbers. In the logic unit, one of 16 possible logic operations can be performed - such as comparing two

operands and identifying where bits don't match.

The design of the ALU is obviously a critical part of the processor and new approaches to speeding up instruction handling are continually being developed.

Memory

In computing , memory refers to the state information of a computing system, as it is kept active in some physical structure. The term "memory" is used for the information in physical systems which are fast (ie RAM ), as a distinction from physical systems which are slow to access (ie data storage ). By design, the term "memory" refers to temporary state devices, whereas the term "storage" is reserved for permanent data. Advances in storage technology have blurred the distinction a bit —memory kept on what is conventionally a storage system is called " virtual memory ".

Colloquially, computer memory refers to the physical devices used to store data or programs (sequences of instructions) on a temporary or permanent basis for use in an electronic digital computer . Computers represent information in binary code , written as sequences of 0s and 1s. Each binary digit (or "bit") may be stored by any physical system that can be in either of two stable states, to represent 0 and 1. Such a system is called bistable. This could be an on-off switch, an electrical capacitor that can store or lose a charge, a magnet with its polarity up or down, or a surface that can have a pit or not. Today, capacitors and transistors, functioning as tiny electrical switches, are used for temporary storage, and either disks or tape with a magnetic coating, or plastic discs with patterns of pits are used for long-term storage.

Computer memory is usually meant to refer to the semiconductor technology that is used to store information in electronic devices. Current primary computer memory makes use of integrated circuits consisting of silicon -based transistors . There are two main types of memory: volatile and non-volatile .

Storage Hardware

The purpose of storage hardware is to provide a means of storing computer instruction and data in a form that is relatively permanent, that is, the data is not lost when the power is turned off—and easy to retrieve when needed for processing . There are four kinds of storage hardware: floppy disks, hard disks, optical disk, and magnetic tape.

Floppy Disks: A soft magnetic disk. It is called floppy because it flops if

you wave it (at least, the 5??-inch variety does). Unlike most hard disks, floppy disks (often called floppies or diskettes) are portable, because you can remove them from a disk drive. Disk drives for floppy disks are called floppy drives. Floppy disks are slower to access than hard disks and have less storage capacity, but they are much less expensive. And most importantly, they are portable.

Floppies come in three basic sizes:

8-inch: The first floppy disk design, invented by IBM in the late 1960s and used in the early 1970s as first a read-only format and then as a read-write format. The typical desktop/laptop computer does not use the 8-inch floppy disk.

5.25-inch: The common size for PCs made before 1987 and the predecessor to the 8-inch floppy disk. This type of floppy is generally capable of storing between 100K and 1.2MB (megabytes) of data. The most common sizes are 360K and 1.2MB.

3.5-inch: Floppy is something of a misnomer for these disks, as they are encased in a rigid envelope. Despite their small size, microfloppies have a larger storage capacity than their cousins -- from 400K to 1.4MB of data. The most common sizes for PCs are 720K (double-density) and 1.44MB (high-density). Macintoshes support disks of 400K, 800K, and 1.2MB.

Hard Disks: In any computer system the hard disk is considered as the secondary memory device that is used for the primary data storage. The primary memory is obviously the RAM. But as the RAM is the primary memory it cannot be used for the purpose of the permanent data storage. Hence a secondary memory device is necessarily needed for the purpose of the data storage in any computer system. Apart from hard disk drive the tape storage media can also be used as the secondary storage device. But the hard disk drive is the most popularly used secondary memory device. The main reason for this is the access speed and the reliability of the data it can offer. In the case of the tape drives the access speed is much low and the data transfer is comparatively low than the hard disk drive.

Since the primary memory that is the RAM is a non volatile memory hence it cannot be used as the permanent memory storage device. Hence the hard disk or the need for as a secondary memory device is needed in any computer. The primary function of the primary memory is to load the programs so that the CPU – Central Processing Unit can easily and speedily access and execute the instructions. The primary memory can only boot the computer system; but it the hard disk drive that is responsible for the loading and the proper functioning of any operating system. The operating system is a necessary for the computers to run to the expectations of the user. Hence the hard disk is a must for the loading of the hard disk drive. The importance of the primary memory is that it is a compulsion that is necessary for the start up of the

computer. A computer can start up even with out a hard disk. But since there is no operating system that is present in the computer hence it is not possible to load the operating system. The computer will display a message usually in such a situation stating that ―Disk Boot Failure‖.

The information that is required to boot a computer is stored in the hard disk boot sector. Also the importance of the hard disk drive is to store the backup of the data or any information that is created by the user. Apart from the hard disk drives the other storage devices like the optical disks that are the CD ROM, DVD ROM etc can be used for the purpose of the backup of the data or user information. The floppy disks can also be used for the backup of the data. The hard disk specification should also match the expectations of the computers; that is the storage capacity and access speed.

The internal organization of the any hard disk drive consists of the following four parts primarily. They are as listed below: the Platters, the Head Arm, the Chassis, and also the Head Actuator. The hard disk drives are also available in two different types that is the internal and also the external hard disk drives. The internal hard disk drives are used for the storage of the data in the computer case. There are not portable and usually are inside the case. The external hard disk drives are portable can be connected to other computer systems as well. There is a hard casing over the hard disk.

Optical Disks: In computing and optical recording , an optical disc is a flat, usually circular disc which encodes binary data in the form of pits (binary value of 0 or off, due to lack of reflection when read) and lands (binary value of 1 or on, due to a reflection when read) on a special material (often aluminium ) on one of its flat surfaces. The encoding material sits atop a thicker substrate (usually polycarbonate ) which makes up the bulk of the disc and forms a dust defocusing layer. The encoding pattern follows a continuous, spiral path covering the entire disc surface and extending from the innermost track to the outermost track. The data is stored on the disc with a laser or stamping machine, and can be accessed when the data path is illuminated with a laser diode in an optical disc drive which spins the disc at speeds of about 200 RPM up to 4000 rpm or more depending on the drive type, disc format, and the distance of the read head from the center of the disc (inner tracks are read at a faster disc speed). The pits or bumps distort the reflected laser light, hence most optical discs (except the black discs of the original PlayStation video game console ) characteristically have an iridescent appearance created by the grooves of the reflective layer. The reverse side of an optical disc usually has a printed label, generally made of paper but sometimes printed or stamped onto the disc itself. This side of the disc contains the actual data and is typically coated with a transparent material, usually lacquer . Unlike the 3?-inch floppy disk , most optical discs do not have an integrated protective casing and are

therefore susceptible to data transfer problems due to scratches, fingerprints, and other environmental problems.

Optical discs are usually between 7.6 and 30 cm (3 to 12 in) in diameter, with 12 cm (4.75 in) being the most common size. A typical disc is about 1.2 mm (0.05 in) thick, while the track pitch (distance from the center of one track to the center of the next) is typically 1.6 μm .

An optical disc is designed to support one of three recording types: read-only (eg: CD and CD-ROM ), recordable (write-once, eg CD-R ), or re-recordable (rewritable, eg CD-RW ). Write-once optical discs commonly have an organic dye recording layer between the substrate and the reflective layer. Rewritable discs typically contain an alloy recording layer composed of a phase change material, most often AgInSbTe , an alloy of silver , indium , antimony and tellurium.

Optical discs are most commonly used for storing music (eg for use in a CD player ), video (eg for use in a DVD player ), or data and programs for personal computers . The Optical Storage Technology Association (OSTA) promotes standardized optical storage formats. Although optical discs are more durable than earlier audio-visual and data storage formats, they are susceptible to environmental and daily-use damage. Libraries and archives enact optical media preservation procedures to ensure continued usability in the computer's optical disc drive or corresponding disc player.

For computer data backup and physical data transfer, optical discs such as CDs and DVDs are gradually being replaced with faster, smaller, and more reliable solid state devices, especially the USB flash drive . This trend is expected to continue as USB flash drives continue to increase in capacity and drop in price. Similarly, personal portable CD players have been supplanted by portable solid state MP3 players , and MP3 music purchased or shared over the internet has significantly reduced the number of audio CDs sold annually.

Magnetic Tape: Magnetic tape is an effective way of making a backup, or duplicate, copy of your programs and data. We mentioned the alarming consequences that can happen if a hard disk suffers a head crash. You will lose some or all of your data or programs. Of course, you can always make copies of your hard-disk files on floppy disks. However, this can be time-consuming and may require many floppy disks. Magnetic tape is sequential access storage and can solve the problem mentioned above.

Input Hardware: Input devices take data and programs people can read or understand and convert them to a form the computer can process. This is the machine-readable electronic signals of 0s and 1s. Input hardware is of two kinds: Keyboard entry and direct entry.

Keyboard Entry: Data is input to the computer through a keyboard that looks like a typewriter keyboard but has additional keys. In this method, the user typically reads from an original document called the source document.

The user enters that document by typing on the keyboard.

Direct Entry: Data is made into machine-readable form as it is entered into the computer, no keyboard is used. Direct entry devices may be categorized into three areas: pointing devices (for example, mouse, touch screen, light pen, digitizer, they are all pointing devices), scanning devices (for example, image scanner, fax machine, bar-code reader are all scanning devices), and voice-input devices.

Output Hardware: Output devices convert machine-readable information into people-readable form. Common output devices are monitors, printers, plotters, and voice output.

Monitors: Monitors are also called display screen or video display terminals. Most monitors that sit on desks are built in the same way as television sets, these are called cathode-ray tubes. Another type of monitor is flat-panel display, including liquid-crystal display (LCD), electroluminescent (EL) display and gas-plasma display. An LCD does not emit light of its own. Rather, it consists of crystal molecules. An electric field causes the molecules to line up in a way that alters their optical properties. Unfortunately, many LCDs are difficult to read in sunlight or other strong light. A gas-plasma display is the best type of flat screen. Like a neon light bulb, the plasma display uses a gas that emits light in the presence of an electric current.

Printer: There are four popular kinds of printers: dot-matrix, laser, ink-jet, and thermal.

Dot-Matrix Printer :Dot-matrix printers can produce a page of text in less than 10 seconds and are highly reliable. They form characters or images using a series of small pins on a print head. The pins strike an inked ribbon and create an image on paper. Printers are available with print heads of 9, 18, or 24 pins. One disadvantage of this type of printer is noise.

Laser Printer: The laser printer creates dot like images on a drum, using a laser beam light source. The characters are treated with a magnetically charged ink like toner and then are transferred from drum to paper. A heat process is used to make the characters adhere. The laser printer produces images with excellent letter and graphics quality. Ink-Jet Printer An ink-jet printer sprays small droplets of ink at high speed onto the surface of the paper. This process not only produces a letter-quality image but also permits printing to be done in a variety of colors.

Thermal Printer: A thermal printer uses heat elements to produce images on heat-sensitive paper. Color thermal printers are not as popular because of

their cost and the requirement of specifically treated paper. They are a more special use printer that produces near photographic output. They are widely used in professional art and design work where very high quality color is essential.

Plotters: Plotters are special-purpose output devices for producing bar charts, maps, architectural drawings, and even3D diagram. Plotters can produce high-quality multicolor documents and also documents that are larger in size than most printers can handle. There are four types of plotters: pen, ink-jet, electrostatic, and direct imaging.

Voice-Output Device s: Voice-output devices make sounds that resemble human speech but actually are pre-recorded vocalized sounds. Voice output is used as a reinforcement tool for learning, such as to help students study a foreign language. It is used in many supermarkets at the checkout counter to confirm purchases. Of course, one of the most powerful capabilities is to assist the physically challenged.

计算机英语论文(中英双语)

稀疏表示计算机视觉和模式识别 从抽象技术的现象已经可以开始看到稀疏信号在电脑视觉产生重大影响,通常在非传统的应用场合的目标不仅是要获得一个紧凑的高保真度表示的观察信号,而且要提取语义信息。非常规词典在字典的选择中扮演了重要的角色,衔接的差距或学习、训练样本同来获得自己提供钥匙,解出结果和附加语义意义信号稀疏表示。理解这种非传统的良好性能要求词典把新的算法和分析技术。本文强调了一些典型例子:稀疏信号的表现如何互动的和扩展计算机视觉领域,并提出了许多未解的问题为了进一步研究。 稀疏表现已经被证明具有非常强大的工具,获取、表示、压缩高维信号的功能。它的成功主要是基于这个事实,即重要类型的信号(如声音和图像,稀疏表示很自然地就固定基地或串连这样的基地。此外,高效、大概有效算法说明基于凸优化一书提供了计算这样的陈述。 虽然这些应用在经典信号处理的铺垫下,已经可以在电脑视觉上形成一个我们经常更感兴趣的内容或语义,而不是一种紧凑、高保真的表示。一个人可能会理所当然地知道是否可以有用稀疏表示为视觉任务。答案很大程度上是积极的:在过去的几年里,变化和延伸的最小化已应用于许多视觉任务。 稀疏表示的能力是揭示出语义信息,大部分来自于一个简单但重要的性质数据:虽然照片所展示的图像是在非常高自然的空间,在许多同类应用中图像属于次级结构。也就是说他们在接近低维子空间或层次。如果发现一个收集的样本分布,我们理应期望一个典型的样品有一个稀疏表示理论的基础。 然而,想要成功地把稀疏表示应用于电脑视觉,我们通常是必须面对的一个额外的问题,如何正确选择依据。这里的数据选择不同于在信号处理的传统设置,基于指定的环境具有良好的性能可以被假定。在电脑视觉方面,我们经常要学习样本图像的任务词典,我们不得不用一个连贯的思想来贯穿工作。因此,我们需要扩展现有的理论和稀疏表示算法新情况。 自动人像识别仍然是最具有挑战性的应用领域和计算机视觉的难题。在理论基础实验上,稀疏表示在近期获得了显著的进展。 该方法的核心是选择一个明智的字典作为代表,用来测试信号稀疏线性组合信号。我们首先要简单的了解令人诧异的人脸识别途径是有效的解决办法。反过来,人脸识别实例在稀疏表示光曝光之前揭示了新的理论现象。 之前稀疏表示的部分用机器检查并且应用,在一个完全词典里组成的语义信息本身产生的样品。对于许多数据不是简单的应用,这是合乎情理的词典,使用一个紧凑的数据得到优化目标函数的一些任务。本节概述学习方法那种词典,以及这些方法应用在计算机视觉和图像处理。 通过近年来我们对稀疏编码和优化的应用的理解和启发,如面部识别一节描述的例子,我们提出通过稀疏数据编码构造,利用它建立了受欢迎的机器学习任务。在一个图的数据推导出研究学报。2009年3月5乘编码每个数据稀疏表示的剩余的样本,并自动选择最为有效的邻居为每个数据。通过minimization稀疏表示的计算自然的性能满足净水剂结构。此外,我们将会看到描述之间的关系进行了实证minimization线性数据的性能,可以显著提高现有的基于图论学习算法可行性。 摘自:期刊IEEE的论文- PIEEE ,第一卷

计算机专业英语报告

1.英语学术论文的语言风格特点就(知人方能论世) 为什么我们会读不懂SCI上面的文章呢? 第一,由于SCI里面出现的专业词汇一般都是出现在特定领域,一类是一词对应于一意,另外一类则是一词多义。 其次,名词化结构则是另外另外一个普遍出现的现象,可以看到,复合名词,加前缀和后缀,以及省略现象可谓是漫山遍野,因为文体要求行文简洁、表达客观、内容确切、信息量大、强调存在的事实,一般文章不会夹杂着太多主观看法。 最后,大量使用长句和定语从句SCI论文发表中大量使用长句和定语从句,在论证上起到连接信息和强调信息的作用。广泛使用被动语态SCI论文发表中侧重叙事推理,强调客观准确,第一、二人称使用过多,会造成主观臆断的印象。因此尽量使用第三人称叙述,采用被动语态。名词作定语和缩写词使用频繁SCI论文发表中要求结构紧凑、行文简炼,缩写词和名词作定语的频繁使用,增大了信息密度,简化了句型。 如果我们能逆向思维,转换个角度去看文章,如果你要发表一篇SCI论文,你会怎么去构造你的行为,你如何组织你文章的逻辑,特别是用词方面,口语和一些狸语在一般

情况不应该出现在文章中。还有些中式英语也会极大地影响我们的阅读,例如说足球比赛,可不是我们想象中的football match (之前有次演讲说,英语里面不能有2个名词的情况,在此就举了个例子bicycle man),而应该做football play亦作soccer play。 2.翻译是一门艺术,从某种意义上来讲是没有标准答案的。 这里本人想要想要阐述这样一种观点,翻译是一个不断精进的过程,翻译最初的目的即是为了实现语言之间的一个互相沟通,然而不同的人对一句话,应该会有着不同的理解。这也就有了译者极大的自由发挥性,但是译者必须准确理解原文的基础之上的。 有三个字可以高度概括翻译的精髓“信,达,雅”,想必大家都应该听过。”“信”指意义不背原文,即是译文要准确,不歪曲,不遗漏,也不要随意增减意思;同样可以举个例子?This is a pan in my hand (请问如何翻译呢?) “达”指不拘泥于原文形式,译文通顺明白;这里就涉及到一个直译和意译的关系啦,否则就会出现像bicycle

计算机英语第3版课后习题答案

They can also be classified as mainframes, minicomputers, 3版)》练习参考答案《计算机英语(第workstations, or microcomputers. All else (for example, the age of the machine) being equal, this Unit One: Computer and Computer Science categorization provides some Unit One/Section A indication of the computer's speed, size, cost, and abilities. I. Fill in the blanks with the information given in the text: Ever since the advent of computers, there have been constant 1. Charles Babbage; Augusta Ada Byron changes. First-generation 2. input; output computers of historic significance, such as UNIVAC (通用自动计3. VLSI 4. workstations; mainframes 算机), introduced in the 5. vacuum; transistors early 1950s, were based on vacuum tubes. Second-generation 6. instructions; software computers, appearing in the 7. digit; eight; byte early 1960s, were those in which transistors replaced vacuum 8. microminiaturization; chip tubes. In third-generation computers, dating from the 1960s, integrated circuits replaced II. Translate the following terms or phrases from English into transistors. In fourth-generation Chinese and vice versa: computers such as microcomputers, which first appeared in the 1. artificial intelligence 人工智能mid-1970s, large-scale integration enabled thousands of circuits to be incorporated on 纸带阅读器2. paper-tape reader one chip. Fifth-generation 3. optical computer 光计算机 computers are expected to combine very-large-scale integration 神经网络4. neural network with sophisticated approaches 5. instruction set 指令集 to computing, including artificial intelligence and true distributed 并行处理6. parallel processing processing. 差分机7. difference engine 8. versatile logical element 通用逻辑元件IV. Translate the following passage from English into Chinese: 硅衬底 9. silicon substrate 计算机将变得更加先进,也将变得更加容易使用。语音识别的真空管10. vacuum tube 改进将使计算机的操数据的存储与处理11. the storage and handling of data 作更加容易。虚拟现实,即使用所有人类官能与计算机进行交超大规模集成电路12. very large-scale integrated circuit 互的技术,也将有助于创13. central processing unit 中央处理器建更好的人机接口。人们正在开发其他的奇异计算模型,包括analogue 模拟计算机个人计算机14. personal computer 15. 使用生物机体的生物计算、computer 使用具有特定属性的分子的分子计算,以及使用遗传基本单位数字计算机digital computer 16. DNA(脱氧核糖核酸)存17. 通用计算机general-purpose computer 储数据和执行操作的计算。这些都是可能的未来计算平台的例18. 处理器芯片processor chip 子,而它们迄今还能力有operating instructions 19. 操作指令限或完全属于理论范畴。科学家们研究它们,是因为嵌入硅中20. 输入设备input device 的电路的微小型化受到物理限制。还有一些限制与甚至最微小 的晶体管也会产生的热量有关。III. Fill in each of the blanks with one of the words given in the following list, making Unit One/Section B changes if necessary: I. Fill in the blanks with the information given in the text: We can define a computer as a device that accepts input, 1. experimentation processes data, stores data, and 2. interfacing produces output. According to the mode of processing, computers 3. interdisciplinary are either analog or digital. 4. microprocessor

计算机专业英语论文

姓名:王雪健学号:201390503 专业:计算机科学与技术3 班学院:信息科学与工程学院 On Information Resources Abstract: With the development of human society, the way people gather information more and more https://www.360docs.net/doc/3418974978.html,rmation resources as a special social resources, With strategic nature, can spread the properties, it can increase the properties and comprehensive quality characteristics. Information resource with great economic and social value, not only is important to take a new road to industrialization led forces, but also changes the mode of production and social progress in an enormous boost. 1 Introductio Information resources, as a special configuration has a special meaning and forms of social resources, their role is with each passing day growing. Information resources are the basic elements of modern social productive forces, while change in the way of social production and people's way of life enhancement, resulting in an invaluable influence and promote the role. At the same time in the modern society, the content of information resources is continuously expanding to include not only the growing number of natural science information resources, but also times of social science information resources. The availability of information resources and use of attention is whether the growth of a country's comprehensive national strength is an important factor, but also the extent a country is an important symbol of

计算机英语第三版课文翻译

第一单元:计算机与计算机科学 课文A:计算机概览 一、引言 计算机是一种电子设备,它能接收一套指令或一个程序,然后通过对数字数据进行运算 或对其他形式的信息进行处理来执行该程序。 要不是由于计算机的发展,现代的高科技世界是不可能产生的。不同类型和大小的计算 机在整个社会被用于存储和处理各种数据,从保密政府文件、银行交易到私人家庭账目。计 算机通过自动化技术开辟了制造业的新纪元,而且它们也增强了现代通信系统的性能。在几 乎每一个研究和应用技术领域,从构建宇宙模型到产生明天的气象报告,计算机都是必要的 工具,并且它们的应用本身就开辟了人们推测的新领域。数据库服务和计算机网络使各种各 样的信息源可供使用。同样的先进技术也使侵犯个人隐私和商业秘密成为可能。计算机犯罪 已经成为作为现代技术代价组成部分的许多风险之一。 二、历史 第一台加法机是法国科学家、数学家和哲学家布莱斯.帕斯卡于1642年设计的,它是数 字计算机的先驱。这个装置使用了一系列带有10个齿的轮子,每个齿代表从0到9的一个数字。轮子互相连接,从而通过按照正确的齿数向前转动轮子,就可以将数字彼此相加。17世纪70 年代,德国哲学家和数学家戈特弗里德.威廉.莱布尼兹对这台机器进行了改良,设计了一台 也能做乘法的机器。 法国发明家约瑟夫―玛丽.雅卡尔,在设计自动织机时,使用了穿孔的薄木板来控制复 杂图案的编织。在19世纪80年代期间,美国统计学家赫尔曼.何勒里斯,想出了使用类似雅 卡尔的木板那样的穿孔卡片来处理数据的主意。通过使用一种将穿孔卡片从电触点上移过的 系统,他得以为1890年的美国人口普查汇编统计信息。 1、分析机 也是在19世纪,英国数学家和发明家查尔斯.巴比奇,提出了现代数字计算机的原理。 他构想出旨在处理复杂数学题的若干机器,如差分机。许多历史学家认为,巴比奇及其合伙 人,数学家奥古斯塔.埃达.拜伦,是现代数字计算机的真正先驱。巴比奇的设计之一,分析 机,具有现代计算机的许多特征。它有一个以一叠穿孔卡片的形式存在的输入流、一个保存 数据的“仓库”、一个进行算术运算的“工厂”和一个产生永久性纪录的打印机。巴比奇未 能将这个想法付诸实践,尽管在那个时代它在技术上很可能是可行的。 2、早期的计算机 模拟计算机是19世纪末开始制造的。早期型号是靠转动的轴和齿轮来进行计算的。用任 何其他方法都难以计算的方程近似数值,可以用这样的机器来求得。开尔文勋爵制造了一台 机械潮汐预报器,这实际上就是一台专用模拟计算机。第一次和第二次世界大战期间,机械 模拟计算系统,以及后来的电动模拟计算系统,在潜艇上被用作鱼雷航线预测器,在飞机上 被用作轰炸瞄准具的控制器。有人还设计了另一个系统,用于预测密西西比河流域春天的洪 水。 3、电子计算机 第二次世界大战期间,以伦敦北面的布莱切利公园为工作地点的一组科学家和数学家, 制造了最早的全电子数字计算机之一:“巨人”。到1943年12月,这个包含了1500个真空管 的“巨人”开始运转了。它被以艾伦.图灵为首的小组用于破译德国用恩尼格码加密的无线 电报,他们的尝试大部分是成功的。 除此而外,在美国,约翰.阿塔纳索夫和克利福德.贝里早在1939年就在艾奥瓦州立学院

计算机英文论文

A Preliminary Analysis of the Scienti?c Production of Latin American Computer Science Research Groups Juan F.Delgado-Garcia,Alberto https://www.360docs.net/doc/3418974978.html,ender and Wagner Meira Jr. Computer Science Department,Federal University of Minas Gerais 31270-901-Belo Horizonte-Brazil {jfdgarcia,laender,meira}@dcc.ufmg.br Abstract.In this paper,we present a preliminary analysis of the sci- enti?c production of Latin American Computer Science research groups. Our analysis is based on data over a period of20years collected from DBLP,and addresses24groups from academic institutions in Argentina, Chile,Colombia,Cuba,Mexico,Peru,Uruguay and Venezuela.Our re- sults show a clear improvement in the publication output of these groups in the last10years,particularly in Argentina,Chile and Mexico. Keywords:Latin America,Computer Science,Scienti?c Production, Coauthorship Analysis,Bibliometrics 1Introduction According to SCIMago Journal and Country Rank(JCR)1,recent years have witnessed a tremendous increase in the scienti?c production in Computer Sci-ence(CS)all over the world.Considering data from2002to2012,for instance,in North America(Canada and USA)the number of publications increased59.73%, in Western Europe(considering only the top-5countries,UK,Germany,France, Italy and Spain)184%,and in Latin American(also considering only the top-5 countries,Brazil,Mexico,Argentina,Chile and Colombia)319%.In other re-gions,countries like Australia,China,Korea,India and Poland have achieved ?gures even higher.Although SCIMago numbers re?ect only publications that appeared in selected journals,they show that CS is a very productive research area with many active research groups spread around the world. In view of this scenario,in this paper we present a preliminary analysis of the scienti?c production of Latin American CS research groups.Our analysis is based on data over a period of20years collected from DBLP2,and addresses 24groups from academic institutions in Argentina,Chile,Colombia,Cuba,Mex-ico,Peru,Uruguay and Venezuela.Despite being the country in Latin America with the highest productivity in the area[4],we have not included Brazil in our analysis for two reasons.First,Brazil is by far the Latin American country 1https://www.360docs.net/doc/3418974978.html,/countryrank.php 2https://www.360docs.net/doc/3418974978.html,rmatik.uni-trier.de/~ley/db

计算机英语课后习题第四版总结

UNIT 1 词组翻译 1. artificial intelligence 人工智能 2. paper-tape reader 纸带阅读器 3. optical computer 光计算机 4. neural network 神经网络 5. instruction set 指令集 6. parallel processing 并行处理 7. difference engine 差分机 8. versatile logical element 通用逻辑元件 9. silicon substrate 硅衬底 10. vacuum tube 真空管 11. 数据的存储与处理the storage and handling of data 12. 超大规模集成电路very large-scale integrated circuit 13. 中央处理器central processing unit 14. 个人计算机personal computer 15. 模拟计算机analogue computer 16. 数字计算机digital computer 17. 通用计算机general-purpose computer 18. 处理器芯片processor chip 19. 操作指令operating instructions 20. 输入设备input device

完形填空 We can define a computer as a device that accepts input, processes data, stores data, and produces output. According to the mode of processing, computers are either analog or digital. They can also be classified as mainframes, minicomputers, workstations, or microcomputers. All else (for example, the age of the machine) being equal, this categorization provides some indication of the computer’s speed, size, cost, and abilities. Ever since the advent of computers, there have been constant changes. First-generation computers of historic significance, such as UNIVAC (通用自动计算机), introduced in the early 1950s, were based on vacuum tubes. Second-generation computers, appearing in the early 1960s, were those in which transistors replaced vacuum tubes. In third-generation computers, dating from the 1960s, integrated circuits replaced transistors. In fourth-generation computers such as microcomputers, which first appeared in the mid-1970s, large-scale integration enabled thousands of circuits to be incorporated on one chip. Fifth-generation computers are expected to combine very-large-scale integration with sophisticated approaches to computing, including artificial intelligence and true distributed processing. 翻译P9 计算机将变得更加先进,也将变得更加容易使用。 语音识别的改进将使计算机的操作更加容易。 虚拟现实,即使用所有人类官能与计算机进行交互的技术,也将有助于创建更好的人机接口。人们正在开发其他的奇异计算模型,包括使用生物机体的生物计算、使用具有特定属性的分子的分子计算,以及使用遗传基本单位DNA (脱氧核糖核酸)存储数据和执行运算的计算。 这些都是可能的未来计算平台的例子,而它们迄今还能力有限或完全属于理论范畴。 科学家们研究它们,是因为嵌入硅中的电路的微小型化受到物理限制。

计算机英语第3版课后习题答案

《计算机英语(第3版)》练习参考答案 Unit One: Computer and Computer Science Unit One/Section A I. Fill in the blanks with the information given in the text: 1. Charles Babbage; Augusta Ada Byron 2. input; output 3. VLSI 4. workstations; mainframes 5. vacuum; transistors 6. instructions; software 7. digit; eight; byte 8. microminiaturization; chip II. Translate the following terms or phrases from English into Chinese and vice versa: 1. artificial intelligence 人工智能 2. paper-tape reader 纸带阅读器 3. optical computer 光计算机 4. neural network 神经网络 5. instruction set 指令集 6. parallel processing 并行处理 7. difference engine 差分机 8. versatile logical element 通用逻辑元件 9. silicon substrate 硅衬底 10. vacuum tube 真空管 11. 数据的存储与处理 the storage and handling of data 12. 超大规模集成电路 very large-scale integrated circuit 13. 中央处理器 central processing unit 14. 个人计算机 personal computer 15. 模拟计算机analogue computer 16. 数字计算机 digital computer 17. 通用计算机 general-purpose computer 18. 处理器芯片 processor chip 19. 操作指令 operating instructions 20. 输入设备 input device III. Fill in each of the blanks with one of the words given in the following list, making changes if necessary: We can define a computer as a device that accepts input, processes data, stores data, and produces output. According to the mode of processing, computers are either analog or digital. They can also be classified as mainframes, minicomputers, workstations, or microcomputers. All else (for example, the age of the machine) being equal, this categorization provides some indication of the computer’s speed, size, cost, and abilities. Ever since the advent of computers, there have been constant changes. First-generation computers of historic significance, such as UNIVAC (通用自动计算机), introduced in the early 1950s, were based on vacuum tubes. Second-generation computers, appearing in the early 1960s, were those in which transistors replaced vacuum tubes. In third-generation computers, dating from the 1960s, integrated circuits replaced transistors. In fourth-generation computers such as microcomputers, which first appeared in the mid-1970s, large-scale integration enabled thousands of circuits to be incorporated on one chip. Fifth-generation computers are expected to combine very-large-scale integration with sophisticated approaches to computing, including artificial intelligence and true distributed processing. IV. Translate the following passage from English into Chinese: 计算机将变得更加先进,也将变得更加容易使用。语音识别的改进将使计算机的操 作更加容易。虚拟现实,即使用所有人类官能与计算机进行交互的技术,也将有助于创 建更好的人机接口。人们正在开发其他的奇异计算模型,包括使用生物机体的生物计算、 使用具有特定属性的分子的分子计算,以及使用遗传基本单位DNA(脱氧核糖核酸)存

计算机英语(第4版) 刘艺 课文参考译文

《计算机英语(第4版)》参考译文 第一单元:计算机与计算机科学 课文A:计算机概览 一、引言 计算机是一种电子设备,它能接收一套指令或一个程序,然后通过对数字数据进行运算或对其他形式的信息进行处理来执行该程序。 要不是由于计算机的发展,现代的高科技世界是不可能产生的。不同类型和大小的计算机在整个社会被用于存储和处理各种数据,从保密政府文件、银行交易到私人家庭账目。计算机通过自动化技术开辟了制造业的新纪元,而且它们也增强了现代通信系统的性能。在几乎每一个研究和应用技术领域,从构建宇宙模型到产生明天的气象报告,计算机都是必要的工具,并且它们的应用本身就开辟了人们推测的新领域。数据库服务和计算机网络使各种各样的信息源可供使用。同样的先进技术也使侵犯个人隐私和商业秘密成为可能。计算机犯罪已经成为作为现代技术代价组成部分的许多风险之一。 二、历史 第一台加法机是法国科学家、数学家和哲学家布莱斯?帕斯卡于1642年设计的,它是数字计算机的先驱。这个装置使用了一系列带有10个齿的轮子,每个齿代表从0到9的一个数字。轮子互相连接,从而通过按照正确的齿数向前转动轮子,就可以将数字彼此相加。17世纪70年代,德国哲学家和数学家戈特弗里德?威廉?莱布尼兹对这台机器进行了改良,设计了一台也能做乘法的机器。 法国发明家约瑟夫―玛丽?雅卡尔,在设计自动织机时,使用了穿孔的薄木板来控制复杂图案的编织。在19世纪80年代期间,美国统计学家赫尔曼?何勒里斯,想出了使用类似雅卡尔的木板那样的穿孔卡片来处理数据的主意。通过使用一种将穿孔卡片从电触点上移过的系统,他得以为1890年的美国人口普查汇编统计信息。 1、分析机 也是在19世纪,英国数学家和发明家查尔斯?巴比奇,提出了现代数字计算机的原理。他构想出旨在处理复杂数学题的若干机器,如差分机。许多历史学家认为,巴比奇及其合伙

计算机专业毕业设计论文(C++)外文文献中英文翻译(Object)[1]

外文资料 Object landscapes and lifetimes Technically, OOP is just about abstract data typing, inheritance, and polymorphism, but other issues can be at least as important. The remainder of this section will cover these issues. One of the most important factors is the way objects are created and destroyed. Where is the data for an object and how is the lifetime of the object controlled? There are different philosophies at work here. C++ takes the approach that control of efficiency is the most important issue, so it gives the programmer a choice. For maximum run-time speed, the storage and lifetime can be determined while the program is being written, by placing the objects on the stack (these are sometimes called automatic or scoped variables) or in the static storage area. This places a priority on the speed of storage allocation and release, and control of these can be very valuable in some situations. However, you sacrifice flexibility because you must know the exact quantity, lifetime, and type of objects while you're writing the program. If you are trying to solve a more general problem such as computer-aided design, warehouse management, or air-traffic control, this is too restrictive. The second approach is to create objects dynamically in a pool of memory called the heap. In this approach, you don't know until run-time how many objects you need, what their lifetime is, or what their exact type is. Those are determined at the spur of the moment while the program is running. If you need a new object, you simply make it on the heap at the point that you need it. Because the storage is managed dynamically, at run-time, the amount of time required to allocate storage on the heap is significantly longer than the time to create storage on the stack. (Creating storage on the stack is often a single assembly instruction to move the stack pointer down, and another to move it back up.) The dynamic approach makes the generally logical assumption that objects tend to be complicated, so the extra overhead of finding storage and releasing that storage will not have an important impact on the creation of an object. In addition, the greater flexibility is essential to solve the general

计算机专业英语的第四版课后习题翻译

中译英参考答案 Unit 1 A computer system consists of hardware system and software system. The hardware of the computer is usually divided into three major parts or three primary subsystems: the CPU, the memory subsystem, and the I/O subsystem. The CPU performs many operations and controls computer. The memory subsystem is used to store program being executed by the CPU, along with the program’s data. The I/O subsystem allows the CPU to interact with input and output devices such as the keyboard and monitor of a personal computer. The components of the computer are connected to the buses. The part of the computer that performs the bulk of data processing operations is called the central processing unit and is referred to as the CPU. In microcomputer, it is often called the microprocessor. The CPU is made up of three major parts: control unit, ALU, and register set. Memory is also known as internal memory or main memory. It refers to the circuits in the computer that hold whatever programs and data are available for immediate use by the CPU. I/O subsystem includes I/O devices and interface. There are a wide variety of I/O devices, such as mouse, printer, sensor, disk, and so on. Input-output interface provides a method for transferring information between internal storage and external I/O devices. Peripherals connected to a computer need special communication links for interfacing them with the CPU. The purpose of the communication link is to resolve the differences that exist between the central computer and each peripheral. Unit 2 Storage hardware provides permanent storage of information and programs for retrieval by the computer. Hard disk drives store information in magnetic particles embedded in a disk. Usually a permanent part of the computer, hard disk drives can store large amounts of information and retrieve that information very quickly. Although fixed hard drive systems offer faster access and have a higher storage capacity than optical discs, optical disc systems use removable media – a distinct benefit. Optical discs – primary CDs and DVDs – are much more widely used than removable hard drive systems. They are the standard today for software delivery, as well as commonly used for storing high-capacity music and video files. There are also versions of both CD and DVD drives available for home audio and home theater use. Optical discs are commonly referred to as compact discs. CD and DVD discs are read by CD and DVD drives. The speed of a CD or DVD drive is rated as 24x, 32x, 36x, and so on. These labels describe how fast the drive is compared to the first version of that drive. For example, a 36x drive is 36 times the speed of the baseline unit that was originally manufactured. Most optical

相关文档
最新文档