McqMate
Q. |
Which of the following recursive formula can be used to find the factorial of a number? |
A. | fact(n) = n * fact(n) |
B. | fact(n) = n * fact(n+1) |
C. | fact(n) = n * fact(n-1) |
D. | fact(n) = n * fact(1) |
Answer» C. fact(n) = n * fact(n-1) | |
Explanation: fact(n) = n * fact(n – 1) can be used to find the factorial of a number. |
View all MCQs in
Design and Analysis of AlgorithmsNo comments yet