Utilisateur
Whole numbers.
Decimal or whole number, 1.025 or -12.
Combination of all characters, fiushd32ud@.
True/False.
All characters (single), 4, a, £.
A set of steps/instructions needed to complete a software task.
A graphical representation of an algorithm.
A representation of an algorithm in which the algorithm resembles a simplified, generic programming language.
Start/Stop.
Input/Output.
Process.
Decision.
The removal of irrelevant detail in order to focus on the problem at hand.
Breaking down problems into smaller subproblems so that they are easier to solve.
Thinking about the logical steps required to solve a problem.
Looking for a value by going through the list one by one until you find it.
Looking at the middle of an algorithm and seeing if it's smaller or bigger than the value you're looking for.
A method of sorting a set of data by repeatedly stepping through the dataset and swapping any pairs that are in the wrong order.
Bubble sort is inefficient for large lists because it keeps comparing and swapping items even if most of the list is already sorted. This takes a long time as the number of comparisons grows quickly as the list gets bigger.
A control structure where the computer executes every instruction in the order in which they are written.
A control structure which contains instructions that DO NOT have to be executed in sequence (non-sequential). The executed instruction is selected based on a condition at that time.
A control structure which allows instruction to be repeated, either for a set number of times or based on the result of a condition.
A method of sorting a set of data by repeatedly comparing data items with previous items in a dataset, before inserting them into the correct position.
During the insertion sorting process, the data item being sorted at that time, will be compared with each previous data item.
A method of sorting a set of data by splitting the dataset up into its individual items and then continually pairing items from the dataset in order until the entire dataset has been ordered.
The processes of combining elements into a single entity
An operator is something which will perform an action on some data.
Built in functions that many programming languages have which can manipulate string data.
A sequence of characters (positioned together) within a string variable.
Yes
