Answer: Where the guide lines?
Explanation: I’ll help but where the guidelines?
I don’t know if this supports all, but try lenntech, duckters, and I will add on later
Answer:
The answer is (b). 1.
Explanation:
In the code there is only 1 base case .
the base case is as following:-
if(n==0)
return 0;
this is the base case.
Base case is the most important statement in the function that uses recursion because without base case the recursion calls will keep on going and we will get a run time error.
Answer:
Functions with a boolean return type.
Explanation:
If the return type is boolean, the only possible values are true or false.