2.1 computational thinking Flashcards

1
Q

computational thinking

A

think logically and apply techniques to solving
the problem should be solvable with an algorithm

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

definition of abstraction

A

taking away the unnecessaries to focus on essence of a problem //separation of physical and logical aspects of problem

reduce computational resources

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

need for abstraction

A

problems need to be formulated for computers to solve

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

examples of abstraction

A

queuing
London underground maps
google map

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

procedural decomposition

A

breaking problems into number of subproblems
for identifiable tasks

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

definition of structured program

A

it aims to improve clarity and quality of program, as well as maintainability

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

input, output , preconditions

A

input:information relevant to the problem

output:solution to the problem

preconditions: e.g. there must be a base case, list must not be empty

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

use of input, output and preconditions

A

writing bug-free, reusable program components

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

definition of caching

A

temporary storage of data and instructions
e.g. web caching: storing html pages recently looked at

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

benefits of caching

A

-faster access to resource
-saving bandwidth
-reduce load in a client-server environment

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

drawback of caching

A

-slower performance if the resource could not be found from cache
-copy of resource not up to date

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

definition of good algorithm

A

clear steps , correct output
allow invalid inputs
must terminate
execute efficiently( few steps as possible)
able to be understand or modified by others

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