A pre-test or entry-condition loop
All of the loop structures in this lesson were implemented using a while loop.
A while loop is know as an entry-condition loop.
This is because the conditional test is performed before the code in the body of the loop is executed.
(Cont'd on next slide.)