Answer:
false
Explanation:
There two methods of continuously repeating some task which are as following:-
One of the most important part of recursive method is base case.Which is used to stop the recursion from going in infinite loop without a base case the function will keep on calling itself without stopping.
So the base is used to stop the recursion.Hence the answer is false.