State what will be displayed by the print statement when the subroutine Start is called with the values 3, 2 and 5 for the parameters a, b and c respectively.
def Start(a, b, c):
x = a * b
print(Process(x, c))
def Process(p, q):
r = p - q
if r < 10:
r = r + Check(p)
return r
def Check(m):
if m > 5:
return 3
else:
return 1
131 exam-style questions on AQA GCSE Computer Science Structured programming and subroutines (procedures and functions). Each one has a worked solution and a mark scheme showing where the marks go.