Order Matters
CONCEPT: Programming languages execute (“do”) instructions in order (unless told to do otherwise… more about this later)
A program looks a bit like a long “to do” list; the first things on the list get done first
Each instruction is executed one at a time – then the computer goes on to execute the next instruction
Example: When you wrote your Web pages, the computer executed the HTML code in the order you of the statements you wrote.