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

Which function allows you to instantiate an object given its programmatic identifier or progid?

0 Answers  


Explain about scrrun.dll?

0 Answers  


Hi everybady, i have faced few Qns in one of i attended interview, please help me out with these below Qns. 1. how to join values without using join function? 2. how to compare values without using String compare function? 3. input is Bangalore, but i need output like this below format, what is function to use and get this outcome B A N G A L o R E 4. Input is "CapGemini" but uotput should be like this "inimeGpaC" 5. Input is 1 1 2 1 2 3 1 2 3 4 1 2 3 4 5 Can someone let me know results of this Qns, please. Thanks.

2 Answers   CSS Corp,


Explain How do you create a recordset object in vbscript?

0 Answers  


How to search word in a string without using instring function?

1 Answers   CSS Corp,


what is the difference between modular and data and keyword driven framework

0 Answers  


Explain about the asc function?

0 Answers  


generic function for webedit box for web application

1 Answers  


How to find a latest file from any folder

3 Answers   Ness Technologies,


how to write code: to check whether the window of an Application Under Test exist or not . plz give with example

2 Answers  


Explain about the extension .hta?

0 Answers  


w r p syed then output was deys and click eysd and click ysde and click sdey and click deys and click eysd............

2 Answers   Cap Gemini, iGate,


Categories