What are Variables?
This lesson informs about what variables are and the acceptable variables names.
We'll cover the following...
Introduction
A variable in any programming language is a named piece of computer memory, containing some information inside.
Think of a variable as a box with a name, where we can “store” something.
We create, edit and delete variables, as much as we need in our tasks. They are devices that are used to store data, such as a number, or a string of character data.
Naming your Variables
Programmers use symbolic names to ...