S3U
All video lessons

Science / Grades 1-2

Programming basics: one step at a time

Read a tiny drawing program, predict the result, and fix a missing instruction.

Next: your worksheet

Programming Basics: Read a Tiny Program

Continue to worksheet
Not started 0s active

Checking sign-in...

Read the transcript

A plan a computer can follow

A program is a set of instructions a computer can follow. Today our program is a drawing plan. We will use simple words and pictures, not a complicated screen full of code. You can draw, point, or explain the steps out loud.

Start with nothing drawn

Imagine a blank page. The first instruction says draw a circle. Follow only that instruction for now. Our first picture shows the result: one circle. There is no dot yet and no line yet. Those instructions have not happened.

Add the next part

The second instruction says add one dot inside the circle. Now the drawing contains both the circle and the dot. We keep the work from the first step. Following a new instruction does not mean forgetting everything that already happened.

Finish the tiny program

The third instruction adds a line below the circle. Now all three instructions are finished. The picture is simple, but the habit is powerful: read a step, do what it says, and check the result before moving on.

Pause and predict

Imagine someone leaves out the third instruction. The first two instructions still happen in the same order. Pause and decide what the finished drawing would contain. Would the computer add the missing line because it guesses that you wanted one?

The missing line stays missing

Only the circle and the dot would be drawn. The program never asked for the line. A computer is not a mind reader with a keyboard. To get that line, we need to include a clear instruction that tells it what to do.

You can learn away from a screen

Fun fact: you can explore computer science with paper, cards, and puzzles, without running a computer program. Following a plan and checking its result are useful thinking skills. Our drawing plan is practice in those skills, not text you need to paste into software.

Make your thinking visible

Now trace the three instructions once more. Say what is present after each step. You do not need a perfect circle to explain a good plan. Continue to the worksheet to check the order, find a missing step, and choose a precise instruction.