计算机专业英语Unit 10

计算机专业英语Unit 10
计算机专业英语Unit 10

Unit 10 Program Design

Text 1 Computer Languages

Exercises

1. Choose the best answer to complete the following sentences.

(1)The ( A ) is a language that was represented by long strings of ones and zeroes.

A. machine language

B. high-level language

C. low-level language

D. assembly language

(2)The ( D ) maps machine instructions to human-readable mnemonics.

A. machine language

B. high-level language

C. low-level language

D. assembly language

(3)The ( A ) turns the object file into an executable program.

A. linker

B. compiler

C. interpreter

D. computer

(4)The ( C ) is a software that translates instructions directly into actions.

A. inker

B. compiler

C. interpreter

D. assembly language

2. Fill in the blanks.

(1)Computer language include machine language, assembly language and higher-level

languages

(2)Higher-level languages let people work with something approximating words and

sentences.

(3)Programs use "user-friendly interfaces," involving multiple windows, menus, dialog

boxes.

3. Translate and analyze the following sentences.

(1)Compilers, however, introduce the extra steps of compiling and linking the code,

which is inconvenient.

句子组成:which引导的是定语从句,修饰steps

翻译:但是编译程序却增加了一些额外的步骤来编译和链接代码,相比之下则不方便。

(2)These languages let people work with something approximating words and sentences,

such as Let I = 100.

句子组成:let sb. do sth. 让某人做某事

翻译:这些语言使用的是近似于人们常用的词语或语句,如Let I=100。

(3)Today's programs use sophisticated "user-friendly interfaces," involving multiple

windows, menus, dialog boxes.

句子组成:involving 引导的做定语,修饰user-friendly interfaces

翻译:今天,程序使用了复杂的“用户友好界面”,包含多重窗口、菜单、对话框。

Unit 10

Program Design

2 Text 2 Computer programming

Exercises

1. Fill in the blanks.

(1)Computer programming is activity the of developing programs.

(2)High-level languages strike a compromise between the precise meanings required by

the machine and spoken language.

(3)Coding is the stage in which the design is turned into steps which are expressed in a

programming languages.

(4)Computer programming is a costly and time-consuming activity.

2. Decide whether the following statements are True or False.

(1)BASIC is one of the the common high-level languages. ()

(2)The testing stage is to verify a program as being correct with the requirements and

design specifications. ()

(3)The design specifications is the most expensive stage of programming. ()

(4)The maintenance stage is as expensive as testing. ()

3. Translate and analyze the following sentences.

(1)Common high-level languages that are used to design applications programs include

BASIC, C, COBOL and PASCAL.

句子组成:that 引导的定语从句,修饰languages

翻译:一般用来设计应用程序的高级语言有:BASIC、C、COBOL和PASCAL。

(2)A major activity in programming is the expressing of the steps of a program in one or

more languages.

(3)句子组成:expressing 做宾语steps of a program in one or more languages 修饰

expressing

翻译:编程的主要工作就是用一种或多种语言表示程序的详细过程。

(4)As an example, for a payroll program, requirements specify how many paychecks must

be processed, and what calculations need to be performed.

句子组成:how many ,what 引导的做宾语

翻译:以工资管理程序程序为例,需求指定有多少工资必须处理,需要完成什么样的计算。

(5)These include inventing higher-level languages or more powerful languages, inventing

utility programs that assist programmers, and inventing new methods of programming.

句子组成:inventing 引导的作宾语,三个inventing 是并列结构

翻译:其中包括发明更高级的或更强大的语言,发明实用程序以辅助程序员和发明新的编程方法。

V isual Basic

3 Text 3 Visual Basic

Exercises

1. Choose the best answer to complete the following sentences.

(1) The "Visual" part in Virtual Basic means the way used to create C .

(2) The "Basic" part in Virtual Basic means the F programming language.

(3) Using Visual Basic, you can simply add H into place on screen.

(4) The E of V irtual Basic are related directly to the Windows GUI.

(5) With A technologies you can use some applications, such as Microsoft Word and

Excel.

(6) The V isual Basic Iearning edition allows you to easily create applications for Microsoft

Windows and G

(7) D includes all the features of the Learning edition, plus other functions.

(8) B includes all the features of the Professional edition, plus other functions.

A. ActiveX

B. The Enterprise edition

C. GUI

D. The Professional edition

E. statements, functions, and keywords

F. BASIC G . Windows NT

H. pre-built objects 2. Fill in the blanks.

(1) The BASIC language is used by more programmers than any other language.

(2) Virtual Basic has a data access ability to create database.

(3) Visual Basic has three versions.

(4) The Enterprise edition allows professionals to create robust distributed applications

in a team setting.

3. Translate and analyze the following sentences.

(1) The "Basic" part refers to the BASIC language, a language used by more programmers

than any other language.

(2) 句子组成:used 引导的作定语,修饰 language

翻译:Basic 是指BASIC 语言,这种语言的使用比其他任何语言都多。

(3) Now it contains several hundred statements, functions, and keywords, many of which

relate directly to the Windows GUI.

句子组成:which 引导的做定语从句

翻译:现在已经有好几百条语句、函数、关键词,其中好多都是直接与Windows 的图形用户界面(GUI )有关。

(4) Whether your goal is to create a small utility for yourself or your work group or a large

enterprise-wide system, V isual Basic has the tools you need.

句子组成:whether … or …不论 … 还是 …,这里作条件状语

翻译:无论你是要创建个人还是工作组的小型实用程序或者企业级大型系统,Visual

Unit 10

Program Design

4 Basic 都有能满足你要求的工具。

Text 4 Debugging

Exercises

1. Decide whether the following statements are True or False.

(1) All of us expect the programs robust, bug-free. (True )

(2) The revolution of the software industry is producing good, solid, bulletproof programs

at low cost and on time. (True )

(3) The earlier in the development process you find a problem, the more it costs to fix

it. (False )

(4) The most common bugs are poor logic and syntactic error. (True )

(5) With high-powered debuggers you should put your source code into the debugger.

(True )

(6) Using debugger you can see each instruction as it executes. (True )

(7) Using debugger you cannot examine your variables. (True )

(8) Runtime bugs are easy to find. ( False )

(9) A powerful debugger can find nearly all of bugs. (True )

2. Fill in the blanks.

(1) The biggest expense in programming efforts is testing and fixing.

(2) Syntactic error means that you used the wrong idiom, function, or structure.

(3) A bigger problem than logic or syntactic bugs is unnecessary fragility.

(4) Runtime bugs are the most difficult to find and squash .

3. Translate and analyze the following sentences.

(1) The person who solves the problem of producing good, solid, bulletproof programs at

low cost and on time will revolutionize the software industry.

句子组成:who 引导的做定语从句,修饰 person 翻译:谁能解决以低成本并及时交付性能良好、稳定、强大的程序这一问题,那么他就会给软件业带来革新。

(2) A bigger problem than logic or syntactic bugs is unnecessary fragility: Y our program

works just fine if the user enters a number when you ask for one, but it crashes if the

user enters letters.

句子组成:分号后的是一个并列句,but 表转折 翻译:比逻辑或语法错误更大的问题是不必要的脆弱性:当用户按要求输入一个数时,程序运行得很好;如果用户输入一些字母,程序就会崩溃。

(3) A bulletproof program is one that can handle anything that comes up at runtime, from

bizarre user input to running out of memory.

句子组成:that 引导的做定语从句 翻译:一个无坚不摧的程序能处理运行时出现的各种情况──从稀奇古怪的用户输入,到

Debugging 5 内存耗尽。

(4) Runtime bugs are the hardest to find and squash, and a powerful debugger can make it

possible to find nearly all of them. 句子组成:并列句 翻译:运行时的错误最难找到和排除,功能强的调试程序可以帮你找出几乎所有的错误。 提高训练——语法知识

并列句

练习

Choose the best answers for the following sentences.

(1) We must get up early tomorrow, (B) we'll miss the first bus.

A. so

B. or

C. but

D. however

(2) I don't like chicken, (C) I like fish very much.

A. and

B. or

C. but

D. still

(3) Would you like a cup of coffee (C ) shall we get down to business right away?

A. and

B. then

C. or

D. otherwise

(4) She thought I was talking about her daughter, (C ) in fact, I was talking about my

daughter.

A. and

B. which

C. while

D. then

提高训练——写作知识

引言与焦点

范文

The paper ’s topic is described computer programs.

A computer program is a set of instructions that tells the computer how to perform a specific task. For example, your favorite computer game is a program. In order for your computer to know how to play that game, you (or your parents) must first install the program from the game software - usually a CD. Installing the program means that you are copying the program or instructions that are stored on the CD on to your computer's hard drive. Programs can also be downloaded from the Internet directly to your hard drive.

Many programs (especially games) are very large and would take up lots of memory space on your hard drive. To keep that from happening, these programs are designed to only copy part of the program onto your computer. The rest of the program stays on the software. The program cannot be run from your computer unless you have the disk in the disk drive so that RAM can read the rest of the program from it.

Unit 10

Program Design

6 练习

1. Translate the following sentences.

(1) 这篇文章主要是讲述了计算机编程的新方法。

(2) 在文章里,我将向大家介绍面向对象程序设计。

(3) 本文的主题是分析未来程序设计语言发展的趋势。

2. Writing.

写一篇短文介绍计算机语言的发展历史和特点,要求简单介绍机器语言、汇编语言、高级语言的简单发展历程和各自的特点(150个单词以上)。

计算机专业英语第4次作业

计算机专业英语第4次作业 1.Windows gives you more control over the__A___ your work. A:operation B:way C:energy D:power 2.Tea or coffee ? Which is your___A___? A:preference B:confusion C:puzzle D:mixture 3.Programs that can destroy another computer's programs are called__D_. A:games B:computer languages C:bugs D:viruses 4.You were _C___ to us by our associates. A:told B:suggest C:recommended D:informed 5.You should be able to tell the meaning of this word from its ___C____. A:company B:conclusion C:context D:communication 6.___B___ refers to the parts of the computer that you can see and touch. A:Software

B:Hardware C:Hardship D:Instruction 7.___C______that, I could do it much better. A:If I do B:If I were do C:Were I to do D:Were I do 8.A network is a group of computers linked by communication lines . 正确 9.Most RAM is temporary, losing its contents when the computer's power is turned off. 正确 10.A program is a series of instruction that guides a computer through a process. 正确 11.写出下列术语的英文或中文意思。 1 message encryption 参考答案: 1 信息加密(术) 2 客户机-服务器结构 2 client-server architecture 3 关系数据库 3 relational database 4 microwave radio 4 微波无线电 5 digital television 5 数字电视 12:[论述题]12.阅读下列短文,从A、B、C、D四个选项中,选出最佳选项。 For every man in the Civil War who died in battle, two or three men died of disease. Doctors of that time knew very little about causes of sickness or ways of preventing it. Thousands of men in poor health became soldiers. Hundreds of others had never had childhood diseases. Many of these soldiers could not withstand the epidemics of measles, mumps, and whooping cough that went through the camps. Army life was hard. Soldiers got few fruits or vegetables. There was no milk unless they happened to find a cow. Neither their clothes nor their shelters protected the troops from rain, snow, and cold. Sickness and disease were spread by insects, rats, and impure drinking water. Often the men drank straight from muddy streams. Gunshot wounds were serious, as in any war,

计算机专业自荐信范文三篇

计算机专业自荐信范文三篇 篇一 尊敬的领导: 您好! 我是一名即将于xxxx年毕业的xx大学xx学院学生,所学专业是计算机。 大学四年来,我学习刻苦,成绩优异,曾多次获得奖学金。在师友的严格教益和个人努力下,我具备了扎实的基础知识。在软件方面,系统掌握了c语言,数据结构,power builder,数据库原理,汇编语言,软件工程等,并对面向对象的delphi和vc 等windows编程有一定了解。课外我还自学了vb,vf编程,asp动态网页及sql server等网络数据库编程语言。现已能独立编写专业的数据库管理系统。在硬件方面,通过参与单片机设计,组装收音机,网络工程的规划与管理及组建等实践活动,我掌握了计算机的工作原理及计算机网络原理技术。自入校以来,我充分利用业余时间广泛的参加社会实践活动。在我校信息学院计算机实验室工作的两年里,不但使我的专业技能得到了升华,也使我的管理和组织才能得以发挥和进一步的锻炼,得到了领导和老师的肯定和表扬。而且,曾经在欧亚科技等一些公司的打工经历使我具有一定的营销经验和社会经历,且业绩斐然。除此之外,在校期间,我还做过家教、社会调查等社会实践活动,积累了丰富的实践经验。 若有幸加盟,我可以致力于贵公司的软件开发或根据公司的需要随时致力于某方面的工作和学习。 “顺兮,逆兮,无阻我飞扬”是我的座右铭;“如临深渊,如履薄冰”是我的工作态度;“真诚,守信”是我的最大特点;开阔的胸襟使我获得许多朋友。聪明的头脑,创造的思维,开拓进取的坚韧,加上纯熟的专业技能,相信我是您的最佳选择。 请您给我一次机会,我必将还您以夺目的光彩。 感谢您耐心的阅读了我的求职信,如需要详细资料,请与我联系。 敬候佳音! 自荐人:xxx xxxx年xx月xx日 篇二 尊敬的先生/小姐: 您好!我是**大学应届本科毕业生,专业是计算机科学技术,明年7月我将顺利毕业并获得工程学士学位。在招聘网站获知贵公司正在招聘人才,我自信我在大学四年的学习情况会有助于我来应聘这些职位。 我有较好的计算机知识和应用能力,并于今年通过国家的软件资格水平的程序员考试!我能熟练的进行windows xp/server2003操作,能独立建网站和网络,对linux的各种应用操作和建网,熟练掌握计算机的安装操作维护,能独立解决软硬件故障,维持公司局域网正常运转.并能使用c,asp ,vfp,vb等语言编程。对网络技术也了解,参加今年的11月份网络工程师考试。另外我还能用photoshop 网页三剑客会声会音等软件进行相关工作。 我的英语水平也很突出,在二年级通过了国家四级的考试,在三年级获得六级成绩单。能够用英语进行翻译与写作,并能进行简单口语交流! 我很希望能加盟贵公司,发挥我的潜力。十分期待贵公司的面谈! 此致 敬礼 ** 20**年**月**日

计算机专业英语作文

计算机专业英语 系别:数学系 班级:11级计算机二班姓名:徐小凤学号:110312248

Robot Competition From 11th to 13th October 2013, these three days are special for my teammates and me. I took part in the fifth Robot Competition of Anhui province. After continuous efforts, we got the third prize in the end. In April 2013, this competition was announced in our class by Mr He. In that moment, many students registered for the competition. After hardly training, there were only fifteen students remaining. We were divided into five teams. Each included three people. There were three teams taking part in wheel type robot competition (or named intelligent car). And the other two majored in dancing robot. My two roommates and I engaged in the designing of robot dance. We controlled the robots by program. But the program was programmed in BASIC, which is a high level programming language. The problem was that we had never touched to that language besides C or C++. So, we must learn the language before designing the action. It seemed difficult but we had never lost our courage. After seeking enough data from the Internet and the library, we spent about a few weeks to learn it. When we felt the fundamental grammar was easy, we began to design the dancing action. That was the most important and most difficult part. We spent much time on

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

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

计算机专业英语作业及答案

计算机专业英语作业答案(供参考) 计算机专业英语作业1 第1-3章作业一.( 词汇) (一).(写出下列词组的汉语。) 1.()中央处理器 2 标题栏 3.操作系统4.个人计算机 5.菜单栏6.桌面排版 7.电子表格8.硬盘 9.数据库10.光标 (二)..(根据汉语写出相应的英语缩写。) 1.随机存储器2.只读存储器 3.传输控制协议P 4.数字视频光盘5.通用串行总线6.计算机辅助设计7.计算机辅助制造8.中央处理器 (三)..(根据汉语写出相应的英语。) 1.键盘2.鼠标3.扫描仪 4.打印机5.输入6.输出 7.显示器8.存储器9.数据库 10.操作系统11.应用软件 12.字处理器13.网络浏览器 二.(T) (F).(判断正误。) 1., . (√)

2.'s . (√) 3.: . (√) 4. a 2000 . (×) 5.( ) a . (√) 6. , a . (√) 7. , ’s . (×) 8. ’t . (×) 9. . (×) 10. . (×). 三..(将左列的词汇与右列相应的汉语匹配。) (一). 1. () a. 操作系统 2. b. 输入. 3. ( ) c. 只读存储器 4. ( ) d. 应用软件 5. e. 中央处理器 6. f. 系统软件 7. g. 硬件 8. h. 随机存储器 9. i. 内存 10. j. 输出 1.e 6. j 2.g 7.a 3.h 8. d 4.c 9. f 5.b 10. i (二) . 1. a

2. b a 3. c 4 d a 0 1 5. e a 6. f 7. g 8. h a 9. i a 1.d 6. a 2.g 7.f 3.h 8. c 4.b 9. e 5.i 四., . (从下面方框中选择合适的词或表达,以其适当的形式填空。) 1. () . , a . , . , , . , . 2. , , . , a a a , a , a , a . , , . a , , a . , 1-2-3 . a , a ( ) . 3.

计算机科学专业英文求职信范文

计算机科学专业英文求职信范文Model English application letter for Computer Science

计算机科学专业英文求职信范文 前言:个人简历是求职者给招聘单位发的一份简要介绍,包括个人的 基本信息、过往实习工作经验以及求职目标对应聘工作的简要理解, 在编写简历时,要强调工作目标和重点,语言精简,避免可能会使你 被淘汰的不相关信息。写出一份出色的个人简历不光是对找工作很有 用处,更是让陌生人对本人第一步了解和拉进关系的线。本文档根据 个人简历内容要求和特点展开说明,具有实践指导意义,便于学习和 使用,本文下载后内容可随意调整修改及打印。 dear every leader: you are good! i am jiangxi normal college mathematics and computer science college mathematics professional graduates, after careful consideration to join your school. in the university three years, time in accordance with the "wide professional, the thickening foundation, strengthening ability, high quality" standard to exercise and develop, in continuous learning and practice to improve their comprehensive quality, and

计算机专业英语第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分)

计算机专业英语作业(1).

计算机专业英语作业(1 一、Translate the following sentences into English or Chinese. 1.计算机 2.多媒体 3.硬件 4.软件 5.输入设备 6.存储器 7.外部设备8.处理器 9.鼠标10.语音识别 11.扫描仪12.寄存器 13.Arithmetic and logic unit 14.Binary form 15.Control unit 16.Instruction cycle 17.Execution cycle 18.Central processing unit 19.Universal serial bus 20.Universal parallel bus 二、For each of the following blanks, four choices are given. Choose the most appropriate one. 1.A personal computer keyboard includes . a.a typewriter layout and a set of arrow keys

b.a numeric keypad C.a Set of function keys d.a11 of above 2.A display is a device that is used to display . a.numbers letters b.special characters c. graphic information d.all of above 3.system software includes and . a.operating system and application software b.operating system and programming language c.special—purpose programs and application software d.OS and special—purpose programs https://www.360docs.net/doc/d016284427.html,rmation flows from a computer into a peripheral device as . a.output b.memory c.a program d.input 5.programs are known collectively as .

计算机专业自荐书:范文3篇

计算机专业自荐书:范文3篇 计算机专业自荐书范文一:尊敬的领导: 您好! 我是一名即将于xx年毕业于北京市计算机信息职业技术学院的学生,所学专业是计算机。现知贵单位招聘,特拟求职信求职。以下是我的自我介绍:在校四年来,我学习刻苦,成绩优异,曾多次获得奖学金。在师友的严格教益和个人努力下,我具备了扎实的基础知识。在软件方面,系统掌握了c语言,数据结构,power builder,数据库原理,汇编语言,软件工程等,并对面向对象的delphi和vc 等windows编程有一定了解。 课外我还自学了vb,vf编程及网页制作。现已能独立编写专业的数据库管理系统。在硬件方面,通过参与单片机设计,组装收音机,网络工程的规划与管理及组建等实践活动,我掌握了计算机的工作原理及计算机网络原理技术。我热情开朗,热爱旅游,每次旅游都让我学习到好多东西,交到好多的朋友。以前做过不少的兼职,包括在家的时候也在找兼职,这些都是我工作宝贵的经历,从一个什么都不懂没有任何工作经历的小孩子,慢慢变得成熟。希望以后能从事我喜欢的职业,我会尽力把工作做好。 若有幸加盟,我可以致力于贵公司的软件开发或根据公司的需要随时致力于某方面的工作和学习。 我正处于人生中精力充沛的时期,我渴望在更广阔的天地里

展露自己的才能,我不满足与现有的知识水平,期望在实践中得到锻炼和提高,因此我希望能够加入你们的单位。我会踏踏实实的做好属于自己的一份工作,竭尽全力的在工作中取得好的成绩.我相信经过自己的勤奋和努力,一定会做出应有的贡献。 感谢您耐心的阅读了我的求职信,如需要详细个人简历,请与我联系。敬候佳音! 此致 敬礼 自荐人:xxx 时间:xxxx年xx月xx日 计算机专业自荐书范文二:尊敬的领导: 您好! 感谢您阅读我的自荐材料。 请恕打扰,我是xx学院的一个大学生,即将面临毕业.我很荣幸有机回向您呈上我的个人资料.在投身社会之际,为了找到符合自己专业和兴趣的工作,更好地发挥自己的才能,实现自己的人生价值。 以下是我的个人自我介绍: 作为一名计算机专业的大学生,我热爱我的专业并为其投入了巨大的热情和精力. 在三年的学习生活中,我所学习的内容包括了从计算机的基础知识到运用等许多方面.通过对这些知识的学习,我对这一领域的相关知识有了一定程度的理解和掌握,此专业是一种工具,而利用此工具的能力是最重要的,在与课程同步进行的各种相关时践和实习中, 具有了一定的实际操作能力和技术.

计算机专业英语教程参考答案

计算机专业英语练习参考答案 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.E 7.H 8.A B. https://www.360docs.net/doc/d016284427.html,er 2.monitor 3.data 4.keyboard 5.data processing 6. information https://www.360docs.net/doc/d016284427.html,puter 8.memory [Ex 4] 1.input device 2. screen, screen 3.manipulates 4.instructions 5.retrieve

6.code 7.hard copy 8.function/code/instruction [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. supercomputer, mainframe computer, minicomputers, microcomputers 3. mainframe computer 4.microcomputers, storage locations 5. portables, laptop computers/ notebook/palm-sized computer, desktop workstations 6.semiconductor 7. CPU, memory, storage, devices, processing, users 8. microprocessor ship [Ex 3] A. 1.C 2.A 3.H 4.I 5.E 6.F 7.G 8.B

计算机专业英语作业

计算机专业英语作业: 1、请将视频“什么是电脑硬件”中所述内容用英文表示。 For most people, computers are becoming a part of real life, the film will help you konw how it works. Their interior looks very complicated, but if the decomposition of parts, you will see a simple side of computers , This is《computer hardware in Plaining English 》,you see them, they are coming all shapes and sizes,but its work in some ways. In fact, if you can see their internals of computers, You will find that they all have the basic parts,the haddwares,do large part of the works in the computers.to explan,let’s look at some things you know ,like a house.what a great thing in the house is you have full space to put all the iterms.in fact ,many houses have basements.The basement is a good place to store debris.Basement, the more you can store.The same principle applies to computers.We need not boxes and bicycles, but photos, music, documents and https://www.360docs.net/doc/d016284427.html,plete this task in the computer hard drive rather than in the basement, a computer hard drive, holds all your files will be used later, like basements, like the larger hard drive, the more things you can store. Basement is not perfect, going to the basement to take the things you need to spend much time, maybe put a cupboard on the ground floor can help you solve this problem, you can quickly get the items you want, although the cabinet can not put too many items, at least you do not always go to the basement, in the computer too, The computer can not quickly access to the data stored in the hard disk, because the computer go a long way to gain access to the hard disk data. In the computer memory (RAM) is like a cupboard, RAM's full name is called [random access memory], which allows the computer to access data more quickly and, of course, it also means that the operation of RAM to make your computer faster , but this cupboard (RAM) has a drawback, the memory will be cleared of stored data When every time you restart, of course, to make the house a variety of household appliances can operate at the appropriate time, you must have an Explorer to help you manage these appliances, if the weather is too hot , you maybe need to open the air conditioner to adjust the temperature, when it is dark, you need to turn on the lights. Computers, too, must have a bit Explorer to ensure that all other parts are functioning properly, the Explorer is the processor (CPU), small size of the processor, like a computer exclusive (in charge), it will send and receive information and to assist the software to complete the work. The faster the processor, the faster execution speed of the computer would be, so, let us revisit. Hard drive, like a basement, it can store the information you need. Memory, like a cupboard, which can increase data access speed. Processor, like the Field Explorer, always able to complete the work that we deliver, but also to ensure the normal operation of the various parts. Next time, when you use the computer, think about plain English in the host computer's computer hardware what happened, the various parts of computer hardware complement each other, to help you do all the things I Common Craft's Lee LeFever, "Computer hardware of Plaining English "The film recorded by me, if you need a higher quality video, or need to use the authorization of the film, please contact me https://www.360docs.net/doc/d016284427.html, website. 2、请将以下英文翻译为中文。

计算机专业英文求职信范文4篇

计算机专业英文求职信范文4篇Computer professional English cover letter

计算机专业英文求职信范文4篇 前言:个人简历是求职者给招聘单位发的一份简要介绍,包括个人的基本信息、过往实习工作经验以及求职目标对应聘工作的简要理解,在编写简历时,要强调工作目标和重点,语言精简,避免可能会使你被淘汰的不相关信息。写出一份出色的个人简历不光是对找工作很有用处,更是让陌生人对本人第一步了解和拉进关系的线。本文档根据个人简历内容要求和特点展开说明,具有实践指导意义,便于学习和使用,本文下载后内容可随意调整修改及打印。 本文简要目录如下:【下载该文档后使用Word打开,按住键盘Ctrl键且鼠标单击目录内容即可跳转到对应篇章】 1、篇章1:计算机专业英文求职信范文 2、篇章2:届计算机专业文档 3、篇章3:届计算机专业应届生英文求职信文档 4、篇章4:计算机专业毕业生英文求职信范文 篇章1:计算机专业英文求职信范文 dear leaders: hello!

first of all, thank you for your busy schedule to take time to read my cover letter. i am a about to graduate in XX student xxxxxxxxxx, the school is a computer professional. university for four years, i learned a wealth of expertise and their ability to exercise. through four years of studying, i have the c language, assembly language, compiler principle, powerbuilder, database theory, and object-oriented c + + and vc + +, etc. have a certain understanding of windows programming. i also had extra-curricular learning delphi programming, asp dynamic pages and web-based database. learn the computer must have a strong level of foreign language, i am fairly good results in the continuity of the state through the four examinations in english, is now capable of reading and translation of computer data. also worth mentioning is the use of spare time i had to pass microsofts mcse (microsoft certified system engineer).

《计算机英语(第3版)》练习参考答案(5-8)

Unit Five: Software Process Unit Five/Section A I. Fill in the blanks with the information given in the text: 1. off-the-shelf 1 2. exclusive 2 3. cascade 3 4. requirements; integration 4 5. throwaway 5 6. immediate; stable 67. reuse-oriented; framework 78. software; compromises II. Translate the following terms or phrases from English into Chinese and vice versa: 1 1. system specification 系统规格说明 2 2. unit testing 单位(或单元、部件)测试 3 3. software life cycle 软件生命周期(或生存周期) 4 4. system validation testing 系统验证测试 5 5. evolutionary development process 演化开发过程 6 6. simple linear model 简单线性模型 77. program unit 程序单元 88. throwaway prototype 抛弃式原型 99. text formatting 正文格式编排,文本格式化 1010. system evolution 系统演变 1111. 系统设计范例system design paradigm 1212. 需求分析与定义requirements analysis and definition 1313. 探索式编程方法exploratory programming approach 1414. 系统文件编制system documentation 1515. 瀑布模型waterfall model 1616. 系统集成system integration 1717. 商用现成软件commercial off-the-shelf ( 或COTS) software 1818. 基于组件的软件工程component-based software engineering (CBSE) 1919. 软件维护工具software maintenance tool 2020. 软件复用software reuse III. Fill in each of the blanks with one of the words given in the following list, making changes if necessary: There are three different types of software maintenance. Firstly, there is maintenance to repair software faults. Coding errors are usually relatively cheap to correct; design errors are more expensive as they may involve rewriting several program components. Requirements errors are the most expensive to repair because of the extensive system redesign that may be necessary. Secondly, there is maintenance to adapt the software to a different operating environment. This type of

计算机专业英语作业(2)

计算机专业英语作业(2) 一、Translate the following sentences into English or Chinese. 1.热插拔2.操作系统 3.芯片组4.输入输出端口 5.挂接设备6.键盘 7.触摸屏8.屏幕指针 9.光笔10.游戏杆 11.轨迹球12.显示屏 13.图标14.图形符号 15.高速缓冲存储器16.外部总线 17.远程访问18.调制解调器 19.宽带20.激光打印机 21.Crosshair cursor 22.Dragging and dropping 23.Portable computer 24.Machine address 25.Non-impact method 26.Monochrome output 27.Grayscale output 28.Ink-jet printer 29.Solid-ink printer 30.High-intensity laser beam 31.Replaceable color cartridge 32.Thermal-transfer printer 33.Thermal-wax-transfer printer 34.Dye-sublimation printer 二、For each of the following blanks, four choices are given. Choose the most appropriate one. 1.The basic input device on a sma11 computer is a . a.display screen b.keyboard

相关文档
最新文档