Ask Question
4 January, 11:55

A loop that repeats a specific number of times is known as a (n) :

+1
Answers (1)
  1. 4 January, 13:54
    0
    A loop that repeats a set number of times is a for loop.

    Python example:

    for x in range (1, 10, 1):

    #logic

    C example:

    for (int i = 0; i < 5; i++)

    {

    //logic

    }
Know the Answer?
Not Sure About the Answer?
Get an answer to your question ✅ “A loop that repeats a specific number of times is known as a (n) : ...” in 📙 Computers & Technology if there is no answer or all answers are wrong, use a search bar and try to find the answer among similar questions.
Search for Other Answers