About 15,400,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 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. …

  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? - 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 …

  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. Loops Explained: For, While, and Do-While Loops in Depth

    Loops are fundamental constructs in programming that allow us to execute a block of code repeatedly. They are essential for automating repetitive tasks, processing collections of data, …

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

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

  9. What is Loop? | Altcademy™

    Loop is a program that repeats a set of instructions until it is asked to stop. As an example, we can write a loop program to print out "Hello" 3 times. Loop is a fundamental concept in …

  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 …