About 40,600,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. Understanding Loops: The Power of Repetition in Programming

    Apr 2, 2025 · Loops are a fundamental concept in programming, enabling developers to perform repetitive tasks efficiently. They allow code to execute a set of instructions multiple times, …

  6. 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 …

  7. 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.

  8. 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. …

  9. LOOP Definition & Meaning - Merriam-Webster

    The meaning of LOOP is a curving or doubling of a line so as to form a closed or partly open curve within itself through which another line can be passed or into which a hook may be hooked.

  10. 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 …