Loops

From Computer Science Wiki
Revision as of 08:25, 1 October 2018 by Mr. MacKenty (talk | contribs)
This is a basic concept in computer science

In computer programming, a loop is a sequence of instructions that is continually repeated until a certain condition is reached or a condition is declared FALSE. Typically, a certain process is done, such as getting an item of data and changing it, and then some condition is checked such as whether a counter has reached a prescribed number. If it hasn't, the next instruction in the sequence is an instruction to return to the first instruction in the sequence and repeat the sequence. If the condition has been reached, the next instruction "falls through" to the next sequential instruction or branches outside the loop. A loop is a fundamental programming idea that is commonly used in writing programs.

An infinite loop is one that lacks a functioning exit routine . The result is that the loop repeats continually until the operating system senses it and terminates the program with an error or until some other event occurs (such as having the program automatically terminate after a certain duration of time) [1].


Introduction[edit]

This is one of the better videos I've seen on loops. Content gratefully used with permission : [2]. The video uses programming syntax from the C programming language, but the main ideas are helpful in understanding loops.


Do you understand this topic?[edit]

  • Define a loop
  • List two reasons why you might use a loop in a computer program

Do you have an advanced understanding about this topic?[edit]

  • Write a program that uses loops to get something done
  • Write a flowchart that uses loops in a normal decision (perhaps what's for dinner)

Standards[edit]

  • Construct algorithms using loops, branching.

References[edit]