1.

Consider the following iterative implementation to find the factorial of a number. Which of the lines should be inserted to complete the below code?

A. fact = fact + i
B. fact = fact * i
C. i = i * fact
D. i = i + factView Answer
Answer» C. i = i * fact


Discussion

No Comment Found