The book discusses the first two types of loops in some detail but only mentions While...End While briefly. The illustration at the beginning of the lesson shows you the syntax of the While...End While loop. The structure is similar to the Do Loop so there isn't really a absolute need to have it in the language. In fact, it's exactly the same as ...
~~~~~~~~~~~~~~~~~~~~~~~~~
Do While [condition]
[statements]
Loop
~~~~~~~~~~~~~~~~~~~~~~~~~
Many programmers prefer the While ... End While loop because it's so clear and uncomplicated. Even if you don't use it yourself, you will see it in code written by others, so it's something you also need to know about.

