About 38,800 results
Open links in new tab
  1. Looping - Modélisation Conceptuelle de Données

    Mar 7, 2025 · Looping est un logiciel de modélisation conceptuelle de données entièrement gratuit et libre d'utilisation.

  2. Looping - Conceptual Data Modeling

    Jul 3, 2025 · Looping est un logiciel de modélisation conceptuelle de données entièrement gratuit et libre d'utilisation.

  3. JavaScript For Loop - W3Schools

    W3Schools offers free online tutorials, references and exercises in all the major languages of the web. Covering popular subjects like HTML, CSS, JavaScript, Python, SQL, Java, and many, many more.

  4. Loop (statement) - Wikipedia

    A conditional loop (also known as an indeterminate loop[2]) is a loop that determines whether to terminate based on a logical condition. [3] These loops are flexible, but their exact behavior can be …

  5. LOOPING Definition & Meaning - Merriam-Webster

    6 days ago · 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 …

  6. Home | Looping App

    With Looping, you keep an overview. No matter what comes. Whether it's regular reminders for tasks, coordination in various circles of friends, shared shopping lists in the household, or recommended …

  7. Python For Loops - W3Schools

    Python For Loops A for loop is used for iterating over a sequence (that is either a list, a tuple, a dictionary, a set, or a string). This is less like the for keyword in other programming languages, and …

  8. Loops in C - GeeksforGeeks

    Dec 6, 2025 · There are 3 looping statements in C: Let's discuss all 3 types of loops in C one by one. for Loop for loop is an entry-controlled loop, which means that the condition is checked before the loop's …

  9. Java Loops - GeeksforGeeks

    Jun 15, 2026 · Types of Loops in java Java provides different types of loops that allow a block of code to be executed repeatedly based on a specified condition. 1. for loop The for loop is used when we …

  10. Loops and iteration - JavaScript | MDN - MDN Web Docs

    May 21, 2026 · Loops offer a quick and easy way to do something repeatedly. This chapter of the JavaScript Guide introduces the different iteration statements available to JavaScript.