Ask Question
23 March, 21:46

A while loop is somewhat limited, because the counter can only be incremented by one each time through the loop.

True False

+5
Answers (1)
  1. 24 March, 00:57
    0
    False

    Explanation:

    In a while loop we can increment the counter by any number that we wish. It is not that the counter can only be incremented by one each time through the loop.

    Below is an example of a while loop with counter incremented by 5 each time.

    int count=0; / /initialize count to 0

    while (count<50) { / /continue the loop till count is lesser than 50

    cout<
    count = count + 5; / /increment counter by 5 each time

    }
Know the Answer?
Not Sure About the Answer?
Find an answer to your question ✅ “A while loop is somewhat limited, because the counter can only be incremented by one each time through the loop. True False ...” in 📘 Computers and Technology if you're in doubt about the correctness of the answers or there's no answer, then try to use the smart search and find answers to the similar questions.
Search for Other Answers