Page 1 of 1

Determine the output of the following pseudocode: Declare Integer m,n For m =1 to 3 Display "outer loop" , m For n = 1 t

Posted: Fri May 20, 2022 1:16 pm
by answerhappygod
Determine the output of the following pseudocode:
Declare Integer m,n
For m =1 to 3
Display "outer loop" , m
For n = 1 to 2
Display
"inner loop", n
End For
End For