Variables
What happens if you use a reserved name like "cint" as a variable name?
Does it set aside more space in memory for an integer or for a double precision variable? (Explain your answer).
How much space does it set aside for a string variable?
The value of a variable can change during execution of a program. Can the value of a property of an object change during execution?
Do properties and variables both have names?
Do properties and variables both have data types?
Do properties and variables both have values?
Write the Dim statement to construct:
a string variable with an initial value "Henry Smith"
a string variable with a null initial value
a string variable with an initial value of "0"
a string variable with an initial value of 0
a double precision variable with an initial value of 3.14159
a double precision variable with an initial value of 0
a double precision variable with an initial value of "Bob"