Computational thinking Flashcards

1
Q

What is abstraction?

A

Abstraction is removing unnecessary detail to create a more understanding and simple representation of reality

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

Why do we need abstraction?

A

Removes unnecessary complexity, saves time and resources

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

How much do you need to abstract?

A

You can add more details to make your abstraction closer to reality. If you abstract too much, your model may be too simplistic and not useful. If you abstract too little, your model will be too complex and may take up too many resources.

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

What is a precondition and why is it important?

A

A precondition is a condition that must always be true (or false) for our problem.

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

Why use reusable components when solving problems?

A

Saves us time as we don’t need to recreate.
We can import them and use them in many places. So when we want to make changes to the reusable component we only need to make that change once.
Our code will be shorter as we avoid duplication.
The reusable components would have been tested and would be reliable which would increase our code’s reliability.

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

Decomposition

A

Splits problem into sub-problems
Splits these problems further
until each smaller sub-problem can easily be solved

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

What is a primitive data type?

A

A data type provided by a programming language, e.g: real, float, integer etc.

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

What is a composite data type?

A

Composite data types are a combination of primitives and other data types. e.g: array.

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

What base is binary referred to?

A

Base 2

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

What base is hexadecimal referred to?

A

Base 16

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

What base is decimal/denary referred to?

A

Base 10

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

Why use hexadecimal?

A
  • A hexadecimal value is much easier to remember than a string of binary digits.
  • It is quicker to write, as hexadecimal only uses one character.
  • There is a less chance of making an error when typing hex characters rather than a string of 1’s and 0’s
  • It is used to define colours
  • It is very easy to convert to and from binary
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

Each individual digit in a binary value is referred to as what?

A

A bit

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

What is a byte?

A

8 bits

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

10 to the power of what bytes is a kB, MB, GB, and TB

A
  • kB = 10^3
  • MB = 10^6
  • GB = 10^9
  • TB = 10^12
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q

List the new prefixes and how many bytes they consist of

A

kibi KiB 2^10 bytes
mebi MiB 2^20 bytes
gibi GiB 2^30 bytes
tebi TiB 2^40 bytes

17
Q

What is the purpose of normalising a floating point binary number?

A

Ensures the maximum accuracy for a given number of bits

18
Q

Advantages of abstraction

A

efficiency
easy to see where to use functions
easy to identify reusable components