A loop; repeatedly executes a block of code as long as a condition is true, in other words it is useful when you want to repeat code until a specific condition is met ...
The second form of conditional loop is known as a post-test conditional loop. This form of repetition will check the condition after the commands have been executed, initiating another execution of ...