The following function calculates the value of an expression that uses an exponent. Line numbers are included for reference only. 01 def calc_power
02 return a**b
03 base = input ("Enter the number for the base: ")
04 exponent = input ("Enter the number for the exponent: ")
05 result = calc_power(base, exponent)
06 print("The result is " + result)
For each statement select TRUE or FALSE.
ANSWER AREA
The code will generate an error in line 03 and line 04
The code will generate an error in line 02 and line 05
The code will correctly output data to the console