U1: Principles of Computer Science Flashcards

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

What is Computational thinking?

A

Computational thinking is a problem solving process that can be divided into four steps

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

What are the four computational thinking steps?

A

Decomposition
Pattern recognition
Pattern generalisation and abstraction
Representation of problem elements

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

What is Decomposition?

A

Decomposition is the process of breaking a complex problem down into smaller, more manageable parts.

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

Describe the four stages of decomposition

A
  1. Identifying and describing problems and processes. Use language that matched the problems source to list problems and processes.
  2. Breaking down problems and processes into distinct steps. Decompose complex problems and processes into separate steps which, when taken together, can be reassembled correctly.
  3. Describing problems and processes as a set of structural steps. Document problems and processes as a set of structural steps.
  4. Communicating the key features of problems and processes to others as relevant. Discuss the problems and processes with other programmers or clients . Analyse the decomposed steps to identify any patterns.
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

Pattern recognition

A

Identifying recurring attributes in a problem or between different problems can make problem solving easier as you could have already solved a very similar problem previously so you therefore dont need to solve it again.

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

Outline the five key steps of pattern recognition

A
  1. Identify common elements or features (examine the problem, list elements or features of each problem, highlight common or repeating elements)
  2. Identifying and interpreting common differences between processes or problems (examine problem, list elements or features of each problem, highlight elements that are unique to each problem.)
  3. Identifying individual element within problems (examine the problems to identify inputs, processes (including functions and operations) and outputs that are present)
  4. Describing patterns that have been identified
  5. Making predictions that have been identified (for each pattern, determine how it could be used in the future or how it may appear in similar situations)
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

What is abstraction?

A

Abstraction is a concept where a system is split up into layers, with each layer hiding the complexity of the layer beneath it so programmers can use features without having to know exactly how they work.

The intricate processes are abstracted - removed

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

Pattern Recognition

A

Pattern generalisation happens when relationships between patterns can be identified and simple conditions can be drawn.

You can identify common elements and the relationship between the elements.

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

What is a variable?

A

Values in a pro

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