Computational thinking
The process of thinking about a problem using computational means in order to create a solution which a computer can implement.
Abstraction
The process of removing irrelevant or unnecessary information from the problem in order to simplify it
Decomposition
The process of breaking a problem down into smaller parts to make it easier to solve.
Algorithmic Thinking
The process of working out the individual steps needed to solve a problem in order to produce an algorithmic solution.
Algorithm
A sequence of logical instructions to carry out a specific task.
Structure diagram
A diagram which shows in a graphical format the steps needed to solve a
problem.
Pseudocode
A way of writing out algorithms in a way which sits somewhere between full sentences and computer code.
Flowchart
A way of using pictures and shapes to represent the steps needed to solve a problem or that a program will take.
Programming Language
A language which can be understood by computers to produce computer software.
Error
Something wrong in computer code which causes it either to not run or produce an incorrect output.
Trace table
A table which records the values stored in each of a program’s variables at each stage through the program.
Search
Finding a value or piece of information within a set of data.
Binary Search
A way of searching an ordered list by looking at the middle item in the list, then looking at either the items above or below depending on if the required value is higher or lower, until the value is found.
Advantage of binary search
Is more effective and time efficient for searching long lists
Disadvantage of binary search
Can only work on ordered lists.
Linear Search
A way of searching through a list items, checking them one at a time until the required value is found.
Disadvantage of linear search
Is very time consuming to search long lists and big data sets
Advantage of linear search
Somewhat effective and works on any list
Sort
A way of placing information into a certain order, such as alphabetically or by number
Bubble sort
A way of sorting a list by comparing the items in a list, two at a time, and changing the order, bubbling through until sorted.
Merge Sort
A way of sorting a list by dividing it in two until each item is separated individually.
Pairs of items are compared and placed in order until the list is ordered
Insertion Sort
A way of sorting a list by working through the items one at a time and inserting them in the correct position into an empty ‘sorted’ list.