Understanding Abstraction

In computer science, abstraction is a technique for managing complexity of computer systems. It works by establishing a level of complexity on which a person interacts with the system, suppressing the more complex details below the current level.

In order to create complex computer system, computer scientists have to look at the big picture first to clearly identify the problem they want to solve and progressively elaborate a solution to solve this problem. This is the concept of abstraction, which can be broken down in a few set of steps. Each step enables computer scientists to add more details on how they will solve their problem.

Abstraction Step 1: Problem Definition:


It is essential to clearly identify the problem that we want to solve. To do so it is essential to understand the needs of the end-user and the difference between computerised models and the reality.

abstraction-step-1

For this blog post, we are going to focus on the following problem:
How can we create a computer program used in the Google car to inform the passengers on the directions for their journey as well as to provide them with factual information such as estimated mileage and duration of their journey?

Abstraction Step 2: Identify the inputs and outputs of our solution:

abstraction-step-2

In our scenario we have the following inputs and outputs:

abstraction-step-2b

Abstraction Step 3: Identify the main components of our problem:


In our scenario we have identified four main components as follows:

abstraction-step-3

Abstraction Step 4: Identify potential for code reusability by:


  • Using existing libraries,

  • Defining functions and procedures,

  • Using Object Oriented concepts such as the use of Classes and objects.

abstraction-step-4

Abstraction Step 5: Design the programming algorithms:


Design the algorithms for every element of the solution. These algorithms will be based on the key procedural programming concepts: Sequencing, Selection and Iteration.
These algorithms will also rely on the use of variables and appropriate data structures.

abstraction-step-5

Did you like this challenge?

Click on a star to rate it!

Average rating 4 / 5. Vote count: 6

No votes so far! Be the first to rate this post.

As you found this challenge interesting...

Follow us on social media!

Tagged with: