Ask Question
13 June, 20:05

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

+1
Answers (1)
  1. 13 June, 20:29
    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?
Find an answer to your question 👍 “A loop that repeats a specific number of times is known as a (n) : ...” in 📗 Computers & Technology if the answers seem to be not correct or there’s no answer. Try a smart search to find answers to similar questions.
Search for Other Answers