answersLogoWhite

0


Best Answer

There are 3 type of loop

1 is for loop

2 is loop while

3 is loop untile

User Avatar

Wiki User

11y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: Definition of do loop while in visual basic?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

Write a note on indeterminate loop in visual basic?

Indeterminate loops in Visual Basic are loops that repeat for an unknown number of times. The programmer sets up the loop to repeat until a certain condition is reached, or while a certain condition is true.


How do you write a do while loop in visual basic to display the produc of even numbers between 1 and 10?

i=0 do if(i/2=0) msgbox(i) while(i<=10) wend


How do you calculate a loop in visual basic 2010?

For i as integer = 1 to 10 ....... Next i


What is the definition of 'nested' in C programming?

In C a structure within a structure is called nested. For example, you can embed a while loop in another while loop or for loop in a for loop or an if statement in another if statement.


Can you use for next and while loop in same program in gw basic?

yes for all Basic.


What is the most basic loop in c?

Answerthe answer to this question would vary from programmer to programmer... Basically for the embedded system programmer the while loop is more important and would be considered as basic. However for the application programmer the for loop is always a better option.AnswerThese are: LABEL-goto, while, for, do-while, and recursion, of course.


Definition of jump in loop?

It is a jump, which in a loop.


Programming With Visual Basic.NET?

Visual Basic .NET is the latest incarnation of Visual Basic. It is sometimes known as VB7, a misnomer on account of its incompatibility with VB6: new features and syntax within VB7 mean that a re-write, instead of a mere port, will be required to keep the upgrade treadmill going. The new facility of garbage collection allows for better memory management. There are many new object-oriented design features and higher levels of type safety. 1. To program in Visual Basic .NET, you compile straight from the command line with the .NET SDK, or use Microsoft's Visual Studio IDE or the open-source SharpDevelop ID. 2. Devising a form by hand will be a challenge if you aren't familiar with the language, so it's best to use a good form designer. 3. Start up a Visual Basic .NET IDE and make a Windows application. 4. Double-click on the form to see the code view. It will be something like: Public Class Form1 Inherits System.Windows.Forms.Form [Windows Form Designer generated code] Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load End Sub End Class 5. Put this code in the Form_Load Sub between “Private Sub” and “End Sub”: MessageBox.Show("Hello World!") 6. Press F5 or go to the debug menu, then select Start to run the program. An alert box will appear containing the words “Hello World!”. Then the main window, empty, will open. Click the “X” of the title bar to exit. 7. Variables are set like this: Dim varName As varType ...where Dim is short for “dimension”, varName is the variable name and varType is the variable type. Types include integer, char, date and string. 8. Constants are, well, constant. Const cnstMyConstant As String = "Bing tiddle tiddle bong" 9. An array contains more than one datum. Dim MyArray(5) As Integer ...contains five values. 10. Branching is done with If/ElseIf/Else and Select Case. 11. The are several ways to loop. The first is Do...Loop Until: Do ' Loop code Loop Until condition 12. Next is Do ...Loop While: Do ' Loop code Loop While condition 13. Then we have Do Until …Loop: Do Until condition ' Loop code Loop 14. Do While...Loop: Do While condition ' Loop code Loop 15. Next is For: For a = 1 To 10 ' Loop code Next Visual Basic .NET is one of but a few languages written specifically for the CLR and the .NET framework. These are its most basic aspects. The actual commands in your code are just like every other version of Basic you ever used, making writing in Visual Basic .NET a very reasonable proposition.


What is the purpose of wend statement in while loop in gw-basic?

While--wend statement is used to execute a loop until a given condition is true.if the condition is false the loop ends and the program continous to the line following eend.


What is a nested loop in java?

A nested loop is a (inner) loop that appears in the loop body of another (outer) loop. The inner or outer loop can be any type: while, do while, or for. For example, the inner loop can be a while loop while an outer loop can be a for loop.


What are the similarities of while loop and a do while loop?

They both loop


What is the definition and syntax of for next loops?

loop within in a loop is called for next loop