The most important concept in programming is the concept of variables.
A variable is a named storage facility for data. You must always remain aware of all three aspects of one variable:
The term "storage facility" is often called the "storage location" to indicate that it exists somewhere in some kind of space. It is quite accurate to think that a variable really is a small piece of one of the memory chips (called SDRAM today) that is installed in the computer. When you buy more memory for a computer, you are making the computer more powerful by allowing it to use more variables at the same time.
The three aspects are all different. The name is what you as the programmer write in the program to specify which variable an operation should apply to. The storage facility is accessed by the computer when the program commands an operation on the variable specified by its name. The value of the variable changes while the variable itself, and its name, remain unchanged.
Today's prominence of object oriented programming ideas is due to people understanding now that variables are the best things to start with when understanding computer programs.
There has been error in communication with booki server. Not sure right now where is the problem.
You should refresh this page.