Computer Science GCES OCR
-
Cpu Architecture Performance And Embedded Systems Ocr5 主题
-
Primary And Secondary Storage Ocr6 主题
-
Data Storage And Compression Ocr12 主题
-
Units Of Data Storage Ocr
-
Processing Binary Data Ocr
-
Data Capacity And Calculating Capacity Requirements Ocr
-
Converting Between Denary And Binary Ocr
-
Binary Addition Ocr
-
Converting Between Denary And Hexadecimal Ocr
-
Converting Between Binary And Hexadecimal Ocr
-
Binary Shifts Ocr
-
Representing Characters Ocr
-
Representing Images Ocr
-
Representing Sound Ocr
-
Compression Ocr
-
Units Of Data Storage Ocr
-
Networks And Topologies Ocr6 主题
-
Wired And Wireless Networks Protocols And Layers Ocr6 主题
-
Identifying And Preventing Threats To Computer Systems And Networks Ocr2 主题
-
Operating Systems And Utility Software Ocr2 主题
-
Ethical Legal Cultural And Environmental Impact Ocr2 主题
-
Computational Thinking Searching And Sorting Algorithms Ocr3 主题
-
Designing Creating And Refining Algorithms Ocr5 主题
-
Programming Fundamentals And Data Types Ocr5 主题
-
Additional Programming Techniques Ocr7 主题
-
Defensive Design And Testing Ocr6 主题
-
Boolean Logic Diagrams Ocr2 主题
-
Programming Languages And Integrated Development Environments Ides Ocr3 主题
-
The Exam Papers Ocr2 主题
-
Structuring Your Responses Ocr3 主题
Pseudocode And Flowcharts Ocr
Exam code:J277
-
When designing algorithms there are two main tools that can be used to describe them:
-
Pseudocode
-
Flowcharts
-
Examiner Tips and Tricks
Remember, in the exam you will be expected to create, interpret, correct and refine algorithms in either flowcharts, pseudocode or OCR exam reference language
Pseudocode
What is pseudocode?
-
Pseudocode is a text based tool that uses short English words/statements to describe an algorithm
-
Pseudocode is more structured than writing sentences in English, but is very flexible
Example
-
A casino would like a program that asks users to enter an age, if they are 18 or over they can enter the site, if not then they are given a suitable message
|
Pseudocode |
|
|
-
The casino would like the algorithm refined so that the user also enter their first name and this is used to greet the user when they access the site
|
Pseudocode |
|
|
What is OCR exam reference language?
-
OCR exam reference language is the officially designed pseudocode that is seen in OCR based exams to describe algorithms
-
Pseudocode has no official syntax so to keep exams consistent OCR have developed their own
Examples
|
Function |
OCR exam reference language |
|
OUTPUT |
|
|
INPUT |
|
|
SELECTION |
|
|
FOR LOOPS |
|
|
WHILE LOOPS |
|
Examiner Tips and Tricks
OCR exam reference language is so close to Python syntax that you can write algorithms in Python in both section A and B of the exam!
Worked Example

Rewrite the flowchart as a pseudocode [4]
You must use either
-
Pseudocode or
-
OCR Exam Reference Language
Answer
|
Pseudocode |
OCR exam reference language |
|---|---|
|
|
|
Flowcharts
What is a flowchart?
-
Flowcharts are a visual tool that uses shapes to represent different functions to describe an algorithm
-
Flowcharts show the data that is input and output, the processes that take place and any decisions or repetition
-
Lines are used to show the flow of control

Example
|
Flowchart |
![]() |
-
The casino would like the algorithm refined so that the user also enter their first name and this is used to greet the user when they access the site
|
Flowchart |
![]() |


Responses