Conditionals: Difference between revisions
Mr. MacKenty (talk | contribs) (Created page with "right|frame|Programming basics<ref>http://www.flaticon.com/</ref> In computer programming, a variable is a storage location paired with an associated symb...") |
Mr. MacKenty (talk | contribs) No edit summary |
||
Line 3: | Line 3: | ||
In computer programming, a variable is a storage location paired with an associated symbolic name (an identifier) which contains a value.<ref>https://en.wikipedia.org/wiki/Variable_(computer_science)</ref> | In computer programming, a variable is a storage location paired with an associated symbolic name (an identifier) which contains a value.<ref>https://en.wikipedia.org/wiki/Variable_(computer_science)</ref> | ||
In other words, '''a variable is a storage location for data'''. Variables have names. Some computer | In other words, '''a variable is a storage location for data'''. Variables have names. Some computer languages mandate you assign a [[data type]] to variables. | ||
== Standards == | == Standards == | ||
* Define the terms: variable, constant, operator, object. | * Define the terms: variable, constant, operator, object. | ||
== See Also == | |||
* [[Conditionals in php]] | |||
== References == | == References == |
Revision as of 19:42, 18 September 2016
In computer programming, a variable is a storage location paired with an associated symbolic name (an identifier) which contains a value.[2]
In other words, a variable is a storage location for data. Variables have names. Some computer languages mandate you assign a data type to variables.
Standards[edit]
- Define the terms: variable, constant, operator, object.