Exam preparation · GCSE · OCR J277 1.6.1, AQA 8525 3.8, Edexcel 1CP2 5.1.1 · about 15 min
Point, because, so: a structure for discuss and evaluate questions, and a conclusion that decides.
[1 mark]How are long answers marked?
[1 mark]What does a top-band answer always finish with?
[1 mark]The question names a village school with slow broadband. What should your points do?
[1 mark]Put the parts of one developed point in order.
Number the lines 1 to 3 to put them in the right order.
Because: the reason it mattersThe point itselfSo: what follows from it[1 mark]Which is worth more marks?
Write mark(answer) that scores a draft: one point for each phrase from FOR_WORDS it contains, one for each from AGAINST_WORDS, and two if it contains a phrase from CONCLUSION_WORDS, all ignoring capitals. For each answer in answers, print <name>: <score> and then, on the same line, needs both sides if it has nothing from one of the two sides, or needs a conclusion if it has no conclusion phrase, or top band if it has all three. At the end print best: <name>. Watch out: disadvantage contains advantage, so it counts on both sides.
# the two lines every program starts with: the commands, then the robot
from bugbot import *
connect()
FOR_WORDS = ["benefit", "advantage", "because it helps"]
AGAINST_WORDS = ["drawback", "disadvantage", "risk"]
CONCLUSION_WORDS = ["on balance", "overall", "in conclusion"]
answers = [
("Ada", "A benefit is that students learn to program, and another advantage is engagement. A drawback is the cost. On balance the school should buy them."),
("Bolt", "There is a clear advantage for practical work and another benefit for engagement."),
("Cog", "The risk is e-waste and the disadvantage is the cost, but the benefit is real."),
]Plan your program here, then type it in and press Run.