GCSE Computer Science

Size: px
Start display at page:

Download "GCSE Computer Science"

Transcription

1 GCSE Computer Science 4512/1 Practical Programming Report on the Examination 4512 Summer 2015 Version: 1.0

2 Further copies of this Report are available from aqa.org.uk Copyright 2015 AQA and its licensors. All rights reserved. AQA retains the copyright on all its publications. However, registered schools/colleges for AQA are permitted to copy material from this booklet for their own internal use, with the following important exception: AQA cannot give permission to schools/colleges to photocopy any material that is acknowledged to a third party even for internal use within the centre.

3 General Comments This is the second series of the GCSE in Computer Science and second submission of controlled assessment tasks for the Practical Programming component 1. The entry was significantly larger this year, with many centres new to the component. A number of issues have arisen in this submission that needs to be addressed by centres. These will be described first before going into the usual detail of the series. The use of teacher standardisation projects These projects are issued to support teacher marking for a particular scenario, and to demonstrate the required standard, in a specific series. They should not be made available to students, as they could be misinterpreted. For example, a project was issued for teacher standardising last year, gaming student 1, Marty. Some students paraphrased Marty's work, particularly in the sections relating to efficiency and robustness. Also, many students included the mislabelled table found in Marty's project. Marty had labelled the table as "Data Structures" when it was in fact a description of programming techniques and credited as such in the Marty marking grid. Marty was actual student work and contained errors and weaknesses that were taken into account when it was marked, and were discussed at standardisation meetings. It would be expected that a teacher could identify these variations in standardising work and take them into account when assessing their own students work. However, students do not have the same level of knowledge, which is why these projects should not be made available to them. Extra functionality Some students included a login function in the web solution, which was a key feature of the 2014 web scenario. This year there was no such requirement yet significant numbers of students attempted it. This extra functionality garnered no marks for 2015 as it was not part of the set task. Scenario tasks should not be changed or added to as the extra work is not awarded marks and is likely to distract students from the main focus of the task. There were a few centres where students embellished the tasks, for example by adding functionality to provide help to the player of the game or expanding on the web site or adding extra rules to the gaming scenario. None of this can be credited in the marking of the student work, and may detract from the time and effort spent by the student on the other parts of the solution that can be awarded marks. Programming language choices Centres must be careful with the choices they make for programming languages and development environments. This decision may limit the ability of students to access the full range of marks within the scenarios as they may not be able to meet all user needs. The mobile and web scenarios require solutions to run on very specific platforms and the choice of language can mean that the user needs described in the scenario are not met, affecting marks across all the sections. For example, the mobile scenario needed to be run on a mobile device or emulator and executed by a mobile operating system such as Android or ios. It also required data to be stored and accessed remotely; some solutions using a console based language simply saved data in variables within the code, therefore failing to meet some of these criteria. There are SDKs that can convert Python, VB or other code to enable it to run on a mobile device. Where this approach is used the student should describe it as a necessary part of the solution development in order to satisfy user needs. 3of 7

4 The web scenario requires code to be executed in a web browser. The use of HTML and CSS to format the look and interactivity of the website is not credited; only the programming code, such as JavaScript, PHP or ASP, used to implement the functionality of the site can be awarded marks. The traditional scenario had tasks that required the solution to read text files, therefore a language that does not allow these tasks to be completed, such as Scratch, would need to be avoided if students were aiming for the higher marks. One of the advantages of having four scenarios is the fact that it allows centres that may have technical issues within their centre to select those scenarios that are suitable for their situation and expertise. Similarities in student work It was noted that students in some centres developed solutions containing parts that were identical across the cohort. This could indicate potential collusion between students or the use of third party written code. Any externally sourced code must be acknowledged by the candidate and teacher and ignored for the purposes of marking the work. It is acknowledged that sometimes there may be a limited choice of ways to code a process, for example connecting to a database in PHP or reading a text file in Python. It is expected, however, that students would show their own variations within the programs, such as the structuring of the program, names for functions and variable naming, to demonstrate independent work. The student and centre must reference the source of the third party work, including snippets provided by the teacher, and this must be taken into account when marking the work across all sections of the report including section 3. This is controlled assessment and should take place under AQA/Ofqual issued rules. The students should be able to use the scenario booklets to develop independent solutions to the problem. In some cases there was evidence of the use of detailed writing frames, where students had been directed on what to write for each section. This is also against Ofqual rules and centres will be referred to the Irregularities Department if it is suspected that writing frames have been used. Portfolios Students must not include any executable code in electronic submissions. Moderators are instructed not to access executable files or files that are not on the supported file type list. If the only evidence of coding submitted is in one of these file types then the awarded marks will be very limited. The guidelines for electronic submission of GCSE Computer Science controlled assessment unit 4512/1 document available on e-aqa clearly states: Work should be submitted in Microsoft Word, Open Office or Acrobat pdf formats only. This will allow for ease of review by the moderator, irrespective of the software they have. If evidence has been produced in video format, this must be saved in a standard video format and in a clearly labelled folder along with the rest of the student s submission. Under no circumstances should executable files be submitted. There were some issues around the presentation of student work. Please ensure all students organise their work in a logical way, preferably following the section by section structure given in the specification and marking grid. For electronic submission it is preferred that all sections are contained in one document that comprises all the sections of their portfolio (ie Design of solution etc) or if this is not practical a series of documents covering all these areas. If a student produces a series of documents, then each document must be clearly labelled with the student s details. 4of 7

5 Students must also ensure that each page has their name, centre and candidate number in the header or footer. It is also very useful for page numbers to be included and referenced by the teacher when marking the work. Please ensure that screenshots are big enough so that the content of the screenshots can be read easily. A very common problem was the inability to see evidence of the solution due to poorly cropped and sized screenshot evidence. In the electronic submission it is also very inconvenient to be zooming in and out of the document in order to see evidence and even then screenshots were sometimes too blurred to read. Section 1 Design of solution Row 1 requires the student to show their understanding of the user s needs. Sometimes all the student did was copy the scenario booklet, just changing a few words. This can only be awarded limited marks and in some cases zero. Better students showed they had analysed the problem and demonstrated their understanding by clearly describing user needs in their own words. Row 2 requires a high level overview plan. Some students interpreted this as meaning a time plan or a design of the interface. These could not be credited. Many students used diagrams to show the program structure at a high level and demonstrated the required understanding of how to plan a program. Some students appeared to develop this after the program was written, so limiting marks. Row 3 requires a more detailed description of the main blocks of the program. This was sometimes done by using detailed diagrams, structured English and/or algorithm descriptions. It is important to understand that pseudocode is a simple description of the logic of a process and should be written in a way that is programming language independent. Many students attempted to provide pseudocode for this row but the quality varied. Some students clearly did not understand what this row was assessing and provided pseudocode that had been copied from their completed solution often including language specific constructs. Design should always be done before the program is written and, therefore, this type of pseudocode could not be awarded marks. Some students successfully used process flowcharts to describe their program blocks. Section 2 Solution development Row 1 requires a student to map their solution to the needs of the user. Some students provided simple screenshots of the output of the program. Unless this is accompanied by a description of the code that produced the output this could not gain credit in row 1. Better students provided a breakdown of the code with an explanation of how user needs were met. This row could sometimes be credited if the annotation of the code in the code listing made detailed reference to user needs, as well as an explanation of the technical aspects of the coding credited in row 3. Row 2 assesses the range of tasks attempted by the student, and was on the whole marked well, reflecting the tasks that the student had covered. Row 3 requires a complete program listing with annotation. Some solutions were documented using screenshots; others copied the actual code into the document. Whatever method is used students must ensure that they can demonstrate that the complete code is shown, and that it is clear enough for the moderator to read. 5of 7

6 Section 3 Programming techniques used This section asks students to demonstrate the level of understanding of the programming techniques used. For example some students made statements that simply talked about using functions but not why they were useful where they were used. Another example was where the student talked about loops but not about how the loops were controlled or why a particular type of loop was used. These statements were sometimes made within the annotation, or as a separate section; either method is acceptable. It should be made clear however that these are statements not descriptions or discussions; therefore marks may be limited to three in some rows. Row 1, If students just say, I used a while loop here then that is a simple statement. If they then say It was used to do so and so then that is a description. Showing a very good understanding would be explaining how the technique achieves what it was selected to do. For example, I used a while loop to keep asking the user to input their name and check whether the input was blank. If it was, then the loop repeated the request. This kept happening until the input was not blank. This shows a very good understanding of the technique. For the highest mark a further discussion of why the while loop was selected rather than a for loop, for example, would have been needed. Row 2 assesses the structure of the solution. The student must write about how different parts of the solution work together to achieve more than three marks. For example, when this variable is set to 1 a broadcast is sent which activates this sprite and this background is changed. Many students did not explicitly describe how different parts of the solution worked together, though their program code showed how this happened. Row 3 is linked to the section 2 row 2 marks and often reflected the scope of the solution that the student had tackled. In some cases, however, the student had attempted to code tasks so gaining credit in section 2 but their solution did not work as intended and therefore marks were limited in section 3. Row 4 assesses student understanding of what an efficiently coded solution looks like. One definition of an efficiently coded solution can mean that the code written is efficient in the use of system resources, such as memory and processor time. At GCSE level the understanding for this aspect is at a basic level, for example, using loops that stop when a condition is met rather than running through every iteration. The appropriate use of data types suitable to the function of the variable also can be used to demonstrate efficiency. Efficient code can also relate to the maintainability of the code, the use of appropriate variable names, and the use of functions to save time when updating a program, for example. Many students, however, do not show an understanding of these basic principles, and make generic statements such as easy to use, saves time and fast. These types of statements do not gain credit. Although the student is not expected specifically to use the word efficiently, it is expected that they will talk about why they chose particular techniques or programming structures to improve their programs. They could comment on particular selection, or iteration techniques, or how the program is more maintainable if they use good comments, or how less memory is used if appropriate variable types are used. Efficiency can also include the use of functions, procedures or loops to reduce the number of program steps needed to solve a problem; the code inside a procedure is written once but can be used many times. 6of 7

7 Row 5 requires students to show an understanding of the data used within their program. The use of data types and structures in their code is not in itself evidence that they understand what they have done, so the marks are limited unless they explain what had been coded and why it had been done in this way. Row 6 assesses student understanding of a robust solution. The row states clearly that the assessment is based on the techniques used within the code, so extensive testing of the solution is not relevant and cannot be credited for this row. A robust solution is one that handles expected and unexpected errors in the execution of the program. These can be errors in user input such as validation but can also mean that the solution handles all logical paths within the program so that the program provides an expected termination or alternative rather than an abrupt cessation. The student must be able to relate this concept to their solution, describing how their solution avoids these types of problems to be awarded marks for describing the techniques used. Section 4 Testing and Evaluation Row 1 assesses the test plan. For more than one mark the student needs to include test data and expected results. A full or nearly full test plan should contain most expected and possible variations in the use of the software. If the solution had not been coded completely or only a few techniques were used to ensure a robust solution then often the student could not demonstrate a full test plan as they had not considered what could go wrong based on the user needs. This row asks for expected tests and this must relate back to the scenario, and what the user would expect to work. Row 2 assessed evidence of the results of the testing. If the student had not produced a test plan then no marks can be awarded in this row, as the marks are for the evidence that the planned tests have been followed. The better students reflected on the results of the testing and with screen shots of outputs where applicable; this showed the extent to which the testing was successful. For Row 3, many students provided a personal evaluation of how easy or difficult they found the tasks. These could not be given credit. Some students simply repeated the scenario and gave statements on whether their solution had completed the task or not. This limited marks to one in this row. For higher marks the students needed to describe how well the solution met the needs of the user. Mark Ranges and Award of Grades Grade boundaries and cumulative percentage grades are available on the Results Statistics page of the AQA Website. Converting Marks into UMS marks Convert raw marks into Uniform Mark Scale (UMS) marks by using the link below. UMS conversion calculator 7of 7

GCSE Computer Science

GCSE Computer Science GCSE Computer Science 4512/1 Practical Programming Report on the Examination 4512 Summer 2014 Version: 1.0 Further copies of this Report are available from aqa.org.uk Copyright 2014 AQA and its licensors.

More information

GCE FOOD TECHNOLOGY. Unit 4 Designing and Making Practice Report on the Examination June Version: 1.0

GCE FOOD TECHNOLOGY. Unit 4 Designing and Making Practice Report on the Examination June Version: 1.0 GCE FOOD TECHNOLOGY Unit 4 Designing and Making Practice Report on the Examination 2540 June 2015 Version: 1.0 Further copies of this Report are available from aqa.org.uk Copyright 2015 AQA and its licensors.

More information

A-LEVEL DESIGN AND TECHNOLOGY: FOOD TECHNOLOGY

A-LEVEL DESIGN AND TECHNOLOGY: FOOD TECHNOLOGY A-LEVEL DESIGN AND TECHNOLOGY: FOOD TECHNOLOGY FOOD4 Report on the Examination 2540 June 2016 Version: 1.0 Further copies of this Report are available from aqa.org.uk Copyright 2016 AQA and its licensors.

More information

GCSE Computer Science

GCSE Computer Science GCSE Computer Science 4512/2 Computing Fundamentals Report on the Examination 4512 Summer 2015 Version: 1.0 Further copies of this Report are available from aqa.org.uk Copyright 2015 AQA and its licensors.

More information

Version 1.0: klm. General Certificate of Education. Media Studies. Creating Media. Report on the Examination examination - January series

Version 1.0: klm. General Certificate of Education. Media Studies. Creating Media. Report on the Examination examination - January series Version 1.0: 0310 klm General Certificate of Education Media Studies MEST2 Creating Media Report on the Examination 2010 examination - January series Further copies of this Report are available to download

More information

Version 1.0. General Certificate of Education (A-level) June Unit 3: Investigative and practical skills in AS. Physics. Final.

Version 1.0. General Certificate of Education (A-level) June Unit 3: Investigative and practical skills in AS. Physics. Final. Version.0 General Certificate of Education (A-level) June 0 Physics PHA3/B3/X Unit 3: Investigative and practical skills in AS Physics Final Mark Scheme Mark schemes are prepared by the Principal Examiner

More information

GCSE Computer Science

GCSE Computer Science GCSE Computer Science Paper Additional Questions Mark scheme V.0 /0/5 of 8 Mark schemes are prepared by the Lead Assessment Writer and considered, together with the relevant questions, by a panel of subject

More information

GCSE Design and Technology

GCSE Design and Technology GCSE Design and Technology Your companion guide to our new specification First teaching September 2017 First assessments summer 2019 Find out more at: aqa.org.uk/dandt Introducing our new GCSE Design and

More information

FUNCTIONAL SKILLS English

FUNCTIONAL SKILLS English FUNCTIONAL SKILLS English 47252 Component 2 Writing Level 2 Mark scheme January 2016 Version: 1.0 Final Mark schemes are prepared by the Lead Assessment Writer and considered, together with the relevant

More information

A-LEVEL MATHEMATICS. Decision 1 MD01 Mark scheme June Version/Stage: 1.0 Final

A-LEVEL MATHEMATICS. Decision 1 MD01 Mark scheme June Version/Stage: 1.0 Final A-LEVEL MATHEMATICS Decision 1 MD01 Mark scheme 6360 June 2014 Version/Stage: 1.0 Final Mark schemes are prepared by the Lead Assessment Writer and considered, together with the relevant questions, by

More information

PMT. A-Level Physics. PHA3/B3/X Investigative and practical skills in AS Physics Mark scheme. 2450/2455 June Version: 1.

PMT. A-Level Physics. PHA3/B3/X Investigative and practical skills in AS Physics Mark scheme. 2450/2455 June Version: 1. A-Level Physics PHA/B/X Investigative and practical skills in AS Physics Mark scheme 450/455 June 06 Version:.0 Final Mark schemes are prepared by the Lead Assessment Writer and considered, together with

More information

Example Candidate Responses. Cambridge International AS & A Level Computer Science. Paper 2

Example Candidate Responses. Cambridge International AS & A Level Computer Science. Paper 2 Example Candidate Responses Cambridge International AS & A Level Computer Science 9608 Paper 2 Cambridge International Examinations retains the copyright on all its publications. Registered Centres are

More information

IQ Level 4 Award in Understanding the External Quality Assurance of Assessment Processes and Practice (QCF) Specification

IQ Level 4 Award in Understanding the External Quality Assurance of Assessment Processes and Practice (QCF) Specification IQ Level 4 Award in Understanding the External Quality Assurance of Assessment Processes and Practice (QCF) Specification Regulation No: 600/5528/5 Page 1 of 15 Contents Page Industry Qualifications...

More information

A-level Computing. COMP2/Unit 2: Computer Components, The Stored Program Concept and The Internet Mark scheme June 2013.

A-level Computing. COMP2/Unit 2: Computer Components, The Stored Program Concept and The Internet Mark scheme June 2013. A-level Computing COMP/Unit : Computer Components, The Stored Program Concept and The Internet Mark scheme 510 June 013 Version: Final Mark schemes are prepared by the Lead Assessment Writer and considered,

More information

Version. General Certificate of Education (A-level) January Mathematics MD01. (Specification 6360) Decision 1. Final.

Version. General Certificate of Education (A-level) January Mathematics MD01. (Specification 6360) Decision 1. Final. Version General Certificate of Education (A-level) January 2013 Mathematics MD01 (Specification 6360) Decision 1 Final Mark Scheme Mark schemes are prepared by the Principal Examiner and considered, together

More information

GCSE Computer Science

GCSE Computer Science GCSE Computer Science Unit 2 Computing Fundamentals Mark scheme 452/2 June 206 Version:. Final Mark schemes are prepared by the Lead Assessment Writer and considered, together with the relevant questions,

More information

Version 1.0. abc. General Certificate of Secondary Education. Mathematics Specification A. Paper 1 Higher. Mark Scheme

Version 1.0. abc. General Certificate of Secondary Education. Mathematics Specification A. Paper 1 Higher. Mark Scheme Version 1.0 abc General Certificate of Secondary Education Mathematics 4301 Specification A Paper 1 Higher Mark Scheme 008 examination - June series Mark schemes are prepared by the Principal Examiner

More information

Support Notes (Issue 1) September Diploma in Digital Applications (DA105) Coding for the web

Support Notes (Issue 1) September Diploma in Digital Applications (DA105) Coding for the web Support Notes (Issue 1) September 2016 Diploma in Digital Applications (DA105) Coding for the web Careers Fair Key points for this SPB The DA105 SPB 0916 is valid for moderation in June 2017, December

More information

General Certificate of Secondary Education June Mathematics (Linear) B 4365 Paper 1 Foundation Tier. Final. Mark Scheme

General Certificate of Secondary Education June Mathematics (Linear) B 4365 Paper 1 Foundation Tier. Final. Mark Scheme General Certificate of Secondary Education June 2012 Mathematics (Linear) B 4365 Paper 1 Foundation Tier Final Mark Scheme Mark schemes are prepared by the Principal Examiner and considered, together with

More information

e-subs: Centre Marks Submission (CMS) FAQs

e-subs: Centre Marks Submission (CMS) FAQs e-subs: Centre Marks Submission (CMS) FAQs FAQs for exams officers and teachers using the Centre Marks Submission (CMS) software. A summary on how to submit coursework/controlled assessment marks and samples

More information

Principal Moderator Feedback. June Applied GCE ICT Web Development

Principal Moderator Feedback. June Applied GCE ICT Web Development Principal Moderator Feedback June 2011 Applied GCE ICT 6955 01 - Web Development Edexcel is one of the leading examining and awarding bodies in the UK and throughout the world. We provide a wide range

More information

Edexcel GCSE ICT. Controlled Assessment. Teacher Support Book 2012

Edexcel GCSE ICT. Controlled Assessment. Teacher Support Book 2012 Edexcel GCSE ICT Controlled Assessment Teacher Support Book 2012 Edexcel GCSE ICT Controlled Assessment Teacher Support Book Unit 2: Using Digital Tools Unit 4: Creating Digital Products Welcome to the

More information

GCSE. Business and Communication Systems. Unit 9 Using ICT in Business. Mark Scheme June Version 1: Final Mark Scheme

GCSE. Business and Communication Systems. Unit 9 Using ICT in Business. Mark Scheme June Version 1: Final Mark Scheme GCSE Business and Communication Systems Unit 9 Using ICT in Business Mark Scheme 434 June 205 Version : Final Mark Scheme Mark schemes are prepared by the Principal Examiner and considered, together with

More information

Hong Kong Examinations and Assessment Authority Pearson Edexcel GCSE (Chinese) 2018

Hong Kong Examinations and Assessment Authority Pearson Edexcel GCSE (Chinese) 2018 Hong Kong Examinations and Assessment Authority Pearson Edexcel GCSE (Chinese) 2018 Notes for Submission of Examination Materials for Controlled Assessments Contents 1. Qualification Overview P. 1 2. General

More information

Instructor Feedback Location and Printing. Locating Instructor Feedback When Available within Canvas

Instructor Feedback Location and Printing. Locating Instructor Feedback When Available within Canvas Instructor Feedback Location and Printing This document will identify the locations in Canvas where students may find instructor comments, feedback, inline editing, and rubric scores and comments. Also

More information

Support Notes (Issue 1) September Snap it! Certificate in Digital Applications (DA105) Coding for the Web

Support Notes (Issue 1) September Snap it! Certificate in Digital Applications (DA105) Coding for the Web Support Notes (Issue 1) September 2014 Certificate in Digital Applications (DA105) Coding for the Web Snap it! Introduction Before tackling the Summative Project Brief (SPB), students should have acquired

More information

Using Turnitin to Avoid Plagiarism and Improve Your Work

Using Turnitin to Avoid Plagiarism and Improve Your Work Using Turnitin to Avoid Plagiarism and Improve Your Work Read alongside the Turnitin Student Quick Reference and the accompanying notes from the Turnitin Student User Guide on the following pages Complete

More information

The Learner can: 1 Follow recommended safe practices

The Learner can: 1 Follow recommended safe practices Unit Title: Communicating Information Using ICT OCR unit number: 3 Level: Entry 3 Credit value: 3 Guided learning hours: 15 Unit reference number: H/502/1197 Learning Outcomes Assessment Criteria The Learner

More information

GCE APPLIED ICT OCR UNIT 3. ICT Solutions for Individuals & Society. Student Workbook

GCE APPLIED ICT OCR UNIT 3. ICT Solutions for Individuals & Society. Student Workbook GCE APPLIED ICT OCR UNIT 3 ICT Solutions for Individuals & Society Student Workbook This is a mandatory AS unit. The World Wide Web allows individuals to access information on any topic. Easy access to

More information

General Certificate of Secondary Education Practice Paper Set 1. Mathematics (Linear) B 4365 Paper 2 Higher Tier. Mark Scheme

General Certificate of Secondary Education Practice Paper Set 1. Mathematics (Linear) B 4365 Paper 2 Higher Tier. Mark Scheme General Certificate of Secondary Education Practice Paper Set 1 Mathematics (Linear) B 35 Paper Higher Tier Mark Scheme Mark Schemes Principal Examiners have prepared these mark schemes for practice papers.

More information

abc Mark Scheme Mathematics 4307 Specification B General Certificate of Secondary Education Module 5 Paper 2 Tier H 43055/2H

abc Mark Scheme Mathematics 4307 Specification B General Certificate of Secondary Education Module 5 Paper 2 Tier H 43055/2H Version : 1.0: 0609 abc General Certificate of Secondary Education Mathematics 4307 Specification B Module 5 Paper 2 Tier H 43055/2H Mark Scheme 2009 examination - June series Mark schemes are prepared

More information

klm Mark Scheme General Certificate of Secondary Education Practice Paper Set 2 Mathematics (Linear) B 4365 Paper 2 Higher Tier

klm Mark Scheme General Certificate of Secondary Education Practice Paper Set 2 Mathematics (Linear) B 4365 Paper 2 Higher Tier klm General Certificate of Secondary Education Practice Paper Set Mathematics (Linear) B 4365 Paper Higher Tier Mark Scheme Mark Schemes Principal Examiners have prepared these mark schemes for practice

More information

abc Mark Scheme Mathematics 4301 Specification A General Certificate of Secondary Education Paper 1 Higher 2008 examination - November series

abc Mark Scheme Mathematics 4301 Specification A General Certificate of Secondary Education Paper 1 Higher 2008 examination - November series Version 1.0 abc General Certificate of Secondary Education Mathematics 4301 Specification A Paper 1 Higher Mark Scheme 2008 examination - November series Mark schemes are prepared by the Principal Examiner

More information

General Certificate of Secondary Education For submission in 2016

General Certificate of Secondary Education For submission in 2016 Centre Number Candidate Number Surname Other Names Candidate Signature General Certificate of Secondary Education For submission in 2016 Computer Science 4512 Unit 4512/1 Practical Programming Scenario

More information

Functional Mathematics

Functional Mathematics FUNCTONAL SKLLS CERTFCATE Functional Mathematics Level 1 Mark Scheme 4367 November 2016 Version/Stage: 1.0 Final MARK SCHEME FUNCTONAL SKLLS MATHEMATCS LEVEL 1 4367 NOVEMBER 2016 Mark schemes are prepared

More information

Introduction to Programming. June Marking Scheme

Introduction to Programming. June Marking Scheme Introduction to Programming June 2015 Marking Scheme This marking scheme has been prepared as a guide only to markers. This is not a set of model answers, or the exclusive answers to the questions, and

More information

Unit 2: Collaborative Working

Unit 2: Collaborative Working Candidate MW Unit 2: Collaborative Working Assessment AO1 The focus of this unit is for candidates to work collaboratively with a small group of their peers to produce a final product (possibly a magazine

More information

Functional Mathematics

Functional Mathematics FUNCTIONAL SKILLS CERTIFICATE Functional Mathematics Level 2 Mark Scheme 4368 March 2017 Version: 1.0 Final Mark schemes are prepared by the Lead Assessment Writer and considered, together with the relevant

More information

Unit title: Computing: Website Design and Development (SCQF level 5)

Unit title: Computing: Website Design and Development (SCQF level 5) National Unit Specification General information Unit code: HW52 45 Superclass: CB Publication date: February 2018 Source: Scottish Qualifications Authority Version: 02 Unit purpose The purpose of this

More information

C A R I B B E A N E X A M I N A T I O N S C O U N C I L REPORT ON CANDIDATES WORK IN THE SECONDARY EDUCATION CERTIFICATE EXAMINATIONS MAY/JUNE 2010

C A R I B B E A N E X A M I N A T I O N S C O U N C I L REPORT ON CANDIDATES WORK IN THE SECONDARY EDUCATION CERTIFICATE EXAMINATIONS MAY/JUNE 2010 C A R I B B E A N E X A M I N A T I O N S C O U N C I L REPORT ON CANDIDATES WORK IN THE SECONDARY EDUCATION CERTIFICATE EXAMINATIONS MAY/JUNE 2010 INFORMATION TECHNOLOGY GENERAL PROFICIENCY Copyright

More information

BSc Computing CSY2026 Modern Networks. Module Tutor: Signed:

BSc Computing CSY2026 Modern Networks. Module Tutor: Signed: Division of Computing BSc Computing CSY2026 Modern Networks Date of Issue: 17/02/2017 Date for Submission: 28/04 2017 (23:59 by e-submission) Agreed Date for late submission: Student Name: Student ID:

More information

Key dates in the examination cycle, 2018/2019

Key dates in the examination cycle, 2018/2019 Produced on behalf of: AQA, CCEA, OCR, Pearson and WJEC Key dates in the examination cycle, 2018/2019 There are key dates for the main examination series of GCSE, GCE and Project qualifications which are

More information

Coursework and Controlled Assessment Timetable

Coursework and Controlled Assessment Timetable Coursework and Controlled Assessment Timetable 2017-2018 Coursework () Although some subjects dedicate class time to modular coursework it is mainly written work produced by the student independently and

More information

Centre Name Centre Number Candidate Name Candidate Number

Centre Name Centre Number Candidate Name Candidate Number Unit Title Creating Interactive Multimedia Products Unit Code R087 Session Jan / June / Nov Year 2 0 Centre Name Centre Number Candidate Name Candidate Number Criteria Teacher Comments Centre Mod LO1:

More information

GCSE Sociology. Your companion guide to our new specification. First teaching from September 2017 First assessment summer 2019

GCSE Sociology. Your companion guide to our new specification. First teaching from September 2017 First assessment summer 2019 GCSE Sociology Your companion guide to our new specification First teaching from September 2017 First assessment summer 2019 Find out more at: aqa.org.uk/sociology GCSE Sociology is changing We ve created

More information

Cambridge International Examinations Cambridge International Advanced Subsidiary and Advanced Level

Cambridge International Examinations Cambridge International Advanced Subsidiary and Advanced Level Cambridge International Examinations Cambridge International Advanced Subsidiary and Advanced Level COMPUTER SCIENCE 9608/23 Paper 2 Fundamental Problem-solving and Programming Skills May/June 2018 PRE-RELEASE

More information

CSCI 3300 Assignment 5

CSCI 3300 Assignment 5 Austin Peay State University, Tennessee Summer 2018 CSCI 3300: Introduction to Web Development Dr. Leong Lee CSCI 3300 Assignment 5 Total estimated time for this assignment: 10 hours When you see Richard

More information

BCS HIGHER EDUCATION QUALIFICATIONS - REGULATIONS

BCS HIGHER EDUCATION QUALIFICATIONS - REGULATIONS BCS HIGHER EDUCATION QUALIFICATIONS - REGULATIONS 1 Structure of the Examinations 1.1 Certificate in IT 1.2 Diploma in IT 1.2.1 Diploma Examination 1.3 Professional Graduate Diploma in IT 1.3.1 Professional

More information

Page 1 of 13. E-COMMERCE PROJECT HundW Consult MENA Instructor: Ahmad Hammad Phone:

Page 1 of 13. E-COMMERCE PROJECT HundW Consult MENA Instructor: Ahmad Hammad   Phone: E-COMMERCE PROJECT HundW Consult MENA Instructor: Ahmad Hammad Email: AhmadNassr@gmail.com Phone: 0599042502 1. Rationale This is the major project for both (Open Source and.net teams) as an E-Commerce

More information

abc Mark Scheme Mathematics 4301 Specification A General Certificate of Secondary Education Paper 2 Higher 2008 examination - November series

abc Mark Scheme Mathematics 4301 Specification A General Certificate of Secondary Education Paper 2 Higher 2008 examination - November series Version 1.0 abc General Certificate of Secondary Education Mathematics 4301 Specification A Paper 2 Higher Mark Scheme 2008 examination - November series Mark schemes are prepared by the Principal Examiner

More information

A-LEVEL Physics 7408/3A

A-LEVEL Physics 7408/3A A-LEVEL Physics 7408/3A PAPER 3 Mark scheme June 2017 Version: 1.0 Final SECTION A Mark schemes are prepared by the Lead Assessment Writer and considered, together with the relevant questions, by a panel

More information

Higher National Unit specification: general information. Graded Unit 2

Higher National Unit specification: general information. Graded Unit 2 Higher National Unit specification: general information This Graded Unit has been validated as part of the HND Computing: Software Development. Centres are required to develop the assessment instrument

More information

Unit 6: Spreadsheets design and use (LEVEL 2)

Unit 6: Spreadsheets design and use (LEVEL 2) (LEVEL 2) Learning outcomes By completing this unit candidates will develop a thorough knowledge and understanding of how to create and use spreadsheets. Candidates will be able to: design a spreadsheet

More information

General Certificate of Secondary Education Digital Technology. Unit 5 Digital Development Practice MARK SCHEME

General Certificate of Secondary Education Digital Technology. Unit 5 Digital Development Practice MARK SCHEME General Certificate of Secondary Education 2019 Digital Technology Unit 5 Digital Development Practice MARK SCHEME 1 Design a solution using appropriate tools Marks The candidate has successfully designed

More information

Instructions for the Conduct of the Examination and Coursework (ICE) Physical Education. Entry Level Certificate (ELC) 8930

Instructions for the Conduct of the Examination and Coursework (ICE) Physical Education. Entry Level Certificate (ELC) 8930 8930 Instructions for the Conduct of the Examination and Coursework (ICE) Physical Education Entry Level Certificate (ELC) 8930 Summer 2006 Please pass one copy of this booklet to the teacher responsible

More information

Vocational Qualifications (QCF, NVQ, NQF) Using ICT. OCR Report to Centres Entry Level Award Using ICT (Entry 3) 01679

Vocational Qualifications (QCF, NVQ, NQF) Using ICT. OCR Report to Centres Entry Level Award Using ICT (Entry 3) 01679 Vocational Qualifications (QCF, NVQ, NQF) Using ICT Entry Level Award Using ICT (Entry 3) 01679 OCR Report to Centres 2016 2017 Oxford Cambridge and RSA Examinations OCR (Oxford Cambridge and RSA) is a

More information

Cambridge Ordinary Level 2210 Computer Science June 2016 Principal Examiner Report for Teachers

Cambridge Ordinary Level 2210 Computer Science June 2016 Principal Examiner Report for Teachers COMPUTER SCIENCE Paper 2210/11 Paper 1 Key messages This syllabus has now been running for a few sessions and candidate s work continues to improve. There is a continued move to provide questions where

More information

Summary of GCSE Chemistry Specification Content and Examination Data (summer 2008) RSC Curriculum and Assessment Group.

Summary of GCSE Chemistry Specification Content and Examination Data (summer 2008) RSC Curriculum and Assessment Group. Summary of GCSE Chemistry Specification Content and Examination Data (summer 2008) RSC Curriculum and Assessment Group www.rsc.org Committee of the Curriculum and Assessment Subject Group Dr W. O. Davies,

More information

Cambridge International General Certificate of Secondary Education 0478 Computer Science June 2015 Principal Examiner Report for Teachers

Cambridge International General Certificate of Secondary Education 0478 Computer Science June 2015 Principal Examiner Report for Teachers COMPUTER SCIENCE Paper 0478/11 Paper 1 Key Messages This is a new syllabus and the standard of candidates work was mostly very good. There is a continued move to provide questions where candidates have

More information

Cambridge International General Certificate of Secondary Education 0478 Computer Science June 2016 Principal Examiner Report for Teachers

Cambridge International General Certificate of Secondary Education 0478 Computer Science June 2016 Principal Examiner Report for Teachers COMPUTER SCIENCE Paper 0478/11 Paper 1 Key messages This syllabus has now been running for a few sessions and candidate s work continues to improve. There is a continued move to provide questions where

More information

National 5 Computing Science Assignment Assessment task

National 5 Computing Science Assignment Assessment task National 5 Computing Science Assignment Assessment task Specimen valid from session 2017 18 and until further notice. This edition: August 2017 (version 1.0) The information in this publication may be

More information

Writing Diploma Exams Using Computers Humanities Part(ie) A, Mathematics 30-2 and Science 30

Writing Diploma Exams Using Computers Humanities Part(ie) A, Mathematics 30-2 and Science 30 Writing Diploma Exams Using Computers Humanities Part(ie) A, Mathematics 30-2 and Science 30 BACKGROUND Examinees are permitted to use computers when writing some diploma exams. The principles, directives,

More information

Centre Name Centre Number Candidate Name Candidate Number

Centre Name Centre Number Candidate Name Candidate Number Unit Title Creating a Multipage Website Unit Code R085 Session Jan / June / Nov Year 2 0 Centre Name Centre Number Candidate Name Candidate Number Criteria Teacher Comments Centre Mod LO1: Understand the

More information

Version 1.0. General Certificate of Education (A-level) June Mathematics MD01. (Specification 6360) Decision 1. Final.

Version 1.0. General Certificate of Education (A-level) June Mathematics MD01. (Specification 6360) Decision 1. Final. Version 1.0 General Certificate of Education (A-level) June 2011 Mathematics MD01 (Specification 6360) Decision 1 Final Mark Scheme Mark schemes are prepared by the Principal Examiner and considered, together

More information

Applied Information and Communication Technology

Applied Information and Communication Technology Applied Information and Communication Technology Unit 7: Using Database Software Summer 2010 Example Solution and Principal Examiner Advice and Guidance Activity 1...3 Activity 2...6 Activity 3...12 Activity

More information

Division of Computing

Division of Computing Division of Computing BSc Computing CSY2026 Modern Networks Date of Issue: 10/02/2017 Date for Submission: Agreed Date for late submission: Student Name: Student ID: Student s Signature: Module Tutor:

More information

awarding excellence Parnassus FAQs

awarding excellence Parnassus FAQs Parnassus FAQs This document is designed to help answer frequently asked questions and resolve problems that you might encounter when using Parnassus. Please note that some of the screen shots will not

More information

Principal Examiner Feedback. January Functional Skills ICT (FST02) Level 2

Principal Examiner Feedback. January Functional Skills ICT (FST02) Level 2 Principal Examiner Feedback January 2012 Functional Skills ICT (FST02) Level 2 Edexcel and BTEC Qualifications Edexcel and BTEC qualifications come from Pearson, the world s leading learning company. We

More information

Content-Based Assessments. Project 2H New Jobs

Content-Based Assessments. Project 2H New Jobs Apply a combination of the Content-Based Assessments GO! Fix It Project 2H New Jobs In this project, you will construct a solution by applying any combination of the skills you practiced from the Objectives

More information

Administrative Guidance for Internally Assessed Units

Administrative Guidance for Internally Assessed Units Administrative Guidance for Internally Assessed Units CiDA Certificate in Digital Application This document covers the requirements for the following units: Unit 2 Creative Multimedia (DA202) Unit 3 Artwork

More information

Assignment front sheet

Assignment front sheet Criteria reference To achieve the criteria the evidence must show that the student is able to: Task no. Page numbers P4 Using appropriate design tools, design an interactive website to meet a client need

More information

Student User Guide (updated )

Student User Guide (updated ) Student User Guide (updated 2.06.06) Copyright 2005 iparadigms, LLC. All rights reserved. Contents Contents 1 Getting Started 4 Creating Your User Profile 4 Logging In 4 Enrolling in a Class 5 Submitting

More information

Unit purpose and aim. Designing and Developing a Web Site. OCR unit number 42 Level: 4 Credit value: 15 Guided learning hours: 90

Unit purpose and aim. Designing and Developing a Web Site. OCR unit number 42 Level: 4 Credit value: 15 Guided learning hours: 90 Unit Title: OCR unit number 42 Level: 4 Credit value: 15 Guided learning hours: 90 Unit reference number: Designing and Developing a Web Site L/601/3315 Candidates undertaking this unit must complete real

More information

Version 1.0. klm. General Certificate of Education June Mathematics. Decision 1. Mark Scheme

Version 1.0. klm. General Certificate of Education June Mathematics. Decision 1. Mark Scheme Version 1.0 klm General Certificate of Education June 2010 Mathematics MD01 Decision 1 Mark Scheme Mark schemes are prepared by the Principal Examiner and considered, together with the relevant questions,

More information

Magyar Nemzeti Bank Electronic System for Receiving Authenticated Data ERA. Electronic Signature User Documentation

Magyar Nemzeti Bank Electronic System for Receiving Authenticated Data ERA. Electronic Signature User Documentation ERA Electronic Signature User Documentation Table of Contents 1. Introduction... 3 1.1. General information... 3 2. DesktopSign... 3 2.1. General information... 3 2.2. Installation... 3 3. MNBSubscriber...

More information

2017 External Examinations Results Day, Enquiries About Results (EAR) and Resit Guidelines

2017 External Examinations Results Day, Enquiries About Results (EAR) and Resit Guidelines 2017 External Examinations Results Day, Enquiries About Results (EAR) and Resit Guidelines Exam results: Exam results are published and available to the public on the dates below: Thursday, 10 th August

More information

SAM Settings and Reports for System 44 Next Generation

SAM Settings and Reports for System 44 Next Generation SAM Settings and Reports for System 44 Next Generation For use with System 44 Next Generation version 2.6 or later and Student Achievement Manager version 2.6 or later or HMH Teacher Central Table of Contents

More information

Mark Scheme. June Pearson Level 2 Certificate in Digital Applications. Unit 5: Coding for the Web

Mark Scheme. June Pearson Level 2 Certificate in Digital Applications. Unit 5: Coding for the Web Mark Scheme June 016 Pearson Level Certificate in Digital Applications Unit 5: Coding for the Web General marking guidance All candidates must receive the same treatment. Examiners must mark the first

More information

Version 1.0. General Certificate of Secondary Education Practice Paper Set 4. Mathematics (Linear) B. Paper 1 Higher Tier 4365/1H.

Version 1.0. General Certificate of Secondary Education Practice Paper Set 4. Mathematics (Linear) B. Paper 1 Higher Tier 4365/1H. Version 1.0 General Certificate of Secondary Education Practice Paper Set 4 Mathematics (Linear) B Paper 1 Higher Tier 4365/1H Mark Scheme Mark Schemes Principal Examiners have prepared these mark schemes

More information

hij Teacher Resource Bank GCE Design and Technology: Product Design (Textiles) Key Features

hij Teacher Resource Bank GCE Design and Technology: Product Design (Textiles) Key Features hij Teacher Resource Bank GCE Design and Technology: Product Design (Textiles) Key Features Copyright 2008 AQA and its licensors. All rights reserved. The Assessment and Qualifications Alliance (AQA) is

More information

Desire2Learn: Assignments

Desire2Learn: Assignments Desire2Learn: Assignments Page 1 Table of Contents Assignments... 2 Creating an Assignment folder... 2 To create a new Assignment folder... 2 Editing an Assignment Folder... 2 Assignment Submission Options...

More information

GCE Computing. COMP3 Problem Solving, Programming, Operating Systems, Databases and Networking Summer Version: 1.0

GCE Computing. COMP3 Problem Solving, Programming, Operating Systems, Databases and Networking Summer Version: 1.0 GCE Computing COMP3 Problem Solving, Programming, Operating Systems, Databases and Networking 2510 Summer 2016 Version: 1.0 It was pleasing to see the quality of responses to some questions and in particular

More information

Vocational Qualifications (QCF, NVQ, NQF) ICT Professional Competence. OCR Report to Centres

Vocational Qualifications (QCF, NVQ, NQF) ICT Professional Competence. OCR Report to Centres Vocational Qualifications (QCF, NVQ, NQF) ICT Professional Competence Level 2 Diploma in ICT Professional Competence (PROCOM) 08737 Level 3 Diploma in ICT Professional Competence (PROCOM) 10262 Level 2

More information

Chesterfield High School. OCR Nationals Level 3 Unit 7: Desktop Publishing. Unit 7

Chesterfield High School. OCR Nationals Level 3 Unit 7: Desktop Publishing. Unit 7 Chesterfield High School OCR Nationals Level 3 Unit 7: Desktop Publishing Unit 7 Learning Outcomes By completing this unit candidates will develop a thorough knowledge and understanding of planning, drafting,

More information

Statistical Bulletin. Malpractice in GCSE and GCE: June 2012 Exam Series. October Ofqual/12/5221

Statistical Bulletin. Malpractice in GCSE and GCE: June 2012 Exam Series. October Ofqual/12/5221 Statistical Bulletin Malpractice in GCSE and GCE: June 2012 Exam Series October 2012 Ofqual/12/5221 Malpractice in GCSE and GCE: June 2012 Exam Series Contents Summary... 2 Introduction... 3 Malpractice...

More information

Course Report Computing Science Advanced Higher

Course Report Computing Science Advanced Higher Course Report 2018 Subject Level Computing Science Advanced Higher This report provides information on the performance of candidates. Teachers, lecturers and assessors may find it useful when preparing

More information

CSCI 3300 Assignment 6

CSCI 3300 Assignment 6 Austin Peay State University, Tennessee Spring 2016 CSCI 3300: Introduction to Web Development Dr. Leong Lee CSCI 3300 Assignment 6 Total estimated time for this assignment: 9 hours When you see Richard

More information

Unit 11: Computer Networks

Unit 11: Computer Networks Unit 11: Computer Networks Level: 1 and 2 Unit type: Mandatory or Optional specialist Guided learning hours: 60 Assessment type: Internal Unit introduction Computer networking is an important part of our

More information

Higher National Unit specification: general information. Graded Unit title: Computing: Networking: Graded Unit 2

Higher National Unit specification: general information. Graded Unit title: Computing: Networking: Graded Unit 2 Higher National Unit specification: general information This Graded Unit has been validated as part of the HND Computing: Networking. Centres are required to develop the assessment instrument in accordance

More information

SafeAssignment 2.0 Instructor Manual

SafeAssignment 2.0 Instructor Manual SafeAssignment 2.0 Instructor Manual 1. Overview SafeAssignment Plagiarism Detection Service for Blackboard is an advanced plagiarism prevention system deeply integrated with the Blackboard Learning Management

More information

1. WHAT AREAS OF LEARNING DOES THIS ASSESSMENT ADDRESS? 2. WHY IS THE COMPLETION OF THIS ASSESSMENT IMPORTANT?

1. WHAT AREAS OF LEARNING DOES THIS ASSESSMENT ADDRESS? 2. WHY IS THE COMPLETION OF THIS ASSESSMENT IMPORTANT? 12 SDD Task 1: RAD Programming Group Task Due Date: 1/12/2017 Date Distributed: 31/10/2017 Task Weighting: 15% Outcomes H4.2 applies appropriate development methods to solve software problems H5.1 applies

More information

Student User Guide (updated )

Student User Guide (updated ) Student User Guide (updated 2.06.06) Copyright 2005 iparadigms, LLC. All rights reserved. Contents Contents 1 Getting Started 4 Creating Your User Profile 4 Logging In 4 Enrolling in a Class 5 Submitting

More information

Pearson Edexcel Level 3 Advanced Subsidiary GCE in Design and Technology: Food Technology (8FT01) First examination 2014

Pearson Edexcel Level 3 Advanced Subsidiary GCE in Design and Technology: Food Technology (8FT01) First examination 2014 Specification GCE Design and Technology: Food Technology Pearson Edexcel Level 3 Advanced Subsidiary GCE in Design and Technology: Food Technology (8FT01) First examination 2014 Pearson Edexcel Level 3

More information

A-level COMPUTER SCIENCE (7517/1A/1B/1C/1D/1E) Paper 1/TN Teachers Notes

A-level COMPUTER SCIENCE (7517/1A/1B/1C/1D/1E) Paper 1/TN Teachers Notes A-level COMPUTER SCIENCE (7517/1A/1B/1C/1D/1E) Paper 1/TN Teachers Notes Teachers Notes To be given immediately to the teacher responsible for A-level Computer Science. Open on receipt. This booklet contains

More information

16. How quickly will the Level 1 and Level 2 examinations be marked? NOCN markers have a five-day turnaround for marking examination papers.

16. How quickly will the Level 1 and Level 2 examinations be marked? NOCN markers have a five-day turnaround for marking examination papers. 1. Are the Functional Skills assessments on demand? The assessments are available on demand. Entry Level examination papers can be downloaded from the NOCN website. Level 1 and Level 2 examination papers

More information

The WellComm Report Wizard Guidance and Information

The WellComm Report Wizard Guidance and Information The WellComm Report Wizard Guidance and Information About Testwise Testwise is the powerful online testing platform developed by GL Assessment to host its digital tests. Many of GL Assessment s tests are

More information

BTEC Nationals IT - Unit2 FAQs

BTEC Nationals IT - Unit2 FAQs BTEC Nationals IT - Unit2 FAQs Q1 Q2 I need more clarity on what is required in the design task Is it expected that the race officials are entering times as raw times and then the table is set up so it

More information

In order to reduce the amount of paper involved in a submission, BCS requires much of the documentation on CD, preferably in HTML format.

In order to reduce the amount of paper involved in a submission, BCS requires much of the documentation on CD, preferably in HTML format. Type 2 - HEI application for BCS accreditation Submission document In order to reduce the amount of paper involved in a submission, BCS requires much of the documentation on CD, preferably in HTML format.

More information

Graded Unit title: Computing: Networking: Graded Unit 2

Graded Unit title: Computing: Networking: Graded Unit 2 SQA Advanced Unit specification: general information for centres This graded unit has been validated as part of the SQA Advanced Diploma in Computing: Networking. Centres are required to develop the assessment

More information

Centre Name Centre Number Candidate Name Candidate Number

Centre Name Centre Number Candidate Name Candidate Number Unit Title Creating a Digital Video Sequence Unit Code R089 Session Jan / June / Nov Year 2 0 Centre Name Centre Number Candidate Name Candidate Number Criteria Teacher Comments Centre Mod LO1: Understand

More information