Conditionals: Difference between revisions
Mr. MacKenty (talk | contribs) No edit summary |
Mr. MacKenty (talk | contribs) No edit summary |
||
Line 4: | Line 4: | ||
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. | 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. | ||
== A video == | |||
This video references the C programming language and scratch, but the ideas about conditionals are excellent. | |||
<html> | |||
<iframe width="560" height="315" src="https://www.youtube.com/embed/kTnp_-nyocs" frameborder="0" allowfullscreen></iframe> | |||
</html> | |||
== Standards == | == Standards == |
Revision as of 19:44, 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.
A video[edit]
This video references the C programming language and scratch, but the ideas about conditionals are excellent.
Standards[edit]
- Define the terms: variable, constant, operator, object.