I n programming how does on know where to put loops and which one?

946 views

I n programming how does on know where to put loops and which one?

In: Other

6 Answers

Anonymous 0 Comments

When you want to perform an action over and over, like processing a record or doing some computations.

What type? It’s all based on a condition being met. It may be the length of a sentence, and doing something with each character. Or it may be counting down a number to zero.

When that condition is met, then the loop terminates and processing continues.

You are viewing 1 out of 6 answers, click here to view all answers.