Variables
A variable is a named location in main memory.
The value of the variable is the contents of the memory location
Variables are also known as attributes or fields depending on the context.
Variable Naming conventionÂ
the variable name should be descriptive
do not use short forms as your names
start with a lower case letter
Changing a value of a variable
variable_name = new_value