ID | Skill_name |
---|---|
3.1.1.1 | I can understand and explain the term algorithm. |
An algorithm is simply a sequence of steps used to solve a problem, like a recipe. See right. Our recipe might tell us how to create an apple pie or lemon cake.
To get a computer to do something we have to tell it what to do. We do this by using a set of instructions. These instructions are called algorithms.An algorithm has a defined outcome – a defined end. Algorithms can be written in many different ways. Each way has a different cost, different speed and requires different external hardware.
You are creating an algorithm every time you write a program. You are creating a set of steps to perform a task. Before we create a computer program we write it out in one of two ways.
1. As a set of intructions like a recipe.
2. As a flowchart.
area= width x length. display "what is the room's width?". input width. display "what is the room's length?". input length. display area.
Recent Comments
Teacher Date: 2025-09-28
Guest