question of the day\nhow do programs use variables to store and update information as they run?\nhint. think…

question of the day\nhow do programs use variables to store and update information as they run?\nhint. think about some of the ways you used variables in your programs today.
Answer
Brief Explanations:
In programming, variables are named storage locations in memory. When a program runs, it can assign values to variables to store information. To update information, the program can re - assign new values to the same variable. For example, in a counting program, a variable might start with a value of 0 and then be incremented by 1 each time a certain event occurs.
Answer:
Programs assign initial values to variables to store information. To update, they re - assign new values to the same variable names.