Consider the following Python program: def calc1 (inp,val):…

Consider the following Python program: def calc1 (inp,val):     v = inp * 47     w = val ** v     return v + w def calc2 (inp,val):     v = inp * val     w = v + calc1(val,inp)     return v + w inp = calc2 (47,29) print (inp)Identify by name each of the local variables in the above code, also giving the specific line number where that variable first obtains a value.  

Use string instructions: a) Write the string instructions to…

Use string instructions: a) Write the string instructions to move a string of size 5 bytes to another string of size 5 bytes. Declare both strings in the data section. Write the code in the code section. b) Declare two strings one at location dictionary which has a  correct spelled word such as computer. Declare another variable called check which has an incorrect spelled word such as campater. Your program should correct this word.