Variable
A named place where a program keeps a value.
๐ In simple words
A named place where a program keeps a value.
๐ Technical definition
A named storage location whose value can be set, read and changed while the program runs.
Pseudocode example
1SET AGE = 252DISPLAY AGE
๐ Real-world analogy
A labelled box: the label is the name, the thing inside is the value.