1. Post a screenshot of your code for the caesarDecrypt function.
see below
2. Explain the difference between a function and a procedure. Give an example of a function.
Answer
The difference between a function and a procedure is that a function will execute something, such as a math operation, and a procedure can be created to be executed multiple times but is ultimately unique and created to serve a specific function.
3. Explain the difference between global and local variables. Why are local variables easier to debug than global variables?
Answer
Global variables are accessible throughout the entirety of the code. Local variables can only be accessed within a procedure that defines it.