variables
Variables are symbols that represent quantities or data values. In mathematics, a variable denotes a value that can change, such as x in an equation. In computing, a variable is a name associated with a storage location that holds a value during program execution.
In programming languages, a variable combines a name, a storage location, and a value. The value can
Scope determines where a variable can be accessed: local variables are visible only within a block or
Initialization is the process of giving a variable its first value. Some languages require it before use;