answersLogoWhite

0


Best Answer

Iteration is the continuous repetitition of an operation or procedure.

Though it has application in mathematics, the term is heavily used in computer programming where it is a technique for repeating an instruction as a means of getting an answer, e.g., if you want to know how many 7s there are in 50, then keep subtracting seven from fifty until there isn't enough left. That's iteration. It is also associated with loops. Programming languages have various types of loop commands to perform iteration.

An example of the mathematical application is in the wonderfully simple and elegant area of fractals.

User Avatar

Wiki User

13y ago
This answer is:
User Avatar
More answers
User Avatar

Wiki User

10y ago

Iterations means how many rounds a block of code is runs for. For example, for(int i = 1; i <= 4; i ++) will run 4 times because the iterator (counter) will count from 1 to 4

This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: What does iteration mean?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

What is iteration in data warehouse?

what is iteration?


What does continuous integration mean in the context of an iterative lifecycle?

Integration at the end of very iteration


What does the word iteration mean?

The meaning of the word iterative, which is an adjective, indicates that an action is frequent and repetitive in nature. Often the adjective iterative is applied to the subjects of mathematics, computation and grammar.


What statement is used to skip the remainder of the body of a repetition structure and proceed with the next iteration of the loop?

The continue statement skips the remaining statements in the current iteration and execution proceeds with the iteration control statement for the next iteration.


What does iteration mean in ict?

i want the answers not to answer it come on :( mas mildly amused smile=mas lol


Each successive use of a rule is called a?

In geometry it's called and ITERATION.


What can be used as a rule to determine how many segments the cantor dust fractal has after the sixth iteration?

Counting the whole square as iteration 0, there are 46 = 4096 segments after iteration 6.


What is similar to iteration?

Aggregate


Is there a fancy word for repetition?

iteration


What is a do-while loop?

A while loop evaluates the conditional expression at the start of each iteration, whereas a do..while loop evaluates the conditional expression at the end of each iteration. Thus the do..while loop always executes at least one iteration.


When is Iteration used in a Java program?

in a loop


Each repetition of a loop is known as a?

an iteration.