

MCQOPTIONS
Saved Bookmarks
1. |
Consider the following recursive implementation to find the factorial of a number. Which of the lines should be inserted to complete the below code? |
A. | n = 0 |
B. | n != 0 |
C. | n == 0 |
D. | n == 1View Answer |
Answer» D. n == 1View Answer | |