当前位置:高等教育资讯网  >  中国高校课件下载中心  >  大学文库  >  浏览文档

《计算机专业英语》课程教学资源(讲义)Unit 7 The Fundamentals of computer Software

资源类别:文库,文档格式:DOC,文档页数:4,文件大小:35.5KB,团购合买
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
点击下载完整版文档(DOC)

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 elated 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 records 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 1/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 参考译文 数据结构 数据结构是一种数据类型,其值是由通过某种结构相互关联的组成元素所构成的。 由于数据结构是一种数据类型,因此它有一组针对这些值的操作:而且,可能有一些操 作是作用于其组成元素的。结构化的数据类型的操作不仅可以作用于数据类型的值,并且也 可以作用于数据结构的组成元素 数据类型数组和记录对众多程序设计语言来说都是固有的数据类型。通过使用指针数据 类型和动态存储分配,很多程序设计语言还提供了建立链接结构的功能。我们将要讨论的两 种更高一级的抽象数据类型是堆栈和队列,它们对计算至关重要。 堆栈是一种数据类型,其主要性质是由支配其元素的插入与删除的规则来决定的。 惟一能被删除或移去的元素只能是最后插入的元素,这就是所谓具有后进先出(LIFO) 性质的结构。 队列对我们来说是非常熟悉的。在银行等待服务的一队人,就是队列的一个例子。队列 的主要特征是遵循先来先服务的规则。在队列中,最先插入的元素将最先被服务。这种原则

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 records 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) 性质的结构。 队列对我们来说是非常熟悉的。在银行等待服务的一队人,就是队列的一个例子。队列 的主要特征是遵循先来先服务的规则。在队列中,最先插入的元素将最先被服务。这种原则

与社会生活中人们公平合理的观念是一致的。队列的先进先出(FIFO)协议在计算中有很 多应用。例如,等待访问磁盘驱动器的多个输入/输出请求就可以是一个队列。在计算机中 等待运行的计算作业也同样是一个队列。 Text 2 Operating Systems The most important program on any computer is the Operating System or OS. The Os is a large program made up of many smaller programs. It control how the CPU communicates with other hardware components. It also makes computers easier to operate by people who don't understand programming languages. In other words, operating systems make computer users ROM and RAM are very important to the OS. Part of a computer's operating system is built into ROM. The ROM operating system is also known as the BlOs(Basic Input Output System) The BlOS is responsible for waking up the computer when you turn it on. It also reminds the computer of all the parts it has and what they do The operating system also contains other programs that are important. This part of the operating system is stored on a computer's hard drive. When the computer is turned on, it booted to raM. This part of the operating system is known as dOs (2) Types of Operating Systems There are different operating systems available for PCs, but the most common is Windows Windows was developed by a company named Microsoft. It uses a mouse and a gUl( Graphica User Interface)to help the user operate the computer There are several versions of Windows (Windows 95/98/ME/NT/2000/XP).Operating systems are constantly being improved or upgraded as technology advances. Upgrading an operating system can have several advantages, such as simplifying tasks and navigation. Howeve there can be disadvantages, too. Many older programs would no longer run within the new operating system 参考译文 操作系统 (1)什么是操作系统 计算机中最重要的程序就是操作系统。操作系统是一个由很多小程序组成的大的程序 它控制CPU与硬件间的通信,方便不懂得编程语言的用户操作计算机。换句话说,操作系 统使用户更友好地操作计算机 RAM和ROM对操作系统来说非常重要。计算机操作系统中的一部分就建立在ROM上 这种ROM中的操作系统也叫BlOS。当你开机的时候BOS负责唤醒计算机并提醒它所有 的部分,而且告诉它们将做的工作。 操作系统还包括其他非常重要的程序。这部分操作系统是存储在计算机的硬盘上的,当 开机的时候,它被读到RAM中。这一部分的操作系统被称为DOS。 (2)操作系统的种类 现在有很多适合PC机的操作系统,但最常见的就是 Windows。它是由微软公司开发的 使用鼠标和图形用户界面来帮助用户操作计算机 目前有几种 Windows版本( Windows95/98ME∧NT/2000/XP)。随着技术的提高,操作

与社会生活中人们公平合理的观念是一致的。队列的先进先出(FIFO)协议在计算中有很 多应用。例如,等待访问磁盘驱动器的多个输入/输出请求就可以是一个队列。在计算机中 等待运行的计算作业也同样是一个队列。 Text 2 Operating Systems (1) What is an Operating System The most important program on any computer is the Operating System or OS. The OS is a large program made up of many smaller programs. It control how the CPU communicates with other hardware components. It also makes computers easier to operate by people who don't understand programming languages. In other words, operating systems make computer users friendly. ROM and RAM are very important to the OS. Part of a computer's operating system is built into ROM. The ROM operating system is also known as the BIOS (Basic Input Output System). The BIOS is responsible for waking up the computer when you turn it on. It also reminds the computer of all the parts it has and what they do. The operating system also contains other programs that are important. This part of the operating system is stored on a computer's hard drive. When the computer is turned on, it is booted to RAM. This part of the operating system is known as DOS. (2) Types of Operating Systems There are different operating systems available for PCs, but the most common is Windows. Windows was developed by a company named Microsoft. It uses a mouse and a GUI (Graphical User Interface) to help the user operate the computer. There are several versions of Windows (Windows 95/98/ME/NT/2000/XP). Operating systems are constantly being improved or upgraded as technology advances. Upgrading an operating system can have several advantages, such as simplifying tasks and navigation. However, there can be disadvantages, too. Many older programs would no longer run within the new operating system. 参考译文 操作系统 (1) 什么是操作系统 计算机中最重要的程序就是操作系统。操作系统是一个由很多小程序组成的大的程序。 它控制 CPU 与硬件间的通信,方便不懂得编程语言的用户操作计算机。换句话说,操作系 统使用户更友好地操作计算机。 RAM和ROM对操作系统来说非常重要。计算机操作系统中的一部分就建立在ROM上, 这种 ROM 中的操作系统也叫 BIOS。当你开机的时候 BIOS 负责唤醒计算机并提醒它所有 的部分,而且告诉它们将做的工作。 操作系统还包括其他非常重要的程序。这部分操作系统是存储在计算机的硬盘上的,当 开机的时候,它被读到 RAM 中。这一部分的操作系统被称为 DOS。 (2) 操作系统的种类 现在有很多适合 PC 机的操作系统,但最常见的就是 Windows。它是由微软公司开发的, 使用鼠标和图形用户界面来帮助用户操作计算机。 目前有几种 Windows 版本(Windows 95/98/ME/NT/2000/XP)。随着技术的提高,操作

系统经常被改进和升级。升级一个操作系统会有很多好处,如任务简单了,便于导航:但是 也有缺点,以前的很多程序在新的操作系统下不能运行了 Text 3 Windows 2000 Overview With each new release of Windows, Microsoft gives you new and inventive technologies to build more useful. manageable and scalable networks. Windows 2000 is the most innovative release to date. There are four separate products that form the windows 2000: Windows 2000 Professional Windows 2000 Server Windows 2000 Advanced Server windows 2000 Datacenter Server Each of these products includes key advancements that change how you plan, desi deploy Microsoft networks. To employ such groundbreaking features as Active Directory, Dynamic DNS (DDNS), you will need to plan ahead. Now we offer an overview of the key Windows 2000 technologies and services Microsoft networks that are built with Active Directory can help you when you meet these challenges. Unlike down level directory services, Active Directory is hierarchical. Active Directory stores each of your company's resources logically, forming a tree structure that mirrors your enterprise. Every resource in even the largest networks is easy to find and manage The cornerstone of Windows 2000 security is Active Directory. It supports the granular access control, inheritance, and delegation of administrative task. This gives you the flexibil ity to secure resources without compromising your network's purpose. Fine-granted access control is not offered in Windows NT 3. x or 4.0. This often forces you to assign permissions that give either too little or oo much control (3) Storage The Encrypting File System(EFS) would not be possible without extensions to NTFS. New chnology File System(NTFS)5.0 is the foundation for several enhancement in Windows 2000 Sharing and managing your company's data is top priority. You must gain complete control of storage to be a successful administrator (4)Networking The improvements to networking in Windows 2000 are groundbreaking. For example, you have the opportunity in Windows 2000 to remove all Net BIOS traffic from your network. The Dynamic Domain Name System(DDNS)can entirely eliminate your dependence on Net BIOS and WINS. Some of the topics covered in this section are new in Windows 2000, others represent Improvement to existing technologie Along with its advances in directory management, security, public key cryptography, storage and networking, Windows 2000 includes improvement in enterprise management. Total Cost of Ownership(TCO) is a leading concern shared by many companies. After you deploy a particular technology, a TCO study will consider the cost of maintaining (or owning). In corporate networks, most TCO efforts are aimed at reducing the expense of managing desktops

系统经常被改进和升级。升级一个操作系统会有很多好处,如任务简单了,便于导航;但是 也有缺点,以前的很多程序在新的操作系统下不能运行了。 Text 3 Windows 2000 Overview With each new release of Windows, Microsoft gives you new and inventive technologies to build more useful, manageable, and scalable networks. Windows 2000 is the most innovative release to date. There are four separate products that form the Windows 2000: • Windows 2000 Professional • Windows 2000 Server • Windows 2000 Advanced Server • Windows 2000 Datacenter Server Each of these products includes key advancements that change how you plan, design, and deploy Microsoft networks. To employ such groundbreaking features as Active Directory, Dynamic DNS (DDNS), you will need to plan ahead. Now we offer an overview of the key Windows 2000 technologies and services. (1) Active Directory Microsoft networks that are built with Active Directory can help you when you meet these challenges. Unlike down level directory services, Active Directory is hierarchical. Active Directory stores each of your company's resources logically, forming a tree structure that mirrors your enterprise. Every resource in even the largest networks is easy to find and manage. (2) Security The cornerstone of Windows 2000 security is Active Directory. It supports the granular access control, inheritance, and delegation of administrative task. This gives you the flexibility to secure resources without compromising your network's purpose. Fine-granted access control is not offered in Windows NT 3.x or 4.0. This often forces you to assign permissions that give either too little or too much control. (3) Storage The Encrypting File System (EFS) would not be possible without extensions to NTFS. New Technology File System (NTFS) 5.0 is the foundation for several enhancement in Windows 2000. Sharing and managing your company's data is top priority. You must gain complete control of storage to be a successful administrator. (4) Networking The improvements to networking in Windows 2000 are groundbreaking. For example, you have the opportunity in Windows 2000 to remove all NetBIOS traffic from your network. The Dynamic Domain Name System (DDNS) can entirely eliminate your dependence on NetBIOS and WINS. Some of the topics covered in this section are new in Windows 2000, others represent improvement to existing technologies. (5) Enterprise Management Along with its advances in directory management, security, public key cryptography, storage, and networking, Windows 2000 includes improvement in enterprise management. Total Cost of Ownership (TCO) is a leading concern shared by many companies. After you deploy a particular technology, a TCO study will consider the cost of maintaining (or owning). In corporate networks, most TCO efforts are aimed at reducing the expense of managing desktops

参考译文 Windows2000概述 随着每一个新的 Windows版本的发行,微软都会带来一些创新的技术,用来架构更为 有用的、易于管理的、可伸缩的网络。 Windows2000是一个迄今为止最为创新的版本。 Windows2000操作系统共包括4个独立的产品: · Windows2000专业版 · Windows2000服务器版 · Windows2000高级服务器版 · Windows2000数据中心服务器版 上述这些产品都提供了一些关键技术,这些技术改变了你规划、设计、架构微软网络的 方式。为了使用如活动目录、动态域名系统等创造性的特性,你应该使规划更具前瞻性。下 面我们来对 Windows2000的关键技术和服务作一些概要性的介绍。 (1)活动目录 用活动目录架构的微软网络能帮助你处理很多问题。与以前低级的目录服务不同,活动 目录是分层次的。活动目录逻辑上存储了你公司中的每一个资源,形成树状结构来镜像你的 公司资源。甚至在最大的网络里的任何资源,都易于查找和管理 (2)安全性 Windows2000安全性的基石是活动目录。它支持粒度访问控制、继承性、管理任务的 授权,所有的这些都给你以足够的灵活性去保证资源安全而又不损害网络用途。 Windows nt 3x或者 Windows nt40并没有提供比较好的访问控制。这经常迫使你分配的权限不是太多 就是太少。 (3)存储 没有NIFS的扩展是不可能实现加密文件系统的。NTS50是 Windows2000许多功能 增强的基础。共享和管理公司的数据是最高的优先级。作为一个成功的系统管理员,你必须 具有完整的存储控制权 (4)联网 Windows2000联网方面的改进是有创造性的。例如,在 Windows2000中,你有机会消 除网络里的所有 NetBIOS通信,动态的DNS可以彻底消除对 NetBIOS和WINS的依赖。这 部分中的有些技术在 Windows2000里是全新的,而有些却是现有技术的改进 (5)企业管理 随着目录管理、安全性、公共密钥加密、存储和联网技术的发展, Windows2000也包括 了对企业管理的改进。总拥有成本TCO是许多公司共同关心的首要课题。在你部署一个技 术后,TCO研究要考虑的是维护(或拥有)成本。在公司网络中,大多数TCO努力的目标 是减少台式电脑管理的费用

参考译文 Windows 2000 概述 随着每一个新的 Windows 版本的发行,微软都会带来一些创新的技术,用来架构更为 有用的、易于管理的、可伸缩的网络。Windows 2000 是一个迄今为止最为创新的版本。 Windows 2000 操作系统共包括 4 个独立的产品: • Windows 2000 专业版 • Windows 2000 服务器版 • Windows 2000 高级服务器版 • Windows 2000 数据中心服务器版 上述这些产品都提供了一些关键技术,这些技术改变了你规划、设计、架构微软网络的 方式。为了使用如活动目录、动态域名系统等创造性的特性,你应该使规划更具前瞻性。下 面我们来对 Windows 2000 的关键技术和服务作一些概要性的介绍。 (1) 活动目录 用活动目录架构的微软网络能帮助你处理很多问题。与以前低级的目录服务不同,活动 目录是分层次的。活动目录逻辑上存储了你公司中的每一个资源,形成树状结构来镜像你的 公司资源。甚至在最大的网络里的任何资源,都易于查找和管理。 (2) 安全性 Windows 2000 安全性的基石是活动目录。它支持粒度访问控制、继承性、管理任务的 授权,所有的这些都给你以足够的灵活性去保证资源安全而又不损害网络用途。Windows NT 3.x 或者 Windows NT 4.0 并没有提供比较好的访问控制。这经常迫使你分配的权限不是太多 就是太少。 (3) 存储 没有 NTFS 的扩展是不可能实现加密文件系统的。NTFS 5.0 是 Windows 2000 许多功能 增强的基础。共享和管理公司的数据是最高的优先级。作为一个成功的系统管理员,你必须 具有完整的存储控制权。 (4) 联网 Windows 2000 联网方面的改进是有创造性的。例如,在 Windows 2000 中,你有机会消 除网络里的所有 NetBIOS 通信,动态的 DNS 可以彻底消除对 NetBIOS 和 WINS 的依赖。这 部分中的有些技术在 Windows 2000 里是全新的,而有些却是现有技术的改进。 (5) 企业管理 随着目录管理、安全性、公共密钥加密、存储和联网技术的发展,Windows 2000 也包括 了对企业管理的改进。总拥有成本 TCO 是许多公司共同关心的首要课题。在你部署一个技 术后,TCO 研究要考虑的是维护(或拥有)成本。在公司网络中,大多数 TCO 努力的目标 是减少台式电脑管理的费用

点击下载完整版文档(DOC)VIP每日下载上限内不扣除下载券和下载次数;
按次数下载不扣除下载券;
24小时内重复下载只扣除一次;
顺序:VIP每日次数-->可用次数-->下载券;
已到末页,全文结束
相关文档

关于我们|帮助中心|下载说明|相关软件|意见反馈|联系我们

Copyright © 2008-现在 cucdc.com 高等教育资讯网 版权所有