Consider The Following Iterative Implementation To Find The #1615
Consider the following iterative implementation to find the factorial of a number. Which of the lines should be inserted to complete the below code?</p> <pre><code class="language-c"> int main() { int n = 6, i; int fact = 1; for(i=1;i<=n;i++) _________; printf("%d",fact); return 0; }</code></pre>
This multiple choice question (MCQ) is related to the book/course gs gs122 Data Communication and Computer Network. It can also be found in gs gs122 Recursion - Factorial using Recursion - Quiz No.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?
int main() { int n = 6, i; int fact = 1; for(i=1;i<=n;i++) _________; printf("%d",fact); return 0; }
fact = fact + i
fact = fact * i
i = i * fact
i = i + fact
Similar question(s) are as followings:
Online Quizzes of gs122 Data Communication and Computer Network
Sorting - Insertion Sort - Quiz No.1
gs gs122 Data Communication and Computer Network
Online Quizzes
Sorting - Insertion Sort - Quiz No.2
gs gs122 Data Communication and Computer Network
Online Quizzes
Sorting - Insertion Sort - Quiz No.3
gs gs122 Data Communication and Computer Network
Online Quizzes
Sorting - LSD Radix Sort - Quiz No.1
gs gs122 Data Communication and Computer Network
Online Quizzes
Sorting - MSD Radix Sort - Quiz No.1
gs gs122 Data Communication and Computer Network
Online Quizzes
Sorting - MSD Radix Sort - Quiz No.2
gs gs122 Data Communication and Computer Network
Online Quizzes