Computational Thinking and Problem Solving Flashcards

You may prefer our related Brainscape-certified flashcards:
1
Q

What is meant by computational thinking?

A

It is a problem solving process where a number of steps are taken in order to reach a solution, rather than relying on rote learning.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

What are the 5 steps of computational thinking?

A
  • Abstraction
  • Decomposition
  • Data Modelling
  • Pattern Recognition
  • Algorithm Design
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

What is meant by abstraction?

A

Filtering out information not necessary to solve the problem.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

Why use abstraction?

A

Power to deal with complexity. An algorithm is an abstraction of a process that takes inputs, executes a sequence of steps, and produces outputs

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

What is meant by decomposition?

A

Breaking tasks down into smaller parts in order to explain a process more clearly aka step-wise refinement

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

What is meant by data modelling

A

Analysing and organising data and making decisions in what to use when creating a program - such as composite data types, or arrays (if we have groups of data needing to be stored), or text files, or even databases. It also covers user-defined data types and how we build data models (object oriented programming) were we can build data models by defining classes.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

What is meant by pattern recognition?

A

Looking for patterns or common solutions to common problems and making the most of these to complete tasks in efficient and effective ways

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

Give examples of standard algorithms you can use to solve standard problems

A

Insertion Sort, Binary Search, Bubble Sort

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

Explain what is meant by Algorithm design

A

Developing step-by-step instructions to solve a problem

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

State the purpose of a bubble sort algorithm

A

is a simple sorting algorithm that repeatedly steps through the list to be sorted, compares each pair of adjacent items and swaps them if they are in the wrong order. The pass through the list is repeated until no swaps are needed, which indicates that the list is sorted.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

State a problem with bubble sort algorithms

A

Slower and less efficient than Insertion sort.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly