Iteration is the process of repeating steps. Iteration allows algorithms to be simplified by stating that certain steps will repeat until told otherwise. This makes designing algorithms quicker and ...
FOR count FROM 1 TO 6 DO SEND ‘Coding is cool’ TO DISPLAY END FOR The first line of the program determines how many times the code is to be iterated. It uses a variable, in this case count, known as ...