Computer Science AS OCR
-
1-1-structure-and-function-of-the-processor as5 主题
-
1-2-types-of-processor as3 主题
-
1-3-input-output-and-storage as2 主题
-
2-1-systems-software as8 主题
-
2-3-software-development as5 主题
-
2-4-types-of-programming-language as4 主题
-
3-1-compression-encryption-and-hashing as3 主题
-
3-2-databases as3 主题
-
3-3-networks as8 主题
-
3-4-web-technologies as13 主题
-
html as
-
css as
-
css-styling as
-
javascript as
-
variables-and-constants-in-javascript as
-
outputs-in-javascript as
-
selection-in-javascript- as
-
for-loops-in-javascript- as
-
while-loops-in-javascript- as
-
strings-in-javascript- as
-
operators-in-javascript- as
-
nested-statements-in-javascript as
-
functions-and-procedures-in-javascript as
-
html as
-
4-1-data-types as8 主题
-
4-2-data-structures as4 主题
-
4-3-boolean-algebra as1 主题
-
5-1-computing-related-legislation as4 主题
-
5-2-moral-and-ethical-issues as9 主题
-
6-1-thinking-abstractly as3 主题
-
6-2-thinking-ahead as1 主题
-
6-3-thinking-procedurally as3 主题
-
6-4-thinking-logically as2 主题
-
6-5-thinking-concurrently as2 主题
-
7-1-programming-techniques as9 主题
-
8-1-standard-algorithms-and-big-o-notation as8 主题
the-nature-of-abstraction as
Exam code:H046
The Nature & Need of Abstraction
What is the nature and need for abstraction?
-
Abstraction is the process of removing unnecessary details of a problem to focus on the important features to implement in a solution
-
Examples of abstraction include modelling a real life object, environment, action, sequence of actions or concept. Implementations of these include:
-
a simulator such as a car or flight simulator,
-
a representation of a building or house in a program or game or,
-
a map of a bus or train route in a city
-
-
When creating a program, developers must identify important features that will contribute to solving the problem or have a role to play in the solution
-
A specific example of abstraction would be the London underground train route map; travellers do not need to know the geographical layout of the routes, only that getting on at stop A will eventually transport you to stop B

London Underground train route map
Source: Wikipedia (opens in a new tab)

The geographical London underground train map
Source: Wikimedia (opens in a new tab)
-
Another example of abstraction would be implementing the trajectory of a projectile, such as a ball or dart, or the physics of a snooker ball on a snooker table
-
Is gravity or air resistance taken into account, if applicable? Is friction?
-
-
The closer the implementation is to reality, the less abstract the solution becomes
-
Pong is an example of a highly abstracted game of tennis or badminton
-
The momentum of the ball is constant and there are no extraneous factors that affect the game such as friction or gravity
-
Responses