

MCQOPTIONS
Saved Bookmarks
1. |
What is the base case for the following code? |
A. | return |
B. | printf(“%d “, n) |
C. | if(n == 0) |
D. | my_recursive_function(n-1) |
Answer» D. my_recursive_function(n-1) | |