ILS Computing Specification
ILS Computing Specification
iLowerSecondary
COMPUTING
SPECIFICATION
Pearson Edexcel International Award in Lower Secondary Computing (LCP11)
For first teaching September 2019
First examination June 2020
Issue 2
Edexcel, BTEC and LCCI qualifications
Edexcel, BTEC and LCCI qualifications are awarded by Pearson, the UK’s largest awarding body offering
academic and vocational qualifications that are globally recognised and benchmarked. For further
information, please visit our qualifications website at qualifications.pearson.com. Alternatively, you can
get in touch with us using the details on our contact us page at qualifications.pearson.com/contactus
About Pearson
Pearson is the world's leading learning company, with 35,000 employees in more than 70 countries
working to help people of all ages to make measurable progress in their lives through learning. We put
the learner at the centre of everything we do, because wherever learning flourishes, so do people. Find
out more about how we can help you and your learners at qualifications.pearson.com
Acknowledgements
This specification has been produced by Pearson on the basis of consultation with teachers, examiners,
consultants and other interested parties. Pearson would like to thank all those who contributed their
time and expertise to the specification’s development.
References to third party materials made in this specification are made in good faith. Pearson does not
endorse, approve or accept responsibility for the content of materials, which may be subject to change, or
any opinions expressed therein. (Materials may include textbooks, journals, magazines and other
publications and websites.)
All information in this specification is correct at time of publication.
If you need further information on these changes or what they mean, contact us via
our website at: qualifications.pearson.com/en/support/contact-us.html.
Contents
1 Introduction 1
Why choose the Pearson Edexcel International Award in Lower Secondary
Computing? 1
Supporting you in planning and implementing this qualification 2
Qualification at a glance 3
Planning
● Full, editable Schemes of Work are supplied for all three years of the
iLowerSecondary curriculum.
We will give you resources to help you prepare your students for their assessments,
for example examiner commentaries following each examination series.
ResultsPlus
ResultsPlus provides the most detailed analysis available of your students’ exam
performance. It can help you to identify the topics and skills where further learning
would benefit your students.
Overview
The Pearson Edexcel International Award in Lower Secondary Computing requires
students to demonstrate knowledge, understanding and application of the following
learning objectives drawn from the Pearson Edexcel iLower Secondary Curriculum in
Computing.
Content detail
Assessment information
The Pearson Edexcel International Award in Lower Secondary Computing consists of
an externally-examined achievement test.
● The test is 1 hour and 20 minutes and is out of 80 marks.
● Section A consists of 50 marks and covers the content from Computer Science.
● Section B consists of 30 marks and covers the content from Digital Technology.
● Students must answer all questions.
● The test consists of multiple-choice, closed-response and short-open-response
questions.
Please see the Qualification at a glance section for more information.
Students must: % in
qualification
AO1 Demonstrate knowledge of computing ideas, computing 24–26
techniques and procedures
AO2 Demonstrate understanding of computing ideas, computing 36–38
techniques and procedures
AO3 Apply knowledge and understanding of computing ideas, 19–21
computing techniques and procedures
AO4 Analyse and interpret information, including computing data 5–8
AO5 Evaluate, make judgements and draw conclusions 5–8
AO6 Use computing information to construct an artefact for a 5
real-world situation
Total 100
Entries
Details of how to enter students for the examinations for this qualification can be
found in our International Information Manual. A copy is made available to all
examinations officers and is also available on our website: qualifications.pearson.com
Language of assessment
Assessment of this qualification will be available in English only. All student work must
be in English.
Access arrangements
Access arrangements are agreed before an assessment. They allow students with
special educational needs, disabilities or temporary injuries to:
• access the assessment
• show what they know and can do without changing the demands of the
assessment.
The intention behind an access arrangement is to meet the particular needs of an
individual student with a disability without affecting the integrity of the assessment.
Access arrangements are the principal way in which awarding bodies comply with the
duty under the Equality Act 2010 to make ‘reasonable adjustments’.
Reasonable adjustments
The Equality Act 2010 requires an awarding organisation to make reasonable
adjustments where a student with a disability would be at a substantial disadvantage
in undertaking an assessment. The awarding organisation is required to take
reasonable steps to overcome that disadvantage.
A reasonable adjustment for a particular student may be unique to that individual and
therefore might not be in the list of available access arrangements.
Whether an adjustment will be considered reasonable will depend on a number of
factors, including:
• the needs of the student with the disability
• the effectiveness of the adjustment
• the cost of the adjustment; and
• the likely impact of the adjustment on the student with the disability and other
students.
An adjustment will not be approved if it involves unreasonable costs to the awarding
organisation, timeframes or affects the security or integrity of the assessment. This is
because the adjustment is not ‘reasonable’.
Special consideration
Special consideration is a post-examination adjustment to a student's mark or grade
to reflect temporary injury, illness or other indisposition at the time of the
examination/assessment, which has had, or is reasonably likely to have had, a
material effect on a candidate’s ability to take an assessment or demonstrate their
level of attainment in an assessment.
Further information
Please see our website for further information about how to apply for access
arrangements and special consideration.
For further information about access arrangements, reasonable adjustments and
special consideration please refer to the JCQ website: www.jcq.org.uk
Staff/centre malpractice
Staff and centre malpractice includes both deliberate malpractice and
maladministration of our qualifications. As with candidate malpractice, staff and
centre malpractice is any act that compromises or seeks to compromise the process
of assessment or which undermines the integrity of the qualifications or the validity of
results/certificates.
All cases of suspected staff malpractice and maladministration must be reported
immediately, before any investigation is undertaken by the centre, to Pearson on a
JCQ Form M2(a) (available at www.jcq.org.uk/exams-office/malpractice).
The form, supporting documentation and as much information as possible should be
emailed to pqsmalpractice@pearson.com. Note that the final decision regarding
appropriate sanctions lies with Pearson.
Failure to report malpractice itself constitutes malpractice.
More-detailed guidance on malpractice can be found in the latest version of the
document JCQ Suspected Malpractice: Policies and Procedures, available at
www.jcq.org.uk/exams-office/malpractice.
Progression
Students can progress from this qualification to the Pearson Edexcel International
GCSE in Computer Science or Pearson Edexcel International GCSE in Information and
Communication Technology.
Programming constructs
Assignment
Assignment is used to set or change the value of a variable.
<variable identifier> = <value>
<variable identifier> = <expression>
Selection
if <expression>: If <expression> is true, then command is
executed.
<command>
if <expression>: If <expression> is true, then first <command>
is executed, otherwise second <command> is
<command>
executed.
else:
<command>
if <expression>: If <expression> is true, then first <command>
is executed, otherwise the second
<command>
<expression> test is checked and if true, then
elif <expression>: second <command> is executed, otherwise
<command> third <command> is executed.
Repetition
while <condition>: Pre-conditioned loop. This executes
<command> while <condition> is true.
<command>
Iteration
for <id> in range (<start>, <stop>): Count controlled loop. Executes <command>
a fixed number of times, based on the
<command>
numbers generated by the range function.
Lists
Function Description
list.append(item) Adds an item to the end of the list
del <list>[<index>] Removes the item at index from list
<item> = list() Two methods for declaring a list structure. Both are
empty
<item> = []
Strings
convert to and from string types str() and int()
string methods upper(), lower(), len()
concatenation using the + operator
slicing word[0:2] returns characters from position 0
(included) to 2 (excluded), word[4:] returns
characters from position 4 (included) to the
end, word [-2:] returns characters from the
second-last (included) to the end
NB: Positions start at 0
db100820 9781446959930_ILS_COMPUTING_ISS2.DOCX.1–35/2
Edexcel