Question:
No 1: What will be the Output of following pseudo code?
A=33
B=43
C=44
D= A
IF B>D
THEN
D=B
IF C> D
D=C
END IF
ELSE IF C
> D THEN
D=C
END If
Display D
Question: No 2: What will be the Flowchart
of following pseudo code?
Read a
number N
ouput =1
count=N
DO WHILE
count >=1
output = output *count
count= count‐1
LOOP
Display output
0 comments:
Post a Comment