answersLogoWhite

0

Cleaning out the loops is essentially removing redundant lines of code in a program. Sometimes having too many of the same codes can slow the program down and cause it to not work as efficiently.

User Avatar

Wiki User

11y ago

What else can I help you with?

Related Questions

When was the loop created?

The first loops in programming were actual loops of the punched tape, 50-60 years ago.


In software programming the repetition of various steps is called?

Repetitive code is usually called a loop. Loops are usually iterative, however recursive loops are also possible.


Is the Swarm at Thorpe Park going to have loops?

By loops do you mean a vertical loop, or inversion? They will have inversions, but no loops.


What is meant by for loop in C programming?

loops execute a set of insructions repeatedly for a certain numbers of times..


What are you use of loops?

A loop is used in programming to repeat a set of commands in the program when a task is a repetitive one


What is the difference between radial and ulnar loops?

Why are you posting a question to do with finger print identification in several computer programming wikies.


What is the purpose of java?

Curtly, portability and clean programming


Why do we avoid loops in programming?

We don't avoid loops in programming. Loops are a fundamental feature of many algorithms. If we need to iterate over a data sequence in order to perform the same set of operations upon each data element, we would use an iterative loop. If we need to repeatedly reduce a larger problem into one or more smaller instances of the same problem until the problem is small enough to be solved we'd use a recursive loop.


What is repetition control structure?

Repetitive control structures are loops like the do while loop and the for loops. They repeat and execute the same set of instruction until the condition stated in the while or for loop ceases to be true. After which it will exit the loop and continue down the program.


What are arches loops and whirls mean in crime investigation?

They are referring to types of finger prints, generally you either have whirls or arches and loops


What is the Eligibility to do ASPNET?

No need to have specific eligibility.. u shou;d have knowledge of basic C programming topics(Functions, Loops, Class, etc).


What is looping in programming languages?

In programming, a "loop" is a piece of code that is allowed to execute repeatedly until a condition is met. Under C, there are "for" and "while" loops. Other languages have "foreach" and "repeat..until" loops. A "for" loop optionally sets a variable at a certain value, and then executes a block of code while that (and perhaps other variables) meet(s) certain conditions. "While" loops are simpler types of loops since they only loop while a condition is met - variables are set before the "while" statement. See the related links below for more information on looping in C.