Английский язык в информационных технологиях. Демкина Л.М. - 44 стр.

UptoLike

Составители: 

46
3. Запомните следующие слова и письменно переведите тексты.
1. an alphabetic character – алфавитный символ;
2. array variables массивные переменные;
3. to assign назначить, присвоить;
4. a comma запятая;
5. declaring variables объявленные переменные;
6. to destroy уничтожать;
7. to determine определять;
8. dynamic array динамический массив;
9. embedded period пробел;
10. explicitly явно;
11. lifetime жизненный цикл;
12. local scope локальная область;
13. misspell орфографическая ошибка;
14. multiple многочисленный;
15. naming restrictions ограничения присваивания имени;
16. parentheses круглые скобки;
17. placeholder – метка-заполнитель;
18. procedure-level процедурный уровень;
19. recognizable - опознавание, распознавание;
20. to retrieve извлекать;
21. scalar variables скалярные переменные;
22. scope область;
23. script-level скриптовый уровень;
24. to separate разделять, отделять;
25. single-dimension одномерный массив;
26. statement утверждение;
27. two-dimension двумерный массив;
28. unique уникальный;
29. value значение;
30. variable переменная.
VBScript Variables
What Is a Variable?
A variable is a convenient placeholder that refers to a computer memory location where you
can store program information that may change during the time your script is running. For
example, you might create a variable called ClickCount to store the number of times a user
clicks an object on a particular Web page. Where the variable is stored in computer memory
is unimportant. What's important is that you only have to refer to a variable by name to see
its value or to change its value. In VBScript, variables are always of one fundamental data
type, Variant.
Declaring Variables
You declare variables explicitly in your script using the Dim statement, the Public
statement, and the Private statement. For example:
Dim DegreesFahrenheit
You declare multiple variables by separating each variable name with a comma. For
example:
Dim Top, Bottom, Left, Right
  3. Запомните следующие слова и письменно переведите тексты.
      1.    an alphabetic character – алфавитный символ;
      2.    array variables – массивные переменные;
      3.    to assign – назначить, присвоить;
      4.    a comma – запятая;
      5.    declaring variables – объявленные переменные;
      6.    to destroy – уничтожать;
      7.    to determine – определять;
      8.    dynamic array – динамический массив;
      9.    embedded period – пробел;
      10.   explicitly – явно;
      11.   lifetime – жизненный цикл;
      12.   local scope – локальная область;
      13.   misspell – орфографическая ошибка;
      14.   multiple – многочисленный;
      15.   naming restrictions – ограничения присваивания имени;
      16.   parentheses – круглые скобки;
      17.   placeholder – метка-заполнитель;
      18.   procedure-level – процедурный уровень;
      19.   recognizable - опознавание, распознавание;
      20.   to retrieve – извлекать;
      21.   scalar variables – скалярные переменные;
      22.   scope – область;
      23.   script-level – скриптовый уровень;
      24.   to separate – разделять, отделять;
      25.   single-dimension – одномерный массив;
      26.   statement – утверждение;
      27.   two-dimension – двумерный массив;
      28.   unique – уникальный;
      29.   value – значение;
      30.   variable – переменная.
                                              VBScript Variables

What Is a Variable?
      A variable is a convenient placeholder that refers to a computer memory location where you
      can store program information that may change during the time your script is running. For
      example, you might create a variable called ClickCount to store the number of times a user
      clicks an object on a particular Web page. Where the variable is stored in computer memory
      is unimportant. What's important is that you only have to refer to a variable by name to see
      its value or to change its value. In VBScript, variables are always of one fundamental data
      type, Variant.

Declaring Variables
      You declare variables explicitly in your script using the Dim statement, the Public
      statement, and the Private statement. For example:
               Dim DegreesFahrenheit
      You declare multiple variables by separating each variable name with a comma. For
      example:
               Dim Top, Bottom, Left, Right



                                                     46