This document discusses different looping statements in VB.NET including While, Do, and For loops. While loops execute a block of statements repeatedly as long as a condition is true. Do loops can execute a fixed block of statements an indefinite number of times using the keywords While or Until. For loops enable executing a series of expressions multiple times using a loop index to count iterations from a start to end value.