Selection

An is a plan, a set of step-by-step designed to solve a problem. When designing algorithms there are three basic building blocks (constructs) that can be used:

Algorithms are used to help design that perform particular tasks.

What is selection?

An explanation of selection, as used in algorithms and programming

Selection is a decision or question.

At some point, a program may need to ask a question because it has reached a step where one or more options are available. Depending on the answer given, the program will follow a certain step and ignore the others.

Selection is making a decision on which logical path to follow. In a theme park, the queuing system for a roller coaster might read 'IF front row, queue here, else, all other rows queue here'.

Why is selection important?

Many solutions feature several choices or decisions. These decisions lead to different paths through the program. These paths represent the result of making a choice. Without selection it would not be possible to include different paths in programs, and the solutions we create would not be realistic.

Selection in programming

Once an algorithm has been designed and perfected, it must be translated – or – into code that a computer can read.

We create programs to algorithms. Algorithms consist of steps, where programs consist of .

Selection is implemented in programming using IF statements.