About 74,700 results
Open links in new tab
  1. Iteration - Iteration in programming - KS3 Computer Science ... - BBC

    Learn how to represent iteration in programming with Bitesize KS3 Computer Science.

  2. What Is Iteration? Definition, Loop Types, and Examples in Programming

    Iteration is the process of repeating a block of code until a condition is satisfied, achieved through loop constructs such as for, while, and do-while loops. By automating repetition, loops improve efficiency, …

    Missing:
    • computer science
    Must include:
  3. What is Iteration in Programming? Explained in Detail

    Iteration in programming is the process of repeating instructions or steps, known as loops allowing a computer to execute actions repeatedly within an algorithm.

  4. Sequencing, selection, and iteration | AP CSP (article) | Khan Academy

    Sequencing is the sequential execution of operations, selection is the decision to execute one operation versus another operation (like a fork in the road), and iteration is repeating the same operations a …

  5. Iteration - Wikipedia

    In computing, iteration is a technique that marks out of a block of statements within a computer program for a defined number of repetitions. That block of statements is said to be iterated. A computer …

  6. Iteration Statements in Programming - GeeksforGeeks

    Jul 23, 2025 · Iteration statements, commonly known as loops, are statements in programming used to execute part of code repeatedly based on condition or set of conditions. These constructs are …

  7. Programs and algorithms use iteration to perform repetitive jobs without requiring a large number of similar steps to be specified individually, as “Do the next step 1000 times.” Programming languages …

  8. What Is an Iteration in Computer Science? (With Components)

    Dec 15, 2025 · If you're programming repetitive processes, iteration can be extremely useful. In this article, we explain what iteration in computer science is, list the components of an iteration, discuss …

  9. Iterations | Definition & Types Of Iteration - Teach Computer Science

    Iteration is the term given to the repetition of a block of instructions (code) within a computer program for a number of instances or until a status is encountered. When the first group of instructions is carried …

  10. What is Iteration? Iteration Explained - goodspeed.studio

    Iteration is a fundamental concept in computer science and is used in many areas of programming, including web development, game development, and artificial intelligence. It is a powerful tool that …