# Question 17(a) # Examination Number:
numbers = [5, 10, 15, 20, 25]
total_sum = sum(numbers)
PRACTICE EXAM 1
# Question16_A Starter Code
animal_tags = ["COW123", "COW456", "COW789", "COW101"]
daily_milk_production = [22, 18, 25, 20]
def Calculate_Feed(weight):
print("function to calculate how much fed is needed")
PRACTICE EXAM 2
# Question 16(a)
# Examination Number:
print("The program")
age = int(input("What age are you? "))
if (age >= 17):
print("You are entitled to apply for a driving licence.")
PRACTICE EXAM 3