Topic 1 - Computational Thinking

0.0(0)
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
Card Sorting

1/44

encourage image

There's no tags or description

Looks like no tags are added yet.

Study Analytics
Name
Mastery
Learn
Test
Matching
Spaced

No study sessions yet.

45 Terms

1
New cards

Decomposition

  • Analysing a complex problem

  • Breaking it down

  • Makes it more manageable

    • Without it is very hard to solve

2
New cards

Examples of decomposition

  • A crime

    • What crime

    • When it was committed

    • Where it was

    • What evidence

    • If any witnesses

3
New cards

Abstraction

  • Process of filtering out unnecessary characteristics of the problem

  • Can get a general idea of what the problem is

4
New cards

Example of abstraction

  • Finding volume of a rectangle

    • Only need height, width and length

    • Do not need hypothenuse or area

5
New cards

Benefits of subprograms

  • Small in size so easier to write

  • Easier for others to understand

  • Less program as repeated parts don’t have to get written out 10 times

6
New cards

Logical operators

  • AND

  • OR

  • NOT

7
New cards

Relational operators

  • <=

  • ==

  • >=

8
New cards

Syntax Error

  • Breaks the rules of grammar of the language

  • Spelling errors, indentation

9
New cards

Logic Error

  • Caused by incorrect or unwanted behaviours

  • Mixing up variable names, wrong arithmetic operator

10
New cards

Run time error

  • Cannot execute the instructions of the code

  • Causes crash

  • Index out of range, divide by zero

11
New cards

Standard algorithms

  • Linear search

  • Binary search

  • Bubble sort

  • Merge sort

12
New cards

Linear search

  • Find length of data set

  • Set counter to 0

  • Examine value held in list at counter value

  • Match?

    • Yes

      • Return message and end search

    • No

      • Increment counter

      • Repeat

13
New cards

Binary search

  • Set counter to middle position of list

  • If value a match, search ended

  • If less, divided in half and upper ignored

    • Vice versa

  • Search moves to midpoint of remaining items

  • Continue this until found

14
New cards

Bubble sort

  • Start at beginning of list

  • Compare first with second

  • If 1 bigger than 2

    • Swap

  • Compare THIS value with next

  • Repeat

  • Takes longer because more comparisons than merge sort

15
New cards

Merge sort

  • More complex

  • Uses divide and conquer

  • Takes unsorted list

  • Splits in half

    • Repeats until all elements are separated

  • Compares in pairs

  • When first member of pair has been sorted, its time for the second one

16
New cards

Pseudocode

  • Not a programming language

    • Simple way of writing code

17
New cards

Benefits of Pseudocode

  • Quickly convertible

  • Easy to understand

  • Does not matter if there are errors in syntax

18
New cards

Drawbacks of Pseudocode

  • Time consuming to produce

  • Hard to see how it flows

19
New cards

Benefits of Flowcharts

  • Easy to see how program works

  • International standard

20
New cards

Drawbacks of Flowcharts

  • Changes mean whole thing has to be re-done

  • Can become huge

21
New cards

Selection

  • Making a decision

  • Decides what will come next

  • If, elif

22
New cards

Iteration

Repeating a certain step until told otherwise

23
New cards

Count controlled vs condition controlled iteration

  • Count controlled

    • If count > 0:

    • For x in range:

    • Repeats until no longer validated

  • Condition controlled

    • While

24
New cards

Modulus

Finds remainder

25
New cards

Variables rules

  • Contains ONLY numbers and letters

  • At least one letter

  • Can be changed throughout running of code

  • Must be meaningful

26
New cards
27
New cards

Global Variables

  • Can be accessed throughout program

  • Has to have different name to local variable

28
New cards

Local Variables

Confined to subprogram

29
New cards

Constant

  • Cannot be changed while running

  • In uppercase

30
New cards

Types of data storage

  • Arrays

  • Records

  • Strings

31
New cards

Arrays

Stores data of same data type

32
New cards

Record

Stores data of different data types

33
New cards

String

Represents a sequence of letters

34
New cards

Test data types

  • Normal data

  • Boundary data

  • Erroneous data

35
New cards

Normal data

  • Sensible valid data

  • Can be processed

36
New cards

Boundary Data

Falls at boundary of any ranges

37
New cards

Erroneous data

Invalid input that won’t be accepted

38
New cards

Test plan

  • In a table containing

    • Test number

    • What should happen

    • What does happen

    • Type of test

39
New cards

Types of Debugging

  • Single step

  • Set break points

  • Watchers

40
New cards

Single step

Can step through lines of code one at a time

41
New cards

Set break points

When code stops at certain point

42
New cards

Watchers

Looks out for certain variables

43
New cards

Truth tables: AND

if any 0s = 0

44
New cards

Truth tables: OR

if any 1s: 1s

45
New cards

Order of procedures

Brackets

Not

And

Or

Brad Never Ate Oregano