Answer:
If n == 0 Then Return 1
Explanation:
The recursive function have 3 things which are as following:-
Base case is defined for the lowest or maximum value possible for the function to reach.Without the base case the recursive function will go in infinite loop means the function will keep calling itself and there will be no stopping that.So the base case prevent this from happening.