Iteration

Iteration is the repetition of a process. There are two types of iteration, For loops and while loops. A for loop is a count controlled loop whereas a while loop is condition controlled.

For loop example of FizzBuzz:

Fizzbuzz

While loop example:

While

Leave a comment