Evidence Python
Evidence Python
Evidence Python
Screenshots or program listings must be copied into appropriate cells in the following table.
Save this evidence document as evidence_ followed by your centre number_ candidate number,
for example, evidence_ zz999_9999 and insert your name, centre number and candidate number
into the header above.
Examiners must be able to read the contents including any screenshots without the use of a
magnifying glass. Answers that are not readable or are missing will not be awarded any marks.
Save this evidence document at regular intervals, for example every 10 minutes.
Question 1
Part 1(a)(i)
DataArray = []
Part 1(a)(ii)
DataArray = []
Part 1(b)(i)
def printArray(list):
for item in list:
print(item)
1
9618 Paper 41 – AS & A Level Computer Science evidence document
Part 1(b)(ii)
def printArray(list):
for item in list:
print(item)
DataArray = []
printArray(DataArray)
Part 1(b)(iii)
{Copy and paste the screenshot for Question 1(b)(iii) here}
Part 1(c)
def LinearSearch(list, target):
count = 0
2
9618 Paper 41 – AS & A Level Computer Science evidence document
Part 1(d)(i)
DataArray = []
count = 0
3
9618 Paper 41 – AS & A Level Computer Science evidence document
Part 1(d)(ii)