Computing gcse unit 2.1

0.0(0)
studied byStudied by 0 people
call kaiCall Kai
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
GameKnowt Play
Card Sorting

1/13

encourage image

There's no tags or description

Looks like no tags are added yet.

Last updated 6:12 PM on 5/13/25
Name
Mastery
Learn
Test
Matching
Spaced
Call with Kai

No analytics yet

Send a link to your students to track their progress

14 Terms

1
New cards

3 principles of computational thinking

abstraction, decomposition and algorithmic thinking

2
New cards

abstraction

the process of removing unnecessary details

3
New cards

decomposition

the process of breaking something down into smaller, more manageable parts

4
New cards

algorithmic thinking

a way of getting to a solution by identifying the steps needed

5
New cards

input

whatever goes into the program

6
New cards

output

whatever leaves the program

7
New cards

process

things performed by program

8
New cards

structure diagrams

used to decompose problem

9
New cards

trace table

a table to track the values of variables during program execution.

10
New cards

binary search

A search algorithm that finds the position of a target value within a sorted array by repeatedly dividing the search interval in half.

11
New cards

linear search

A search algorithm that checks each element in a list sequentially until the target value is found or the list ends.

12
New cards

bubble sort

sorting algorithm that swaps each number one by one till everything is in the right order

13
New cards

insertion sort

sorting algorithm that adds to a new list in the right order

14
New cards

merge sort

sorting algorithm that separates into new lists and puts them together in right order