Difference between Do while loop and while wend loop
Answer / remya
The difference between do while and while wend loop .
Do while executes if the condition is true
While wend executes atleast once irrespective of conditions.
Ex:
Do while
Dim x
x=1
Do While x<5
document.write("Welcome.")
x=x+1
Loop
While wend:
Dim x
x=7
Do
document.write("Welcome.")
x=x+1
Loop While x<5
| Is This Answer Correct ? | 7 Yes | 7 No |
Illustrate briefly about the different types of statement
How to pass argument by reference to a function in vbscript?
Give me sm ideas to write Vbscripts abt protocol testing abilash700@gmail.com.
What is string concatenation function in VBScript?
best training centre in bangalore
How many data types are supported in Vbscript?
How to Import data from a file (file is on the desktop) to the data table
How can you create an object in vbscript?
Difference between Function and Sub routine?
write a vb script to find the size of d drive?
How to Convert Hex color code to color name in VB Script?
how to write basic programs in VB Script like addition, multiplication?