Complete the trace table for the subroutine call process(25).
You may not need to use all the rows in the table.
SUBROUTINE process(n)
p ← n
q ← 3
REPEAT
p ← p - q
q ← q + 2
UNTIL p < q
OUTPUT p
ENDSUBROUTINE
| n | p | q | OUTPUT |
|---|---|---|---|
| 25 | |||