

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