Are variables in computer programming the same as variables in math class? Why or why not?
No they are not, variables in math represent a value for something, while a variable in programming is where stuff is stored.
When creating a variable, what are the two types of scope a variable can have? That is, what can it affect. (Think about your options as you make a variable)
The first type of variables are local variables and the second type are gloabal variables.It can affect one of the sprites or one of them.
How many values can a variable store at one time?
One
What will the following code snippet do? Explain why it doesn’t work as intended.
Neither variable has been given a value so it won't work.
Given the following code snippet, explain what is happening.