计算机专业英语Lesson-2课件_第1页
计算机专业英语Lesson-2课件_第2页
计算机专业英语Lesson-2课件_第3页
计算机专业英语Lesson-2课件_第4页
计算机专业英语Lesson-2课件_第5页
已阅读5页,还剩11页未读 继续免费阅读

下载本文档

版权说明:本文档由用户提供并上传,收益归属内容提供方,若内容存在侵权,请进行举报或认领

文档简介

1、Lesson 2 Computer Memory教学课件 Memory is something that stores, preserves and recalls data when needed. Your brain has this capability and memory inside computers is an electronic incarnation of this concept.1 Computer memory is used to store data that needs to be access by the Central Processing Unit

2、 (CPU). It is the CPU that performs the laborious tasks, the memory acts as storage for uncompleted tasks and other relevant information needed to accomplish those tasks. All the information in memory is encoded in fixed size cells called bytes.2 A byte can hold a small amount of information, such a

3、s a single character or a numeric value between 0 and 255.The CPU will perform its operations on groups of one, two, four, or eight bytes, depending on the interpretation being placed on the data, and the operations required. Forms of Memory Although the term “computer memory” is commonly used to re

4、fer to RAM, there are various other forms of memory inside a computer such as the hard disk drive. The illustration below outlines the common memory architecture adopted within most modern computers. back教学课件 Any of the four major categories of memory in the diagram above can feed information direct

5、ly to the CPU. Each form of memory feeds the CPU at differing speeds and efficiency due to their different technological make up.3back教学课件 Registers and cache will transfer data to the CPU at greater speeds than RAM and hard disk drives. As the forms of memory in the top of the pyramid are costly to

6、 make, their size are limited to make computers affordable. The size of memory forms towards the bottom of the pyramid is made larger to hold all the other data that other forms cannot handle.4 It should also be noted here that physical RAM and cache are volatile in nature meaning they store, preser

7、ve and recall data so long as there is electrical power flowing through the system. Once a computer system is shut off, the physical RAM and cache are cleared. Disc storage by way of floppy disk, hard disk, CD-ROM and DVD-ROM drives holds information those are required to be non-volatile in nature (

8、such as that project you have been working on!). There is a trade-off between speed and cost, resulting in the development of such a pyramid-like architecture. Information is prioritized in terms of importance and stability to determine which form of memory would hold the data. 5back教学课件 Registers T

9、he bottleneck in a memory and CPU architecture is the slow transfer speeds between the two. The fastest, and sadly the most expensive, form of memory resolves this problem by having the memory within the CPU itself. Data within registers are instantly fed to the Arithmetic and Logic Unit (ALU) porti

10、on of the CPU making the relevant data instantly available. Registers are typically small in size and is controlled by the CPUs compiler. Cache This form of memory can be considered as an intermediary between the main physical RAM and the CPU. The cache makes any data frequently used by CPU instantl

11、y available. If the required information is not located in the cache, a fetch is made from the main memory. There are two levels of cache: level 1 cache (primary cache) and level 2 cache (secondary cache).back教学课件 Level 1 cache is built directly on the CPU, just like the registers. It is small in si

12、ze, ranging anywhere between 2 kilobytes (KB) and 128KB. As this cache is closer to the CPU than level 2 cache, its transfer speeds are faster as a result. Level 2 cache is usually situated in close proximity to, but off, the CPU chip.6 However, there are certain systems where the cache is built ont

13、o the CPU as like the level 1 cache. The size of level 2 cache ranges from 256KB to 2 megabytes (MB). Both levels of cache use Static Random Access Memory (SRAM) to hold the data. Main Memory This is where most of the information that a CPU requires resides. “Main Memory” commonly refers to Physical

14、 Memory, although a computer uses an operating systemimposed Virtual Memory in addition to physical memory. The amount of main memory on a computer is crucial because it determines how many programs can be executed at one time and how much data can be readily available to a program.back教学课件 Physical

15、 memory uses Dynamic Random Access Memory (DRAM) to store the data, and is considerably slower than the SRAM used by the cache. Information is exchanged between the main memory and the cache to ensure that the more commonly accessed information is placed in the cache to allow faster access speed. Op

16、erating systems memory management will automatically remove data held on both the physical and virtual memory. The physical memory acts as an Input/Output (I/O) channel for data exchanged between the computer memory and other forms of electronic storages. Virtual Memory Most operating systems have a

17、 form of memory management that caters for memory needs beyond a computer systems physical memory through the use of a swap file.7 There is a need for such memory management as operating systems themselves occupy a significant portion of physical memory. A swap file is a file located on a computers

18、hard disk drive (HDD) that acts as an extension to physical memory. However, the HDD has much slower access times than any of the forms of memory discussed above. Hence, information is swapped between the main memory and the swap file to ensure that the more frequently used information is located in

19、 the main memory for faster access speeds.back教学课件Key Words & Termsanywhere between 数目在之间architecture 体系结构bottle-neck瓶颈cache缓冲存储器compiler编译器considerably 相当地disc storage磁盘存储器encode编码feed to供应给hierarchy层级incarnation 化身intermediary调节者,中介laborious费力的,艰苦的back教学课件Key Words & Termslevel 1 cache一级缓存level 2

20、cache二级缓存numeric数值的physical memory物理存储器prioritize把区分优先顺序proximity接近swap file交换文件trade-off平衡,协定transfer speed传输速度virtual memory虚拟存储器volatile易失性的back教学课件AbbreviationsDRAM(Dynamic Random Access Memory) 动态随机存储器HDD(Hard Disk Drive) 硬磁盘驱动器I/O(Input/Output) 输入/输出(设备,数据)SRAM(Static Random Access Memory) 静态随

21、机存储器back教学课件Notes 1 Your brain has this capability and memory inside computers is an electronic incarnation of this concept. 该句是由and连接的两个并列句,其中的this concept指代上文大脑能存储和回忆的现象。 译文:你的大脑有这种能力,而计算机内部的存储器正是对这一概念的电子化身。 2 All the information in memory is encoded in fixed size cells called bytes. 本句中的called by

22、tes修饰cells。 译文:存储器上的所有信息都以固定大小的单元为单位进行编码,这样的单元被称为字节。 3 Each form of memory feeds the CPU at differing speeds and efficiency due to their different technological make up. 该句中的atspeed意为“以速度”;due to译为“由于,因为”;make up本身是动词词组,在这里当名词来用,意为“制作”。 译文:每种存储器向CPU提供信息的速度和效率都不一样,这是由存储器不同的制作技术决定的。back教学课件Notes 4 The

23、 size of memory forms towards the bottom of the pyramid is made larger to hold all the other data that other forms cannot handle. 该句中的to hold all the other data that other forms cannot handle作目的状语,其中,that other forms cannot handle又是一个定语从句,修饰data。 译文:越往金字塔底部去,存储器尺寸做得越大,目的是保存其他存储形式不能处理的数据。 5 Informati

24、on is prioritized in terms of importance and stability to determine which form of memory would hold the data. 该句中的prioritized意为“把区分优先顺序”;in terms of意为“按照,根据”;data意为“数据”,是复数名词形式,其单数为datum。 译文:信息按照重要性和稳定性被划分为不同的优先级,这样做的目的是决定用哪种存储器保存这些数据。back教学课件Notes 6 Level 2 cache is usually situated in close proxim

25、ity to, but off, the CPU chip. 该句中的proximity意为“接近”;句中but off是对proximity to的补充,翻译为“但有一定距离”。 译文:二级缓存通常位于非常靠近CPU芯片的位置,但在CPU芯片的外部。 7 Most operating systems have a form of memory management that caters for memory needs beyond a computer systems physical memory through the use of a swap file. 该句中的swap fil

26、e意为“交换文件”;cater for意为“迎合”;句中that caters for memory needs beyond a computer systems physical memory through the use of a swap file是一个定语从句,作a form of memory management的定语;through the use of a swap file在从句中作状语,修饰caters for。 译文:大部分操作系统都有一种内存管理的形式,即通过交换文件的方式满足对计算机系统物理存储器之外的存储器的访问需求。backExercisesTranslate

27、 the following phrases into English.1静态随机存储器2动态随机存储器3虚拟存储器4物理存储器5一级缓存6二级缓存7硬盘驱动器访问速度backExercisesTranslate the following sentences into Chinese.1DRAM gets the “dynamic” in its name because it is refreshed thousands of times per second.2RAM: A temporary storage memory area in computer where the operating system, applica

温馨提示

  • 1. 本站所有资源如无特殊说明,都需要本地电脑安装OFFICE2007和PDF阅读器。图纸软件为CAD,CAXA,PROE,UG,SolidWorks等.压缩文件请下载最新的WinRAR软件解压。
  • 2. 本站的文档不包含任何第三方提供的附件图纸等,如果需要附件,请联系上传者。文件的所有权益归上传用户所有。
  • 3. 本站RAR压缩包中若带图纸,网页内容里面会有图纸预览,若没有图纸预览就没有图纸。
  • 4. 未经权益所有人同意不得将文件中的内容挪作商业或盈利用途。
  • 5. 人人文库网仅提供信息存储空间,仅对用户上传内容的表现方式做保护处理,对用户上传分享的文档内容本身不做任何修改或编辑,并不能对任何下载内容负责。
  • 6. 下载文件中如有侵权或不适当内容,请与我们联系,我们立即纠正。
  • 7. 本站不保证下载资源的准确性、安全性和完整性, 同时也不承担用户因使用这些下载资源对自己和他人造成任何形式的伤害或损失。

评论

0/150

提交评论