A system admin has created a script to automate a common task across many servers. The script obtains the latest patch applied to the operating system, then checks to see if there are newer versions available. What software development term describes the item used to store the latest patch data?
Correct Incorrect Unanswered Report Issue Answer Description
In software development a variable is defined in a script or software application to store some sort of data temporarily. In this use case you may have something like $latest_patch_version=3.4.2
where the variable would be $latest_patch_version
and the value would be 3.4.2
.
Wikipedia
In computer programming, a variable is an abstract storage location paired with an associated symbolic name, which contains some known or unknown quantity of data or object referred to as a value; or in simpler terms, a variable is a named container for a particular set of bits or type of data (like integer, float, string etc...). A variable can eventually be associated with or identified by a memory address. The variable name is the usual way to reference the stored value, in addition to referring to the variable itself, depending on the context. This separation of name and content allows the name to be used independently of the exact information it represents. The identifier in computer source code can be bound to a value during run time, and the value of the variable may thus change during the course of program execution.Variables in programming may not directly correspond to the concept of variables in mathematics. The latter is abstract, having no reference to a physical object such as storage location. The value of a computing variable is not necessarily part of an equation or formula as in mathematics. Variables in computer programming are frequently given long names to make them relatively descriptive of their use, whereas variables in mathematics often have terse, one- or two-character names for brevity in transcription and manipulation.
A variable's storage location may be referenced by several different identifiers, a situation known as aliasing. Assigning a value to the variable using one of the identifiers will
Variable_(computer_science) - Wikipedia, the free encyclopedia Subscribe to avoid duplicate questions and track your progress over time