Download to read offline




![ One of the Do Loop statements variations is the Do While and it executes as long as a condition is true (while a particular condition is true). Loop will get stops when condition is False. Exit DO can be use to exit from loop anytime. Syntax:- Do {While} condition statements [Exit Do] statements Loop](https://image.slidesharecdn.com/vb-180504165437/75/Do-Do-while-loop-net-Visual-Basic-5-2048.jpg)


The document discusses Do While loops in Visual Basic. It defines Do While loops as loops that execute as long as a condition is true. The syntax for a Do While loop is provided, with the condition specified after the Do While keywords. An example is given of a program that uses a Do While loop to print the multiplication table of a user-input number from 1 to 10. The document provides an overview of different loop types like For, While, and Do loops in Visual Basic.




![ One of the Do Loop statements variations is the Do While and it executes as long as a condition is true (while a particular condition is true). Loop will get stops when condition is False. Exit DO can be use to exit from loop anytime. Syntax:- Do {While} condition statements [Exit Do] statements Loop](https://image.slidesharecdn.com/vb-180504165437/75/Do-Do-while-loop-net-Visual-Basic-5-2048.jpg)

