Reviewing our Key Stage 3 curriculum (1)

My school is reviewing its curriculum and my Deputy Head Academic has asked for volunteers for working parties to look at possible recommendations of changes that could be made. She asked that this be led by non-SLT, as she wanted to avoid any potential preconfirmed ideas or attitudes such as “we know we can’t do that because the timetable says so” or “we tried something like this a while ago and it didn’t work” (etc). When I was invited to lead the working party for the Key Stage 3 group, I was delighted as it’s an area I’ve followed on Twitter and interests me. Out of the working parties (KS3, KS4 and KS5), it is the one I think has the most potential as it is less constrained by external pressures like time and exam boards.

We were told to “think outside the box”, with some initial ideas to consider but given a relatively free reign on what we could recommend. It is envisaged that this whole process will take around two years, so I have written this post with the aim of it starting an ongoing series over the time we review the curriculum, outlining the journey and findings as I go along. This is more for me than anyone reading it but it will – I expect – outline the planning, challenges, mistakes and findings, which may be useful to others undertaking a similar task.

At this point (January 2020) we have our working party and have had one initial meeting. We decided to frame the research as a case study, using multiple sources for our research and recognising that our findings would be very distinct for our school at that point in time (i.e. cannot just be extrapolated elsewhere). The rough timeline we decided upon:

Spring 2020 – conduct secondary research (mostly websites) of other schools and their curricula, looking for anything unusual or pertinent. We will look at both primary schools (especially our feeders) and secondary schools in a similar position to us geographically, by intake and by situation (boarding school).

Summer 2020 – from the secondary research in the Spring Term, visit some of the schools and find out more about their curriculum and rationale behind it. Meet together before the end of the Summer Term to reflect on our findings as a group.

Autumn 2020/Spring 2021 – meet with Heads of Department (and others who may have a stake) using interviews and/or focus groups to ask for their input on possible ideas gleaned from our research, asking for their thoughts and own ideas, and how they may be included.

From then (Summer Term 2021 and Autumn Term 2021) we have not formed a plan as this will be made from our findings and we will probably revisit all strands of the research (external schools, interviews, etc).

Our current task is to research some other schools and what they did with their curricula. Alongside this I have shared a couple of David Didau’s curriculum related blogs with the group (https://learningspy.co.uk/curriculum/broad-balanced-curriculum/ and https://learningspy.co.uk/curriculum/breadth-trumps-depth/). I will also show them Tom Sherrington’s Curriculum Models. While we have been asked to look at more than just curriculum time, it is still a factor we may want to consider for various subjects – if even to just reflect upon how and why we offer something different.

I have set up a ‘team’ on Microsoft Teams to hold ideas and share resources. I can see how it could be useful, and some staff have shared links to websites and replied to thoughts, but I hope to also use the Notebook part for people to chuck screenshots, findings and anything else useful in so we have a collated place for all our research. In theory it should be a great tool, but it may be a little ambitious as not everyone is used to the software. We have another meeting before February half-term and I hope to be able to demonstrate how it can be used. If you read this blog and you’ve used Microsoft Teams before, I’d love any hints or tips as I feel like I’m being quite clunky and not using it to its full potential.

That’s where I am at the moment – starting secondary research of other schools (if you think you do something interesting please do reply to this or contact me on Twitter) with a view to visiting a selection of them later this year.

How I approach the IGCSE Computer Science pre-release (2019-20)

If you’re reading this then I assume you already teach IGCSE Computer Science so are familiar with the structure. This blog post will go through how I approach the pre-release with my students and how we prepare for the exam. It also contains links to some worksheets which I have put together to help my students write their programs (these are at the end of the blog post). It provides them with a similar problem – shown in the image for this blog post – and scaffolding which they can refer to when programming their own solutions to the pre-release.

 

Introduction

Before I give students access to the pre-release, I ensure that they are confident with the concepts of selection, iteration and arrays. Arrays are one of the areas I find students struggle with the most, and they’re an important part of the pre-release, so I believe they should have a firm understanding of them before looking at the exam board’s problem. If they do not understand how they work, then their planning will suffer as they won’t have the foundation knowledge to start thinking about solutions.

Before giving the students any handouts, I explain the task as a real life scenario. For this one, I will explain that there is a shop who want to sell their products using an electronic system. I will show them the list of products (from the pre-release) and talk through what the program should do. I will explain the three tasks and how each one builds upon the one before it.

I will then give out the pre-release document, as presented by the exam board, and read through it with the class. I will encourage them to highlight any important parts (such as validation) and consider the wording carefully. I find that the pre-release can be ambiguous sometimes but I think this is intentional as it allows students flexibility in approaching solutions in different ways.

 

Planning

I will not allow students anywhere near a computer until I am happy they have thought about their plan to approach the problem. Students could simply get straight onto Python and start writing code, but from experience I find this will often cause problems later on, especially if lessons are a few days apart and students forget what they were doing. I tell my students that they need to provide me with a flowchart or pseudocode (in Python if they wish, but written by hand) and be able to talk through how they will approach the program.

This is the point which shows the greatest difference in student programming ability. Some will manage to plan out their flowcharts easily, with a clear idea of how to structure their data and how the user will work their way through a series of options. Others will struggle to know where to begin. Because of this, I allow students to work on their own (or in pairs) but if they want help, I run through my own approach on the board, live, and talk through it. I often find that students will come to the board initially and listen, then will move back more confidently to their own plan after being given the first few steps to scaffold their approach.

Once students have shown me a plan, I will give verbal feedback and allow them to tweak it if necessary. I do not expect the plans to be perfect, but they should provide enough structure that someone could start to put together some code by looking at them alongside the pre-release data.

 

Programming

Students will be given the opportunity to start programming a solution (to Task 1 initially). There are a number of layers of help I give here:

  1. Syntax sheets – these are simply sheets showing basic commands and how they are laid out (e.g. showing how a ‘for’ loop is written). Useful for when students know what they need to do but can’t remember the exact code. There are lots of examples of these on the TES.
  2. Similar worksheets – these are worksheets for each task that I have put together from my own solutions to the pre-release. They don’t provide code for the pre-release itself, but for a similar task which will hopefully help the student consider how to proceed with their own code. Links for these are available at the bottom of this blog post.
  3. Me – as a last resort I will look at the code, but I encourage students to look at the first two options first. If I provide the answer or tell them what to write, they are less likely to remember what they have done or why it works. This is a ‘desirable difficulty‘ which I want them to experience.

 

Validation & Testing

Once they have finished (or think they have finished!) their code, I get them to ask others to test it and try to ‘break’ it. This process reinforces the need for validation and reminds them about testing and different types of inputs they can use (valid, invalid, boundary etc).

 

Example Exam Questions

Finally, once the program is complete and students are happy with how it works, I give them some example exam questions to complete. I will put these together later this term and will add links to this blog with them. This encourages students to revisit their code and consider what they did and how it could be improved. It also gives them an opportunity to practice Paper 2 style questions which should help them in the exam.

 

LINKS

Click here to download the helpsheets for 0984 IGCSE Computer Science 2019-20 Paper 21 Pre-Release (FREE)

(there are some other resources on my TES page for IGCSE Computer Science which you may find useful, as well!)