Question 17 was simple general knowledge. If you've ever worked with parameters and variables you'd know the answer straight away.
Initially
i = 1
j = 2
k = 3
process(i,j)
so, that means process(1,2)
Now looking at the subprogram, that makes the parameters:
j is 1, k is 2
Now...