Добавил:
Upload Опубликованный материал нарушает ваши авторские права? Сообщите нам.
Вуз: Предмет: Файл:
Book+test(перевод).docx
Скачиваний:
110
Добавлен:
13.02.2016
Размер:
193.56 Кб
Скачать

3 Answer the following questions:

1. Are computers controlled by sets of instructions?

2. Whom are programs written by?

3. What does a programmer use to write a program?

4. What is the first task of programmers?

5. What does documentation to a program contain?

6. Do programmers have to be involved in the initial training of users? What for?

7. What do programmers use to show the sequence of logical steps in a program?

8. Is it easy to write a program without any faults?

9. What does the term “debug” mean?

Unit 20

1 Words to know

debug, n, v

отладка, отлаживать, исправлять

pilot, n

опытный проект, экспериментальный проект

test, n, v

тест, тестовая программа

compilation error, n

ошибка компиляции

linking error, n

ошибка соединения

system error, n

ошибка системы, системная ошибка

branch, n

переход, ветвление

loop

цикл

library,n

библиотека

library file, n

библиотечный файл, файл библиотеки

syntax error, n

синтаксическая ошибка

Net, n

сеть (как правило, Internet или другая большая компьютерная сеть, например Usenet)

debugging, n

отладка (программы); наладка (машины или механизма)

spelling checker, n

блок орфографического контроля

HTML (Hypertext Mark-up Language), n

язык гипертекстовой разметки, язык разметки гипертекста, язык HTML

active page, n

активная страница

2 Read the text

Interview: Analyst/Programmer

Computing jobs often include a mixture of duties. An Analyst/Programmer does some systems analysis and some programming. The person we hear being interviewed in this unit is part of a team working on the development of a computer program that will be used for teaching mathematics to young adults with numeracy problems. The program uses graphics and animation, and has a database to store information used in the mathematical problems.

Programs can be written in a variety of computer languages. There is a large number of computer languages available for use by programmers. Each language is designed for use in solving particular types of problem and therefore has particular strengths and weaknesses. A system analyst has to decide which language is most appropriate in ach situation. Languages such as C++ are particularly suitable for writing systems programs.

The language chosen will depend on a number of factors including what system the program will run on, what the function of the program is, and the knowledge of the programmer. This analyst/programmer uses a variety of computer languages including C++(C plus plus), HTML(HyperText Markup Language),JavaScript, VB(Visual Basic), and Delphi. Programs written using high-level languages are usually compiled. i.e. converted into machine code consisting of only 1s and 0s, by a program called a compiler.

Sections of program code that are used often are stored together in a file called a library file. The Active Server system mentioned by the analyst/programmer is a system that allows webpages to be used for running small programs on the main server computer on a network.

An error in a computer program is often called a bug and the processes of finding and fixing errors is known as debugging. In this project, three types of programming errors are mentioned, i.e. compilation errors, linking errors, and logic errors. Logic errors sometimes occur at branches and loops in a program.

A branch is a programming structure where two different paths can be followed depending on whether a given condition is true or false.

_______________________________________________________

Structure Action

IF condition processes the instructions

THEN instructions if the condition is true

A loop is a programming structure where a part of the program is repeated a fixed number of times or until a condition is met.

Structure

Action

FOR condition

instructions

NEXT variable

Repeats the instructions a fixed number of times set by the condition and increases the variable by 1 each time the loop is completed

REPEAT

Instructions

UNTIL condition

Repeats the instructions until the condition is true