Open the App

Subjects

Computer ScienceComputer Science844 views·Updated 23 Aug 2026·6 pages

OCR A Level Computer Science 2.2 Notes: PDF, GCSE, Past Papers, Guide

OCR A Level Computer Scienceprogramming fundamentals and computational methods...

1
of 6
Component 2.2 revision notes – page 1

Variables and Subroutines

This section covers local and global variables, as well as subroutines, functions, and procedures in OCR A Level Computer Science.

Global and Local Variables

The document contrasts local and global variables:

Local variables:

  • Accessible only within specific program parts
  • Can have same identifier in different subroutines
  • Memory released after subroutine finishes

Global variables:

  • Accessible anywhere in the program
  • Preserved in memory until program ends
  • Can make debugging more difficult

Definition: A global variable in computer science is accessible anywhere in a program for its entire execution.

Subroutines, Functions, and Procedures

The text defines and explains:

  • Subroutines: Named code sections callable by name
  • Procedures: Sets of instructions executed when called
  • Functions: Like procedures, but return a value

Benefits of subroutines include improved readability, reusability, and easier testing.

Highlight: Understanding the difference between global and local variables is crucial for effective programming in OCR A Level Computer Science.

Parameters and Arguments

The document explains:

  • Parameters: Data passed to subroutines
  • Arguments: Actual data pieces passed
  • Passing by value vs. passing by reference
2
of 6
Component 2.2 revision notes – page 2

Integrated Development Environments and Object-Oriented Programming

This section covers IDEs and introduces object-oriented programming concepts for OCR A Level Computer Science.

Integrated Development Environment (IDE)

The document lists key features of IDEs:

  • Text editors
  • Autocomplete
  • Automatic formatting
  • Keyword highlighting
  • Automatic line numbering
  • Syntax checking
  • Runtime environment
  • Debugging tools

Vocabulary: An IDE (Integrated Development Environment) is a software suite that consolidates basic tools for software development.

Object-Oriented Programming (OOP)

The text introduces OOP concepts:

  • Objects: Real-world things in everyday life
  • Attributes: Data items describing objects
  • Methods: Operations a class can execute
  • Class: Blueprint defining properties of objects
  • Instantiation: Creating an object from a class definition

Definition: Encapsulation in OOP binds attributes and methods, protecting data.

The document also mentions:

  • Getter and setter methods
  • Inheritance
  • Polymorphism
3
of 6
Component 2.2 revision notes – page 3

Computational Methods

This final section briefly touches on computational methods in OCR A Level Computer Science.

The document states that to solve a problem using computational methods, it must be:

  1. Clearly defined
  2. Computable
  3. Solvable

Highlight: Understanding computational methods is crucial for problem-solving in OCR A Level Computer Science.

This concludes the summary of key concepts covered in the OCR A Level Computer Science 2.2 revision notes PDF.

4
of 6
Component 2.2 revision notes – page 4

Object-Oriented Programming Fundamentals

This page introduces core object-oriented programming concepts essential for OCR A Level Computer Science.

Definition: Object-oriented programming is a programming paradigm based on objects containing data and code.

Key concepts include:

  • Objects and classes
  • Attributes and methods
  • Instantiation process
  • Encapsulation principles

Highlight: Understanding OOP concepts is crucial for modern software development and OCR A Level Computer Science Paper 2.

5
of 6
Component 2.2 revision notes – page 5

Advanced OOP and Computational Methods

This final section covers advanced OOP concepts and computational problem-solving approaches.

Definition: Inheritance allows creation of new classes that reuse, extend, or modify behaviors defined in other classes.

The content covers:

  • Inheritance implementation
  • Polymorphism concepts
  • Computational problem-solving requirements
  • Problem definition and solvability

Highlight: These concepts are frequently tested in OCR A Level Computer Science past papers.

6
of 6
Component 2.2 revision notes – page 6

Programming Constructs and Recursion

This section covers fundamental programming constructs and introduces recursion in OCR A Level Computer Science.

Sequence, Iteration, and Selection

The document outlines three key programming constructs:

  1. Sequence - Instructions executed in order
  2. Iteration - Repeating instructions based on conditions or counts
  3. Selection - Executing code based on true/false conditions

Vocabulary: Condition-controlled iteration repeats instructions based on a true/false condition.

Example: While loops are an example of condition controlled iteration in OCR A Level Computer Science.

Types of Loops

The text describes several types of loops:

  • For loops (count-controlled)
  • While loops (condition-controlled)
  • Do-while loops
  • Repeat-until loops
  • Nested loops

Recursion

Recursion is introduced as a subroutine calling itself. Key points include:

  • Uses a stack
  • Requires a base case and general case
  • Parameters passed by value

Example: A recursive function to sum numbers from 1 to n is provided as an example for OCR computer science.

The document compares pros and cons of recursion:

Pros:

  • Fewer lines of code
  • Natural for recursive data structures

Cons:

  • Harder to trace
  • Uses more memory
  • Slower due to stack operations

We thought you’d never ask...

Our AI Companion is a student-focused AI tool that offers more than just answers. Built on millions of Knowunity resources, it provides relevant information, personalised study plans, quizzes, and content directly in the chat, adapting to your individual learning journey.

You can download the app from Google Play Store and Apple App Store.

That's right! Enjoy free access to study content, connect with fellow students, and get instant help – all at your fingertips.

Similar content

Most popular content in Computer Science

9
Computer ScienceComputer Science

GCSE Computer Science Overview

Comprehensive study material for OCR GCSE Computer Science covering key topics such as computer architecture, network security, programming techniques, and ethical considerations. Ideal for exam preparation, this resource includes essential concepts, exam questions, and definitions to enhance understanding and retention.

117,931306
Computer ScienceComputer Science

GCSE Computer Science // Revision Notes

Concise revision notes for the GCSE OCR computer science specification (J277). Contains all the info needed for paper 1. Paper 2 is in my bio.

114786
Computer ScienceComputer Science

Python Basics for Year 8

Master the fundamentals of Python programming with this comprehensive guide tailored for Year 8 students. Explore key concepts such as variables, loops, conditional statements, and arithmetic operators. This resource includes practical examples and interactive coding exercises to enhance your understanding and prepare you for assessments.

73079
Computer ScienceComputer Science

GCSE Computer Science Algorithms

Comprehensive overview of algorithms for AQA GCSE Computer Science Paper 1, covering key concepts such as sorting (Bubble Sort, Merge Sort), searching (Linear and Binary Search), and essential programming principles like data types, pseudocode, and flowcharts. Ideal for exam preparation and understanding algorithm efficiency.

1176856
Computer ScienceComputer Science

Fundamentals of Computer Networking

Explore the essential concepts of computer networking, including types of networks (LAN, WAN, Internet), key components (nodes, links, protocols), and basic principles like IP and MAC addresses. This summary provides a comprehensive overview of network technologies and their significance in resource sharing, communication, and collaboration.

121524
Computer ScienceComputer Science

A-Level Computer Science Paper 1 (Revision sheet)

(Apologies if some things look a bit off, converting the PowerPoint to PDF was a struggle as it wouldn’t let me include my custom drawings for diagrams)

131476
Computer ScienceComputer Science

GCSE Computer Science Revision

Comprehensive revision notes for OCR GCSE Computer Science Component 1 (J277). Covers key topics including networking, cybersecurity, data compression, computer architecture, and ethical issues. Ideal for exam preparation and understanding core concepts. Access original slides for further details.

114,842150
Computer ScienceComputer Science

Sorting Algorithms Overview

Explore key sorting algorithms including Bubble, Insertion, and Merge sort. This summary covers their definitions, advantages, disadvantages, and practical examples to aid your GCSE Computer Science exam preparation.

113098
Computer ScienceComputer Science

CPU Architecture Essentials

Explore the fundamental components of CPU architecture, including the Fetch-Decode-Execute cycle, factors affecting CPU performance, and the role of embedded systems. This summary covers key concepts such as clock speed, cache size, and the Von Neumann architecture, providing a comprehensive overview for students studying computer systems.

101051

Most popular content

9
SociologySociology

Comprehensive Crime & Deviance Overview

Explore an extensive revision of crime and deviance topics, including theories, types of crime, and the impact of media. This resource covers key concepts such as Marxism, functionalism, gender and crime, and the influence of globalization on criminal behavior. Ideal for students seeking a thorough understanding of criminology and its various theories. Type: Full Topic Revision.

1251,7751,405
SociologySociology

Sociological Theories Overview

Comprehensive revision of key sociological theories including Functionalism, Marxism, Feminism, and Interpretivism. Explore concepts like value freedom, identity formation, and the critique of social control. Ideal for AQA A-Level Sociology students preparing for exams. This summary covers essential theories and their implications in sociology, providing a clear understanding of each perspective.

1231,606848
SociologySociology

Sociology of Families: Comprehensive Revision

Dive into an extensive overview of family dynamics, perspectives, and patterns in sociology. This resource covers key concepts such as family diversity, gender roles, marriage, and the impact of social policies on family structures. Perfect for A-Level Sociology students preparing for Paper 2.

1274,0142,306
SociologySociology

Sociology of Education Overview

Explore comprehensive A-Level Sociology notes on the education system, covering key theories, policies, and sociological perspectives. This resource includes insights on marketisation, gender roles, cultural deprivation, and educational inequalities, providing a thorough understanding of how education shapes social stratification and individual achievement. Ideal for exam preparation and in-depth study.

12103,1693,044
SociologySociology

Crime and Deviance AQA A-level sociology

AQA A-level crime and deviance topic notes

1289719
ChemistryChemistry

Chemistry paper 2

Chem paper 2 notes

1173414
BiologyBiology

A-Level Biology Year 1 Overview

Comprehensive summary of AQA A-Level Biology Year 1, covering key topics such as cellular structure, protein synthesis, immune response, gas exchange, and more. Ideal for exam preparation and understanding biological concepts. Includes detailed insights into cellular processes, biological classification, and the circulatory system.

1215,136700
BiologyBiology

AQA Biology: Key Concepts

Explore essential AQA Biology topics including Photosynthesis, Respiration, Homeostasis, Genetics, and Ecology. This comprehensive knowledge organizer covers key concepts such as energy transfer, hormonal control, and genetic variation, providing a solid foundation for your studies. Ideal for exam preparation and understanding biological processes.

109,132311
BiologyBiology

Biology P2: Evolution & Adaptation

Explore key concepts in AQA GCSE Biology P2, focusing on evolution, natural selection, genetic engineering, and adaptations in organisms. This summary covers essential topics such as DNA structure, speciation, and the impact of environmental changes on biodiversity. Ideal for exam preparation and understanding complex biological processes.

111,24322

Students love us — and so will you.

4.6/5App Store
4.7/5Google Play

The app is very easy to use and well designed. I have found everything I was looking for so far and have been able to learn a lot from the presentations! I will definitely use the app for a class assignment! And of course it also helps a lot as an inspiration.

Stefan SiOS user

This app is really great. There are so many study notes and help [...]. My problem subject is French, for example, and the app has so many options for help. Thanks to this app, I have improved my French. I would recommend it to anyone.

Samantha KlichAndroid user

Wow, I am really amazed. I just tried the app because I've seen it advertised many times and was absolutely stunned. This app is THE HELP you want for school and above all, it offers so many things, such as workouts and fact sheets, which have been VERY helpful to me personally.

AnnaiOS user

Computer ScienceComputer Science844 views·Updated 23 Aug 2026·6 pages

OCR A Level Computer Science 2.2 Notes: PDF, GCSE, Past Papers, Guide

OCR A Level Computer Science programming fundamentals and computational methods explained in detail, focusing on key programming constructs, variable scoping, and object-oriented concepts.

Key points:

  • Covers essential programming constructs including sequence, iteration, and selection
  • Explains recursion implementation and trade-offs
  • Details...
1
of 6
Component 2.2 revision notes – page 1

Sign up to see the content. It's free!

  • Access to all documents
  • Improve your grades
  • Join milions of students

By signing up you accept Terms of Service and Privacy Policy

Variables and Subroutines

This section covers local and global variables, as well as subroutines, functions, and procedures in OCR A Level Computer Science.

Global and Local Variables

The document contrasts local and global variables:

Local variables:

  • Accessible only within specific program parts
  • Can have same identifier in different subroutines
  • Memory released after subroutine finishes

Global variables:

  • Accessible anywhere in the program
  • Preserved in memory until program ends
  • Can make debugging more difficult

Definition: A global variable in computer science is accessible anywhere in a program for its entire execution.

Subroutines, Functions, and Procedures

The text defines and explains:

  • Subroutines: Named code sections callable by name
  • Procedures: Sets of instructions executed when called
  • Functions: Like procedures, but return a value

Benefits of subroutines include improved readability, reusability, and easier testing.

Highlight: Understanding the difference between global and local variables is crucial for effective programming in OCR A Level Computer Science.

Parameters and Arguments

The document explains:

  • Parameters: Data passed to subroutines
  • Arguments: Actual data pieces passed
  • Passing by value vs. passing by reference
2
of 6
Component 2.2 revision notes – page 2

Sign up to see the content. It's free!

  • Access to all documents
  • Improve your grades
  • Join milions of students

By signing up you accept Terms of Service and Privacy Policy

Integrated Development Environments and Object-Oriented Programming

This section covers IDEs and introduces object-oriented programming concepts for OCR A Level Computer Science.

Integrated Development Environment (IDE)

The document lists key features of IDEs:

  • Text editors
  • Autocomplete
  • Automatic formatting
  • Keyword highlighting
  • Automatic line numbering
  • Syntax checking
  • Runtime environment
  • Debugging tools

Vocabulary: An IDE (Integrated Development Environment) is a software suite that consolidates basic tools for software development.

Object-Oriented Programming (OOP)

The text introduces OOP concepts:

  • Objects: Real-world things in everyday life
  • Attributes: Data items describing objects
  • Methods: Operations a class can execute
  • Class: Blueprint defining properties of objects
  • Instantiation: Creating an object from a class definition

Definition: Encapsulation in OOP binds attributes and methods, protecting data.

The document also mentions:

  • Getter and setter methods
  • Inheritance
  • Polymorphism
3
of 6
Component 2.2 revision notes – page 3

Sign up to see the content. It's free!

  • Access to all documents
  • Improve your grades
  • Join milions of students

By signing up you accept Terms of Service and Privacy Policy

Computational Methods

This final section briefly touches on computational methods in OCR A Level Computer Science.

The document states that to solve a problem using computational methods, it must be:

  1. Clearly defined
  2. Computable
  3. Solvable

Highlight: Understanding computational methods is crucial for problem-solving in OCR A Level Computer Science.

This concludes the summary of key concepts covered in the OCR A Level Computer Science 2.2 revision notes PDF.

4
of 6
Component 2.2 revision notes – page 4

Sign up to see the content. It's free!

  • Access to all documents
  • Improve your grades
  • Join milions of students

By signing up you accept Terms of Service and Privacy Policy

Object-Oriented Programming Fundamentals

This page introduces core object-oriented programming concepts essential for OCR A Level Computer Science.

Definition: Object-oriented programming is a programming paradigm based on objects containing data and code.

Key concepts include:

  • Objects and classes
  • Attributes and methods
  • Instantiation process
  • Encapsulation principles

Highlight: Understanding OOP concepts is crucial for modern software development and OCR A Level Computer Science Paper 2.

5
of 6
Component 2.2 revision notes – page 5

Sign up to see the content. It's free!

  • Access to all documents
  • Improve your grades
  • Join milions of students

By signing up you accept Terms of Service and Privacy Policy

Advanced OOP and Computational Methods

This final section covers advanced OOP concepts and computational problem-solving approaches.

Definition: Inheritance allows creation of new classes that reuse, extend, or modify behaviors defined in other classes.

The content covers:

  • Inheritance implementation
  • Polymorphism concepts
  • Computational problem-solving requirements
  • Problem definition and solvability

Highlight: These concepts are frequently tested in OCR A Level Computer Science past papers.

6
of 6
Component 2.2 revision notes – page 6

Sign up to see the content. It's free!

  • Access to all documents
  • Improve your grades
  • Join milions of students

By signing up you accept Terms of Service and Privacy Policy

Programming Constructs and Recursion

This section covers fundamental programming constructs and introduces recursion in OCR A Level Computer Science.

Sequence, Iteration, and Selection

The document outlines three key programming constructs:

  1. Sequence - Instructions executed in order
  2. Iteration - Repeating instructions based on conditions or counts
  3. Selection - Executing code based on true/false conditions

Vocabulary: Condition-controlled iteration repeats instructions based on a true/false condition.

Example: While loops are an example of condition controlled iteration in OCR A Level Computer Science.

Types of Loops

The text describes several types of loops:

  • For loops (count-controlled)
  • While loops (condition-controlled)
  • Do-while loops
  • Repeat-until loops
  • Nested loops

Recursion

Recursion is introduced as a subroutine calling itself. Key points include:

  • Uses a stack
  • Requires a base case and general case
  • Parameters passed by value

Example: A recursive function to sum numbers from 1 to n is provided as an example for OCR computer science.

The document compares pros and cons of recursion:

Pros:

  • Fewer lines of code
  • Natural for recursive data structures

Cons:

  • Harder to trace
  • Uses more memory
  • Slower due to stack operations

We thought you’d never ask...

Our AI Companion is a student-focused AI tool that offers more than just answers. Built on millions of Knowunity resources, it provides relevant information, personalised study plans, quizzes, and content directly in the chat, adapting to your individual learning journey.

You can download the app from Google Play Store and Apple App Store.

That's right! Enjoy free access to study content, connect with fellow students, and get instant help – all at your fingertips.

Similar content

Most popular content in Computer Science

9
Computer ScienceComputer Science

GCSE Computer Science Overview

Comprehensive study material for OCR GCSE Computer Science covering key topics such as computer architecture, network security, programming techniques, and ethical considerations. Ideal for exam preparation, this resource includes essential concepts, exam questions, and definitions to enhance understanding and retention.

117,931306
Computer ScienceComputer Science

GCSE Computer Science // Revision Notes

Concise revision notes for the GCSE OCR computer science specification (J277). Contains all the info needed for paper 1. Paper 2 is in my bio.

114786
Computer ScienceComputer Science

Python Basics for Year 8

Master the fundamentals of Python programming with this comprehensive guide tailored for Year 8 students. Explore key concepts such as variables, loops, conditional statements, and arithmetic operators. This resource includes practical examples and interactive coding exercises to enhance your understanding and prepare you for assessments.

73079
Computer ScienceComputer Science

GCSE Computer Science Algorithms

Comprehensive overview of algorithms for AQA GCSE Computer Science Paper 1, covering key concepts such as sorting (Bubble Sort, Merge Sort), searching (Linear and Binary Search), and essential programming principles like data types, pseudocode, and flowcharts. Ideal for exam preparation and understanding algorithm efficiency.

1176856
Computer ScienceComputer Science

Fundamentals of Computer Networking

Explore the essential concepts of computer networking, including types of networks (LAN, WAN, Internet), key components (nodes, links, protocols), and basic principles like IP and MAC addresses. This summary provides a comprehensive overview of network technologies and their significance in resource sharing, communication, and collaboration.

121524
Computer ScienceComputer Science

A-Level Computer Science Paper 1 (Revision sheet)

(Apologies if some things look a bit off, converting the PowerPoint to PDF was a struggle as it wouldn’t let me include my custom drawings for diagrams)

131476
Computer ScienceComputer Science

GCSE Computer Science Revision

Comprehensive revision notes for OCR GCSE Computer Science Component 1 (J277). Covers key topics including networking, cybersecurity, data compression, computer architecture, and ethical issues. Ideal for exam preparation and understanding core concepts. Access original slides for further details.

114,842150
Computer ScienceComputer Science

Sorting Algorithms Overview

Explore key sorting algorithms including Bubble, Insertion, and Merge sort. This summary covers their definitions, advantages, disadvantages, and practical examples to aid your GCSE Computer Science exam preparation.

113098
Computer ScienceComputer Science

CPU Architecture Essentials

Explore the fundamental components of CPU architecture, including the Fetch-Decode-Execute cycle, factors affecting CPU performance, and the role of embedded systems. This summary covers key concepts such as clock speed, cache size, and the Von Neumann architecture, providing a comprehensive overview for students studying computer systems.

101051

Most popular content

9
SociologySociology

Comprehensive Crime & Deviance Overview

Explore an extensive revision of crime and deviance topics, including theories, types of crime, and the impact of media. This resource covers key concepts such as Marxism, functionalism, gender and crime, and the influence of globalization on criminal behavior. Ideal for students seeking a thorough understanding of criminology and its various theories. Type: Full Topic Revision.

1251,7751,405
SociologySociology

Sociological Theories Overview

Comprehensive revision of key sociological theories including Functionalism, Marxism, Feminism, and Interpretivism. Explore concepts like value freedom, identity formation, and the critique of social control. Ideal for AQA A-Level Sociology students preparing for exams. This summary covers essential theories and their implications in sociology, providing a clear understanding of each perspective.

1231,606848
SociologySociology

Sociology of Families: Comprehensive Revision

Dive into an extensive overview of family dynamics, perspectives, and patterns in sociology. This resource covers key concepts such as family diversity, gender roles, marriage, and the impact of social policies on family structures. Perfect for A-Level Sociology students preparing for Paper 2.

1274,0142,306
SociologySociology

Sociology of Education Overview

Explore comprehensive A-Level Sociology notes on the education system, covering key theories, policies, and sociological perspectives. This resource includes insights on marketisation, gender roles, cultural deprivation, and educational inequalities, providing a thorough understanding of how education shapes social stratification and individual achievement. Ideal for exam preparation and in-depth study.

12103,1693,044
SociologySociology

Crime and Deviance AQA A-level sociology

AQA A-level crime and deviance topic notes

1289719
ChemistryChemistry

Chemistry paper 2

Chem paper 2 notes

1173414
BiologyBiology

A-Level Biology Year 1 Overview

Comprehensive summary of AQA A-Level Biology Year 1, covering key topics such as cellular structure, protein synthesis, immune response, gas exchange, and more. Ideal for exam preparation and understanding biological concepts. Includes detailed insights into cellular processes, biological classification, and the circulatory system.

1215,136700
BiologyBiology

AQA Biology: Key Concepts

Explore essential AQA Biology topics including Photosynthesis, Respiration, Homeostasis, Genetics, and Ecology. This comprehensive knowledge organizer covers key concepts such as energy transfer, hormonal control, and genetic variation, providing a solid foundation for your studies. Ideal for exam preparation and understanding biological processes.

109,132311
BiologyBiology

Biology P2: Evolution & Adaptation

Explore key concepts in AQA GCSE Biology P2, focusing on evolution, natural selection, genetic engineering, and adaptations in organisms. This summary covers essential topics such as DNA structure, speciation, and the impact of environmental changes on biodiversity. Ideal for exam preparation and understanding complex biological processes.

111,24322

Students love us — and so will you.

4.6/5App Store
4.7/5Google Play

The app is very easy to use and well designed. I have found everything I was looking for so far and have been able to learn a lot from the presentations! I will definitely use the app for a class assignment! And of course it also helps a lot as an inspiration.

Stefan SiOS user

This app is really great. There are so many study notes and help [...]. My problem subject is French, for example, and the app has so many options for help. Thanks to this app, I have improved my French. I would recommend it to anyone.

Samantha KlichAndroid user

Wow, I am really amazed. I just tried the app because I've seen it advertised many times and was absolutely stunned. This app is THE HELP you want for school and above all, it offers so many things, such as workouts and fact sheets, which have been VERY helpful to me personally.

AnnaiOS user