Variable

1. прилагательное 1) изменчивый, изменяющийся, непостоянный Например: variable wind — переменный ветер events, which depend at once on constant and on variable conditions — события, одновременно зависящие как от постоянных, так и от меняющихся условий Синоним(ы): changeable, inconstant 2) [технический термин] переменный 3) [биология] аберрантный; изменчивый 2. имя существительное 1) [математика] переменная (величина) Например: dependent variable — зависимая переменная independent variable — независимая переменная random variable — случайная переменная 2) [морское дело] неровный ветер 3) (variables) [морское дело] районы океана, где нет постоянного ветра 4) [астрономия] переменная звезда 5) что-либо изменчивое (изменяющийся фактор, черта, элемент)

Большой англо-русский словарь

Variable

= var 1) переменная в программировании - именованная область памяти данных, которой программно можно присваивать разные значения. Таким образом, содержимое ячеек этой памяти - это текущее значение переменной. Для использования переменной в программе её необходимо (явно или неявно) объявить: присвоить идентификатор (identifier) и задать тип. Тип переменной определяет, какие возможные значения она может принимать и какие операции над ней можно выполнять. Соответствие типа переменной и её использования проверяется во время компиляции программы. По области действия различают локальные (local variable) и глобальные (global variable) переменные Смотри также: anonymous variable, declare, expression, integer variable, literal, loop variable 2) изменчивый, непостоянный, изменяющийся

Англо-русский словарь компьютерных терминов

Variable

1) переменная (величина); переменный 2) изменчивый 3) изменяемый; варьируемый 4) регулируемый Например: variable unrestricted in sign — переменная, не ограниченная в знаке variable with upper bound — переменная с верхним пределом to be variable from a to b — изменяться в пределах от a до b to separate variables — математика разделять переменные

Англо-русский научно-технический словарь

Variable

переменная (величина); параметр

Англо-русский политехнический словарь

Variable

I. adjective Etymology: Middle English, from Anglo-French, from Latin variabilis, from variare to vary 1. a. able or apt to vary; subject to variation or changes Example: variable winds Example: variable costs b. fickle, inconstant 2. characterized by variations 3. having the characteristics of a variable 4. not true to type; aberrant — used of a biological group or character • variability nounvariableness nounvariably adverb II. noun 1. a. a quantity that may assume any one of a set of values b. a symbol representing a variable 2. something that is variable 3. variable star

Merriam-Webster's Collegiate Dictionary

Variable

(Sometimes "var" /veir/ or /var/) A named memory location in which a program can store intermediate results and from which it can read it them. Each programming language has different rules about how variables can be named, typed, and used. Typically, a value is "assigned" to a variable in an assignment statement. The value is obtained by evaluating an expression and then stored in the variable. The simplest form of variable corresponds to a single-word of memory or a CPU register and an assignment to a load or store machine code operation. A variable is usually defined to have a type, which never changes, and which defines the set of values the variable can hold. A type may specify a single ("atomic") value or a collection ("aggregate") of values of the same or different types. A common aggregate type is the array - a set of values, one of which can be selected by supplying a numerical index. Languages may be untyped, weakly typed, strongly typed, or some combination. Object-oriented programming languages extend this to object types or classes. A variable's scope is the region of the program source within which it represents a certain thing. Scoping rules are also highly language dependent but most serious languages support both local variables and global variables. Subroutine and function formal arguments are special variables which are set automatically by the language runtime on entry to the subroutine. In a functional programming language, a variable's value never changes and change of state is handled as recursion over lists of values.

Free Online Dictionary of Computing