About 346,000 results
Open links in new tab
  1. Loops in Programming - GeeksforGeeks

    May 17, 2024 · 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 …

  2. Looping - Wikipedia

    Looping (education), the practice of moving groups of children up from one grade to the next with the same teacher Loop (computing), a sequence of statements which is specified once but …

  3. Live looping - Wikipedia

    Live looping is the recording and playback of a piece of music in real-time [1] using either dedicated hardware devices, called loopers or phrase samplers, or software running on a …

  4. Looping - definition of looping by The Free Dictionary

    Define looping. looping synonyms, looping pronunciation, looping translation, English dictionary definition of looping. n. 1. a. A length of line, thread, ribbon, or other thin material that is curved …

  5. C - Loops - GeeksforGeeks

    Jul 9, 2025 · Loops in C programming are used to repeat a block of code until the specified condition is met. It allows programmers to execute a statement or group of statements multiple …

  6. What is Looping? - Definition from Amazing Algorithms

    Looping is a programming technique where a block of code is executed repeatedly until a specified condition is met, allowing for efficient execution of repetitive tasks and iterating …

  7. Loops in Python - For, While and Nested Loops - GeeksforGeeks

    Jun 19, 2025 · Loops in Python are used to repeat actions efficiently. The main types are For loops (counting through items) and While loops (based on conditions). In this article, we will …

  8. Loops: exercises and theory - CodinGame

    In computer science, a loop is a programming structure that repeats a sequence of instructions until a specific condition is met. Programmers use loops to cycle through values, add sums of …

  9. Python Loops: A Comprehensive Guide for Beginners

    Sep 18, 2023 · Looping is a fundamental aspect of programming languages. It allows you to execute a piece of code repeatedly until some exit condition is met, at which point the program …

  10. Looping - UIUC CS 101

    Write syntactically correct code using loops. Use a for loop to process elements of a list. Use range to count the number of times a loop runs. Use while to repeat a task until something …