Question: I In the Python code below, will execution ever terminate and what is the outcome? def recurse(): recurse() recurse() Select one: a. Termination with Python
I
In the Python code below, will execution ever terminate and what is the outcome?
def recurse():
recurse()
recurse()
Select one:
a. Termination with Python interpreter crash
b. No termination with Python running until manually stopped
c. Termination with RecursionError: maximum recursion depth exceeded
d. Termination with no output and no error
e. Syntax error
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
