计算机专业实践英语翻译
1、计算机专业英语 翻译
楼主是要把下面这些都翻译出来吗?如果是,下面有双语对照,可以参考下。
软件系统能够分为两大类:应用软件和系统软件。应用软件由执行特定于机器使用的任务的程序组成。与应用软件形成对比,系统软件包含大量的程序。这些程序启动计算机并且起作所有硬件组成部分和应用软件的主要协调者。没有系统软件装入你的计算机RAM中,你的硬件和应用软件就没有用。
系统软件可以分为三个基本部分:操作系统、实用程序软件和语言翻译程序。一个安装的大多数实用程序软件都是由一些程序组成,这些程序执行还未包括在OS 中,但对于计算机安装是基本的一些动作。在某种意义上,实用软件是由扩充OS能力的那些软件部件组成的。
计算机的OS是管理其活动的程序的主要集合。OS的主要日常工作是管理和控制,OS保证用户请求的所有动作都是正当的,并且以有序的方式被处理。它也管理计算机系统的资源以便有效和一致地执行这些操作。
应用软件是一种软件,被设计来帮助你解决特定于业务的问题或执行特定的业务任务。于是应用软件是最接近于你的软件层,基本上有四类应用软件:生产软件,业务/专业软件,娱乐软件和教育软件/参考软件。
软件系统能够分为两大类:应用软件和系统软件。应用软件由执行特定于机器使用的任务的程序组成。与应用软件形成对比,系统软件包含大量的程序。这些程序启动计算机并且起作所有硬件组成部分和应用软件的主要协调者。没有系统软件装入你的计算机RAM中,你的硬件和应用软件就没有用。
The software system can be divided into two categories: application software and system software. Application software by performing specific to machine use task program. In contrast to the application software, system software contains a large number of program. These proceres to start the computer and played the main coordinator for all the hardwarecomponents and software application. No system software into your computer's RAM, your hardware and the application software is useless.
系统软件可以分为三个基本部分:操作系统、实用程序软件和语言翻译程序。一个安装的大多数实用程序软件都是由一些程序组成,这些程序执行还未包括在OS 中,但对于计算机安装是基本的一些动作。在某种意义上,实用软件是由扩充OS能力的那些软件部件组成的。
The system software can be divided into three basic parts: the operating system, the utilitysoftware and programming language. An installation of the most utility software is composed ofsome of the proceres, these proceres are not included in the OS, but for the computer to install some basic moves. In a sense, practical software is composed of the software componentto develop OS ability.
计算机的OS是管理其活动的程序的主要集合。OS的主要日常工作是管理和控制,OS保证用户请求的所有动作都是正当的,并且以有序的方式被处理。它也管理计算机系统的资源以便有效和一致地执行这些操作。
The computer OS is the main collection management of its activities program. The main work of OS is the management and control, OS ensures that all the action of user request is e, and are processed in an orderly manner. It also manages the computer system resources for the effective and consistent implementation of these operations.
应用软件是一种软件,被设计来帮助你解决特定于业务的问题或执行特定的业务任务。于是应用软件是最接近于你的软件层,基本上有四类应用软件:生产软件,业务/专业软件,娱乐软件和教育软件/参考软件。
Application software is a software, is designed to help you solve your business specific problem or to perform a specific business task. The application software is a software layer closest toyou, there are four types of application software basically: proction software, business /professional software, entertainment software and ecational software / reference software.
2、计算机专业英语翻译!急谢谢啊!
OpenGL is a software interface to graphics hardware.
OpenGL是面向图形硬件的软件接口。
This interface consists of about 120 distinct
commands, which you use to specify the objects and operations needed to proce interactive
three−dimensional applications.
该接口约由120条命令组成,通过这些命令可以为预定的交互式三维应用程序指定具体对象和操作。
OpenGL is designed to work efficiently even if the computer that displays the graphics you create isn’t the computer that runs your graphics program.
OpenGL可以高效工作,在一台计算机上设计的图形程序到另一台计算机上也可以正常运行。
This might be the case if you work in a networked computer environment where many computers are connected to one another by wires capable of carrying digital data.
也许您的计算机是通过网络连接到另一台计算机上的,这时数据通过网线进行传输。
In this situation, the computer on which your program runs and issues OpenGL drawing commands is called the client, and the computer that receives those commands and performs the drawing is called the server.
在这种情况下,程序在您的电脑上运行、生成OpenGL绘图命令,该电脑称为客户机,另一台接收并执行该绘图命令的联网计算机叫服务器。
The format for transmitting OpenGL commands (called the protocol)from the client to the server is always the same, so OpenGL programs can work across a network even if the client and server are different kinds of computers.
从客户机向服务器传输OpenGL命令的格式(叫做协议)通常是相同的,因此OpenGL程序可以跨网运行,即使客户机和服务器是不同的计算机。
If an OpenGL program isn’t running across a network, then there’s only one computer, and it is both the client and the server.
在OpenGL程序不跨网运行,而是运行在单独一台计算机上,那么这台计算机既是客户机同时也是服务器。
3、计算机专业英语翻译。
在UNIX系统中,一个fork系统调用会跟在exec系统调用之后执行作用是开启一个新的进程。 fork()系统调用克隆目前正在运行的进程,而exec()系统调用是再一个进程中调用一个新的进程。
我翻译的不太准确,但是fork()和exec()这两个linux系统调用我还是用过的,fork()是用来产生新的进程的,父进程调用fork()后会产生一个跟父进程一模一样的子进程,这样做是为了节省内存,当子进程需要有具体的代码执行时才分配内存和资源,这就是UNIX操作系统的写时复制。你应该知道在UNIX中没有像window一样的线程,只有进程,在UNIX的轻量级进程就相当于window中的线程。
exec()系统调用,是用来执行一个新的程序的,如 shell:ls 或者随便的一个什么程序都可以。
exec("ls")(还有什么参数不记得了)就是调用ls这个shell命令。
你应该是初学操作系统吧。建议你不仅要看书,也要多多的进行实践,多写一些系统调用的C语言程序,如果你能力很强,建议你读一读linux随便哪一版本的内核,如果能力非常强建议你可以自己修改一下内核,到达自己的效果或者目的。本人能力有限只看过部分操作系统源码,也只修改过一些代码,希望对你有帮助。
4、计算机专业英语翻译-----谢谢
Computer laboratory experiment is a teaching platform. The increasing use of computer teaching, public laboratories all the problems more and more. For example: students misuse and play games; virus were invaded, software upgrades, equipment and hardware of aging; laboratory imperfect rules and regulations as well as some hidden problems. Hence the urgent need of personnel and more effective ways to achieve the laboratory's management and maintenance. Laboratory equipment for the effective management and rational use of the computer is the basis of practice teaching, laboratory and technical maintenance is to achieve a strong practical teaching computer security.
5、求计算机专业课程的英文翻译~
成绩单 transcript
C语言C language program
大学体育1 college physical ecation 1
大学英语一级 college English band-1
高等数学A1higher mathematics A1
计算机引论 introction to computers
思想品德修养Cultivation of Ideological Morality
C++语言The C++ Programming Language
大学体育2 college physical ecation 2
大学英语二级 college English band 2
当代中国外交 contemporary Chinese diplomacy
电路原理Principles of Circuit
法律基础 Fundamentals of Law
高等数学A2 Higher mathematics A2
线性代数Linear Algebra
中国哲学智慧Chinese Philosophical Wisdom
大学体育3 College Physical Ecation 3
大学英语三级 College English Band 3
概率论与数理统计Probability Theory & Mathematical Statistics
汇编语言 Programming Language
计算方法A Computational Method
交际艺术 Communication Art
离散数学A Discrete Mathematics A
马克思主义哲学Philosophy of Marxism
数字系统与数字逻辑Digital System and Logical Design
英语听说English Listening and Speaking
Flash动画制作技术 Flash Animation Proction Technology
程序设计综合设计Synthetic Programming Design
大学体育4 College Physical Ecation
多媒体技术Multimedia Technology
计算机组成原理A Principles of Computer Organization A
世界近现代风云人物述评 Commentary on Celebrities in Modern History
数据结构A data structure
编译原理Fundamentals of Compiling
计算机图形学Computer Graphics
计算机系统综合设计computer system synthesis design
认识实习Cognition Practice
算法分析与设计Analysis and Design of Algorithms
系统结构system structure
操作系统 Operating Systems
电子商务与电子政务Electronic Commerce and Electronic Government
计算机网络A Computer Network
面向对象系统分析与设计Object -Oriented System Analysis and Design
人工智能Artificial Intelligence
软件系统综合设计software system integrated design
数据库原理及应用Principle & Application of Database
文献检索Document Indexing
Web开发技术web development Technology
软件工程Software Engineering
软件工程课程设计Software Engineering Course Exercise
网络安全 Network Safety
系统集成与综合布线system integration and Comprehensive Wiring
专业英语Specialty English
毕业实习graation field work
6、计算机专业英语翻译
诞生计算机和它是美国操作系统的给了英语前面轻推; 互联网有授予它巨大的推挤任何星期三喜欢家庭今天有图书馆有用的资料在点击鼠标,并且不同于书对此是拥有架子或在公立图书馆,四分之五在英语可能被写比例可以教训,更加非英国的站点出现,但是英语肯定将控制
我也在网上找的。感觉很别扭
7、计算机专业英语翻译:
超级计算机是用来描述当前运行最快的计算机之一的概括性术语。