Differences in Loops
Should you use a For loop where you might use a Do ... While loop or a While loop? Does it make a difference when or where you use the different loops?
If a loop is to have one performance for each count of a control variable from some minimum value up to some maximum value, what is the preferred type of loop and why?
What loop is preferred when there is no knowledge of the number of performances of the loop body before exit from the loop?