Difference between revisions of "AQA - Comp Sci - A Level - Paper 1"

From TRCCompSci - AQA Computer Science
Jump to: navigation, search
(Getting started)
(AQA A Level Computer Science Unit 1 2017 Wiki)
Line 1: Line 1:
 
=AQA A Level Computer Science Unit 1 2017 Wiki=
 
=AQA A Level Computer Science Unit 1 2017 Wiki=
 +
 +
<syntaxhighlight lang="python" line>
 +
def quickSort(arr):
 +
less = []
 +
pivotList = []
 +
more = []
 +
if len(arr) <= 1:
 +
return arr
 +
else:
 +
pass
 +
</syntaxhighlight>
 +
  
 
==Introduction==
 
==Introduction==

Revision as of 21:32, 28 November 2016

AQA A Level Computer Science Unit 1 2017 Wiki

1 def quickSort(arr):
2 	less = []
3 	pivotList = []
4 	more = []
5 	if len(arr) <= 1:
6 		return arr
7 	else:
8 		pass


Introduction

This wiki will be dedicated to the Unit 1 2017 exam for AQA A Level Computer Science.

Exam Files

Getting started

The question paper is divided into four sections and a recommendation is given to candidates as to how long to spend on each section. Below are the recommended timings for the 2017 examination.

Section A

You are advised to spend no more than 45 minutes on this section. Questions will examine the specification content not specific to the Preliminary Material.

Section A Main Page

Section B

You are advised to spend no more than 20 minutes on this section. You will be asked to create a new program not related to the Preliminary Material or Skeleton Program.

Section B Main Page

Section C

You are advised to spend no more than 15 minutes on this section. Questions will refer to the Preliminary Material and the Skeleton Program, but will not require programming.

Section C Main Page

Section D

You are advised to spend no more than 70 minutes on this section. Questions will use the Skeleton Program and the Preliminary Material.

Section D Main Page