Welcome to the Commands Series! In the last series — Programming for Kids: How Computers Think — you learned four big ideas that sit at the heart of every computer programme ever written: Input → Process → Output — every device takes something in, works on it, and gives something back Sequence — instructions must happen in the right order Decisions — computers choose different paths depending on the situation Loops — computers repeat steps until a stopping rule is met That series answered the question: how does a computer think? Now there is a new question: how do you actually talk to one? You understand what computers do. But to make them do what you want , you need to give them instructions. Those instructions are called commands — and learning how to write them well is the real starting point of programming. What You Learned Last Time Idea What It Means ------ -------------- Input → Process → Output Computers take information, work on it, give a result Sequence Instructions must follow a specific order Decisions Computers choose different paths based on conditions Loops Computers repeat steps, stopping when a condition is met What You Will Learn in This Series Post The Big Idea ------ ------------- What is a Command? Every action starts with a command — you give it, the computer does exactly that one thing Commands Need a Receiver A command only works when something is there to receive and understand it Giving Good Commands Commands must be specific — computers cannot guess what you mean Putting It All Together How commands, sequence, decisions, and loops work together in every programme You Are Already Giving Commands Every time you do any of these, you are sending a command to a computer: Press play on a music app → command: start playing Ask your phone "What time is it?" → command: tell me the current time Click a home button → command: go to the home screen Press pause in a video game → command: pause the game Tap the backspace key → command: delete one character to the left The computer is always waiting. The moment you give a command, it acts. This series is about understanding exactly how that works — and how to give commands that get the result you actually want. ✅ Start with the first post: What is a Command? The TV Remote