
Basic English for Computing / Texts+Tests for Units 1-28 / UNit 22Документ Microsoft Office Word 97 - 2003
.docUnit 22
1 Words to know
1 central processing unit (CPU), n |
центральный процессор, ЦП |
2 interrupt , v |
прерывать, препятствовать, мешать |
3 interrupt signal, n |
сигнал прерывания |
4 decode, v |
декодировать |
5 execute, v |
выполнять, исполнять |
6 execution, n |
выполнение, исполнение |
7 execution time, n |
время выполнения |
8 machine cycle, n |
машинный цикл |
9 unidirectional, adj. |
однонаправленный |
10 synchronize, v |
cинхронизировать, согласовывать во времени |
11stack, n |
стек |
12 secondary storage, n |
вторичная память, память второго уровня, внешняя память, внешние запоминающие устройства |
13 ROM (read-only memory), n |
постоянное запоминающее устройство, ПЗУ |
14 robot, n |
робот |
15 register, n |
регистр |
16 plotter, n |
плоттер, графопостроитель |
17 place value, n |
позиционный весовой множитель (цифры в позиционной системе счисления) |
18 optical disk, n |
оптический диск |
19 memory address, n |
адрес [ячейки] памяти |
20 main memory, n |
основная память, оперативная память, ОЗУ |
21 binary system, n |
1) двоичная система счисления 2) бинарная система |
22 instruction, n |
машинная команда, команда (в языках низкого уровня), оператор (в ЯВУ) |
23 instruction time(i-time), n |
время выборки команды |
24 fetch , n, v |
1) выборка 2) выбирать, извлекать |
25 decimal, n |
десятичное число |
26 data glove, n |
перчатка виртуальной реальности |
27 data bus, n |
шина данных |
28 clock chip, n |
синхронизирующий микросхема (чип) |
29 clock lıne, n |
канал синхронизации |
30 bus, n |
шина |
31 address bus, n |
шина адреса, адресная шина |
32 bidirectional, adj. |
двунаправленный, двусторонний, реверсивный |
33 bınary, adj. |
двоичный, бинарный, двойной |
34 arithmetic and logic unit (ALU), n |
арифметико-логическое устройство, АЛУ |
|
|
2 Read the text
Low-level systems
The main parts of a computer system consist of the processor, memory, input devices, output devices, and storage devices. The processor is the most important part of the computer. It is sometimes called the central processing unit or CPU, although the term CPU is sometimes used to mean the processor and the main memory together. The main components of the processor are shown in the table.
Component |
Description |
Arithmetic and Logic Unit (ALU) |
Performs arithmetic functions (e.g.+,-) and logic operations (e.g. AND,OR) on the data.
|
Control Unit (CU) |
Synchronizes and controls all parts of the computer.
|
Registers |
Small temporary memory areas that hold instructions and data that is needed immediately.
|
Buses |
Connectors that carry signals between the processor and other parts of the computer. The three main ones are: the control bus, the data bus, and the address bus.
|
Processors follow a fixed sequence of steps, called the machine cycle, to process a program instruction.
Step |
Action |
Name |
1 |
fetches the next instruction from memory
|
Instruction time |
2 |
decodes the fetched instruction
|
(I-time) |
3 |
executes the decoded instruction
|
Execution time |
4 |
stores the result in memory |
(E-time) |
Programs instructions are normally executed one after another in order, but if sometimes happens in the system that needs urgent attention, an interrupt signal is sent to the processor. The processor determines the priority of the action and stops what it is doing at an appropriate time to deal with the problem, i.e. to service the interrupt.
A variety of number systems are used in computing. The binary system is made up of 1s and 0s, and is ideal for representing the on and off states of the electronic switches in a computer. Binary numbers can be converted to decimal numbers by multiplying the binary digits by their place values, and adding the results together. For example, the binary number 111 has a value of (1x4)+ (1x2)+(1x1)= 4+2+1= 7.
Decimal numbers can be converted to binary numbers by repeatedly dividing the decimal number by 2, and writing down the remainders in reverse order.
This is the most technical of all the units. Do not be tempted to omit it. It covers some of the most important aspects of how computers work and students need the language covered. Read this introduction carefully. Remember, students can be very helpful to each other, and will take delight in explaining any points one of them may not understand.
3 Answer the following questions:
1 What do the main parts of a computer system consist of?
2 What are the main components of the processor?
3 What is called the machine cycle?
4 In what way are programs instructions normally executed?
5 How can binary numbers be converted to decimal numbers?
6 How can decimal numbers be converted to binary numbers?
Test 11
Match each word from column A (1-27) with its partner from column B (a-aa) to make a computing term definition. All of these terms are from Basic English for Computing Units 21-22
A B |
|
1 assembly language
|
a) a computer language that uses a system of tags for creating web pages
|
2 machine code
|
b) a program that converts other programs into machine code line by line as the programs are being used
|
3 high-level language
|
C) the electronic processor at the center of a computer. It is sometimes used to refer to the combination of the processor and the main memory.
|
4 low-level language
|
d) to decide what a program instruction means
|
5 HyperText Markup Language
|
e) a low-level computer language that uses mnemonics rather than only numbers, making it easier than machine code for humans to read and write
|
6 tag
|
f) a signal that causes the processor to stop what it is doing temporarily so that it can process something that is more urgent
|
|
|
7 embed
|
g) to perform a computer operation by processing a program instruction
|
8 portable language
|
h) a computer language that consists entirely of a combination of 1s and 0s
|
9 scrıpt
|
i) the time taken to execute a program instruction and store the result in memory
|
10 scrıptıng language
|
j) a label used in HTML that is attached to a piece of text to mark the start or the end of a particular function
|
11 spacebar
|
k) a programming language closer to human language than low-level computer languages such as machine code or assembly language
|
12 systems programmıng
|
l) an application program that can be used in a variety of ways
|
13 vırus check
|
m) a small program written in a scripting language that is used to perform a simple function or to tie other programs together
|
14 compiler program
|
n) a language that can be easily converted for use on a number of different opeating systems
|
15 interpreter program
|
o) a computer language such as machine code or assembly language that is closer to the form that a computer understands than to that of a human language
|
16 general purpose applıcatıon
|
p) to insert an object inside another object
|
17 programmıng envıronment
|
q) a test of a system to see if it contains a virus
|
18 central processing unit (CPU)
|
r) a simple computer language used for writing scripts that control computer applications
|
19 interrupt signal
|
s) the complete processes performed by the CPU of fetching, decoding, executing, and storing the result of a program instruction
|
20 decode
|
t) designed to carry signals in or from one direction only
|
21 execute
|
u) memory used for storing data that is not currently being used
|
22 execution time
|
v) a temporary register that is used to store program instructions and data in a fixed sequence while the processor services an interrupt
|
23 machine cycle
|
w) to control the timing of events so that they take place in the correct order
|
24 unidirectional
|
x) packages of software and/or hardware with the help of which programmers operate
|
25 synchronize
|
y) a program that converts the whole of a program into machine code before the program is used
|
26 stack
|
z) the writing of systems programs
|
27 secondary storage
|
aa) the long key along the bottom of a keyboard used for inserting blank spaces in a document
|