100% satisfaction guarantee Immediately available after payment Both online and in PDF No strings attached
logo-home
Summary GCSE OCR J277 Computer Science Paper 2 revision notes - BY CSandRS $4.00   Add to cart

Summary

Summary GCSE OCR J277 Computer Science Paper 2 revision notes - BY CSandRS

 15 views  0 purchase
  • Course
  • Institution

FOR PAPER 2, I have seperate revision notes for paper 1 and a coding guide. Every J277 specification point covered. I recommend to copy and paste each topic into ANKI (flashcard app) and memorise them. For context I attained grade 9 in 2024 for CS.

Preview 2 out of 5  pages

  • November 18, 2023
  • 5
  • 2023/2024
  • Summary
  • 1
avatar-seller
ALGORITHMS
COMPUTAIONAL THINKING
COMPUTATIONAL THINKING: The process used to
solve complex problems. Formulating a problem in
such a way that a computer can carry it out
ABSTRACTION: Identifying the key parts and hiding
details that aren’t necessary, so only the important
parts are focused on.
-Simplifies a problem, makes it easier to
understand and create a solution
DECOMPOSITION: Breaking complex problems
down into smaller manageable parts which are
easier to solve
- Once each sub-problem is small and simple
enough, it can be tackled individually
SEARCHING AND SORTING ALGORITHMS
-Makes problems easier to solve
-Different people can work on different parts - SEARCHING ALGS:
reducing development time 1) LINEAR SEARCH: Start from the beginning of the
-Modules/components developed in one program data set.
can easily be used in another - Each item is checked in turn to see if it matches
ALGORITHMIC THINKING: Solving problems by the search criterion
defining the steps and sequence needed - Program terminates when it is found
ALGORITHM: A sequence of steps that can be A) - Simpler to code than binary
followed to complete a task - Can be used on any type of list, ordered or
DESIGNING ALGORITHMS unordered
INPUT: Anything which needs to be supplied to the D) Very inefficient/slow on larger lists
program 2) BINARY SEARCH: Calculate the midpoint (round
PROCESS: The data is then processed in some way up/down) then check if it matches SC.
OUTPUT: The end result after processing -If it doesn’t then eliminate it and the impossible
STRUCTURE DIAGRAMS: A graphical method of half
decomposing problems, with each layer breaking A) More efficient than linear - generally takes fewer
down the layer above it into smaller sub-problems comparisons
Advantages: 1) Modules can be written -Suitable for large lists
independently D) Requires list to be ordered
2) Modules can be tested individually SORTING ALGS:
3) Reused elsewhere 1) BUBBLE SORT: It compares each item with the
FLOWCHART: A graphical representation of an next and swaps them if they are out of order
algorithm using shapes to denote each step and - Passes are made and the algorithm ends when no
arrows to show the direction of flow of data swaps have been made in a particular pass
TRACE TABLE: A tool used to follow each line of the A) Easy to code, good for small data sets
algorithm through, step by step; it shows the - Efficient way to check if the list has already been
contents of each variable and how they change ordered
-It is used to spot logic errors -Doesn’t use much memory as all the sorting is
done in the original list
D) Very inefficient especially for larger lists

, 2) INSERTION SORT: Splits the list into 2 parts: 3) ITERATION: code is repeated (looped) until a
sorted & unsorted. specified condition is met
-Initially only the first value is sorted. Then you a) Count-controlled iteration: Code repeats a
compare the second value with the first one and defined amount of times (FOR)
swap if needed b) Condition-controlled iteration: checks the
-continue comparing the value and putting it in its condition each time and decides whether to repeat
correct place in the sorted part the loop again. (WHILE, DO UNTIL)
A) Easily coded, copes well with small lists ARITHMETIC & BOOLEAN OPERATORS
-Doesn’t require additional memory as everything ARITHMETIC OPERATIONS: used to carry out basic
is done on the original list mathematical operations on numerical values
D) Slows down as the list gets bigger COMPARISON OPERATORS: used to evaluate
expressions to a Boolean True or False condition
3) MERGE SORT: Uses a ‘divide and conquer’ COMPARISON Arithmetic operators
approach to split data into individual lists then OPERATORS
merge them back into order == Equal to + Addition
STAGE 1 (DIVIDE): The list is successively divided in != Not equal to – Subtraction
< Less than * Multiplication
half forming two sublists till each sublist is length 1
<= Less than/equal to / Division
STAGE 2 (CONQUER): Each pair of sublists is
> Greater than MOD / % Modulus
repeatedly merged to produce new sorted sublists >= Greater than/equal DIV / // Quotient
till only one remains. to
A) Very efficient and quicker for larger lists ^ / ** Exponentiation (to
- Consistent running times the power)
D) Slower than other algorithms for smaller lists MODULAS: returns the remainder after the division
- Uses more memory, to create sublists DIV: returns the whole number after the division
PROGRAMMING FUNDAMENTALS BOOLEAN OPERATOR: allows multiple conditions
VARIABLE: A name used to identify a memory to be evaluated
location used to store a value that can change AND - requires both conditions to be True
while the program is running OR - Requires one or both conditions to be True
CONSTANT: A name used to identify a memory NOT - Reverses the True or False outcome from the
location used to store a value that cannot change condition
while the program is running ORDER OF OPERATIONS: Brackets, NOT, AND, OR
ASSIGNMENT: Giving a constant/variable a value DATA TYPES
PROGRAMMING CONSTRUCTS INTEGER: Whole numbers
1) SEQUENCE: The execution of one line of code, REAL/FLOAT: Numbers with a decimal
one after another, in order. BOOLEAN: Used to store True or False
2) SELECTION: When a program branches CHARACTER: single item from a character set
depending on a condition, used to make a decision (letter, number, symbol)
based on Boolean values. STRING: A sequence of characters
a) IF/ELSEIF CASTING: The conversion from one data type to
b) SWITCH/CASE another
-Join strings together/do maths with numbers input
Using correct data type makes code more:
1) Memory efficient 2) robust 3) Predictable

The benefits of buying summaries with Stuvia:

Guaranteed quality through customer reviews

Guaranteed quality through customer reviews

Stuvia customers have reviewed more than 700,000 summaries. This how you know that you are buying the best documents.

Quick and easy check-out

Quick and easy check-out

You can quickly pay through credit card or Stuvia-credit for the summaries. There is no membership needed.

Focus on what matters

Focus on what matters

Your fellow students write the study notes themselves, which is why the documents are always reliable and up-to-date. This ensures you quickly get to the core!

Frequently asked questions

What do I get when I buy this document?

You get a PDF, available immediately after your purchase. The purchased document is accessible anytime, anywhere and indefinitely through your profile.

Satisfaction guarantee: how does it work?

Our satisfaction guarantee ensures that you always find a study document that suits you well. You fill out a form, and our customer service team takes care of the rest.

Who am I buying these notes from?

Stuvia is a marketplace, so you are not buying this document from us, but from seller CSandRS. Stuvia facilitates payment to the seller.

Will I be stuck with a subscription?

No, you only buy these notes for $4.00. You're not tied to anything after your purchase.

Can Stuvia be trusted?

4.6 stars on Google & Trustpilot (+1000 reviews)

82956 documents were sold in the last 30 days

Founded in 2010, the go-to place to buy study notes for 14 years now

Start selling
$4.00
  • (0)
  Add to cart