Loops

From Computer Science Wiki

Exclamation.png This is an important concept. You should fully understand this.

This is a basic concept in computer science

In computer programming, a loop is a sequence of instruction s that is continually repeated until a certain condition is reached. 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].


Intorduction[edit]

This is one of the better videos I've seen on loops. Content gratefully used with permission : [2]


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]

See Also[edit]

References[edit]