Explain how you would define a variable named balance, assuming that it will only be accessed in a single function.

Balance should be a global variable held in memory until the execution ends.
Balance should be a global variable on a hard drive to save memory.
Balance should be a local variable held in memory, so the code runs quickly.
Balance should be a local variable in the function, so it saves memory.