write a vb script to generate hello 5 times using do until
loop

Answers were Sorted based on User's Feedback



write a vb script to generate hello 5 times using do until loop..

Answer / abhishek mallabadi

dim ivar
ivar=0
do until ivar=5
msgbox "hello"
ivar=ivar+1
loop

Is This Answer Correct ?    3 Yes 0 No

write a vb script to generate hello 5 times using do until loop..

Answer / monika

dim ivar
ivar=0
do
msgbox "hello"
ivar=ivar+1
loop until ivar=5

Is This Answer Correct ?    0 Yes 0 No

write a vb script to generate hello 5 times using do until loop..

Answer / monika

dim ivar
ivar=5
do until ivar=0
msgbox "hello"
ivar=ivar-1
loop

Is This Answer Correct ?    0 Yes 0 No

write a vb script to generate hello 5 times using do until loop..

Answer / mudaseer

dim ivar
ivar=5
do until ivar=1
msgbox "hello"
ivar=ivar-1
loop

Is This Answer Correct ?    0 Yes 4 No

Post New Answer

More VB Script Interview Questions

how do you make the variable declaration mandatory?what is the use of "option explicit"?

2 Answers  


write a vb script to generate the following pattern ***** **** *** ** *

7 Answers   Blue Star,


Which constant is used for print and display functions and works as same as pressing enter key?

0 Answers  


Compare java script and vb script?

0 Answers  


What purpose does ‘on error resume next’ serves?

0 Answers  






how to answer "TELL ME ABOUT UR SELF" as exp.person. whr to start and whr to stop. can anyone tel me

0 Answers  


Is VB Script Case sensitive or Case insensitive?

0 Answers  


Explain what is loose binding? Why is it not a good practice to use it?

0 Answers  


Which operator can be used to check if two numbers are equal or not in vbscript?

0 Answers  


Can anyone send me a vb script function for verifying the functionality of active links on a web page

0 Answers   Zensar,


If anyone knows abt Test Complete material, Pls let me Know. if u have any material or any documents..... Pls mail me on this mail Id...... This is very Urgent Requirment..... for my Project.....

3 Answers  


what does create object actually do when you call it in vbscript?

1 Answers   Cap Gemini,


Categories