Advertisements
Advertisements
Question
Trace the step-by-step execution of the algorithm for factorial(4).
factorial(n)
-- inputs : n is an integer , n ≥ 0
-- outputs : f = n!
f, i := 1 ,1
while i ≤ n
f, i := f × i, i+1
Solution
Tracing steps:
factorial(5)
i) f = 1, i = 1
ii) f = 1 x 1, i = 2
iii) f = 1 x 2, i = 3
iv) f = 2 x 3, i = 4
v) f = 6 x 4, i = 5
vi) f = 24 x 5, i = 6
vii) condition 6 < 5 becomes false then display output f value as 24.
APPEARS IN
RELATED QUESTIONS
Distinguish between a condition and a statement.
What is the difference between an algorithm and a program?
For the given flowchart write the pseudo-code.
For the given flowchart write the pseudo-code.
If C is false in line 2, trace the control flow in this algorithm.
1 S1
2 -- C is false
3 if C
4 S2
5 else
6 S3
7 S4
Draw a flowchart for -3 case analysis using alternative statements.
Circulate the contents: Write the specification and construct an algorithm to circulate the contents of the variables A, B, and C as shown below: The arrows indicate that B gets the value of A, C gets the value of B and A gets the value of C.
If C is false just before the loop, the control flows through
1 S1
2 while C
3 S2
4 S3
If C is true, S1 is executed in both the flowcharts, but S2 is executed in
(1)
(2)