2.1 computational thinking Flashcards
computational thinking
think logically and apply techniques to solving
the problem should be solvable with an algorithm
definition of abstraction
taking away the unnecessaries to focus on essence of a problem //separation of physical and logical aspects of problem
reduce computational resources
need for abstraction
problems need to be formulated for computers to solve
examples of abstraction
queuing
London underground maps
google map
procedural decomposition
breaking problems into number of subproblems
for identifiable tasks
definition of structured program
it aims to improve clarity and quality of program, as well as maintainability
input, output , preconditions
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
use of input, output and preconditions
writing bug-free, reusable program components
definition of caching
temporary storage of data and instructions
e.g. web caching: storing html pages recently looked at
benefits of caching
-faster access to resource
-saving bandwidth
-reduce load in a client-server environment
drawback of caching
-slower performance if the resource could not be found from cache
-copy of resource not up to date
definition of good algorithm
clear steps , correct output
allow invalid inputs
must terminate
execute efficiently( few steps as possible)
able to be understand or modified by others