Please enable JavaScript to use CodeHS

CodeHS Glossary


Sequencing General

Step by step execution of instructions in the order they are given. Sequencing is the natural control flow of a computer program. A program will sequentially execute each line of code one by one. We can modify this simple sequential flow of control using *control structures* like loops and if statements.