Which code reflects the recursive case?

(1 point)
Responses

else:
return (x * factorial(x - 1))
else: return (x * factorial(x - 1))

print("The factorial of", num, "is", factorial(num))
print("The factorial of", num, "is", factorial(num))

if x == 1:
return 1
if x == 1: return 1

num = 3
num = 3

1 answer

The correct code that reflects the recursive case is:

else:
        return (x * factorial(x - 1))

This part of the code demonstrates the recursive call to the factorial function with a decremented value of x, which is characteristic of a recursive function that computes the factorial.