About 42,300,000 results
Open links in new tab
  1. What is a Loop? - W3Schools.com

    What is a Loop? A loop runs the same code over and over again, as long as the condition is true. The simulation below uses a loop to roll dice until the result is 6, counting how many times the …

  2. What Is a Loop? - Computer Hope

    Sep 7, 2025 · A loop is a program or script that repeats the same instructions or processes the same information over and over until receiving the order to stop. If not handled properly, a loop …

  3. What Are Loops in Computer Programs? - ThoughtCo

    Apr 30, 2025 · Loops repeat actions until a condition is met, making programming tasks more efficient. There are different types of loops, like 'for', 'while', and 'do while', each with unique …

  4. What is a Loop in Programming? Definition, Types & Examples

    May 13, 2025 · A loop is a programming construct that allows instructions to be executed repeatedly until a specified condition is met or false. This fundamental control structure …

  5. Loops in Programming - GeeksforGeeks

    Jul 23, 2025 · Loops, also known as iterative statements, are used when we need to execute a block of code repetitively. Loops in programming are control flow structures that enable the …

  6. What Is a Loop in Computer Programming? - phoenixNAP

    Apr 29, 2024 · In programming, a loop is a control structure that repeatedly executes a block of code as long as a specified condition holds true. This repeated execution continues until the …

  7. What Even Is a Loop? A Beginner’s Guide Without the Jargon

    Apr 17, 2025 · What Is a Loop in Programming? (Plain English) Let’s break it down. A loop is just a tool that helps a program repeat something. That’s it. Want to blink 10 times? That’s a loop. …

  8. What is loop? | Definition from TechTarget

    Dec 15, 2021 · In computer programming, a loop is a sequence of instructions that is continually repeated until a certain condition is reached.

  9. For loop - Wikipedia

    In computer programming, a for loop is a structured control flow statement that repeatedly runs a section of code until a condition is satisfied. A for loop has two parts: a header and a body. …

  10. A Beginner's Guide to Loops - DEV Community

    Nov 30, 2024 · They are tools that let your program repeat actions until a certain condition is met. Conditions return true or false. A loop will continue running until the defined condition returns …