what is diff b/n these 2 programs
1) for i=5 to 1 step 2
msgbox "pass"
next
2_) for i=5 to 1 step -2
msgbox "pass"
next
Answer Posted / mano
the above answer is right but in second program pass wil display 3 times
| Is This Answer Correct ? | 6 Yes | 0 No |
Post New Answer View All Answers
Explain about scrrun.dll?
Which in-built function is used to format the number in the vbscript language?
Explain what is loose binding? Why is it not a good practice to use it?
please can you help me to get a code of flames using a visual basic 6
How can you create a file object to work with the files in the vbscript language?
What is the difference between javascript and vbscript?
how to write validation function for date in vb script
What is the use of the recordset object and which statement is used to create such an object?
Explain How do you create a recordset object in vbscript?
When are redim statement and preserve keyword used in the vbscript language?
Which command is used for writing text on a page?
Program to use input box and send even numbers into sheet1 and odd numbers into sheet2 and prime numbers into sheet3 using vbscript(QTP)?
Mention what is select case statement?
Explain the scope of the variables using dim, public, and private keywords respectively.
Write a Program to add 2 numbers without using operators (+,-) and without using third variable. Note: Use VBScript only Hint: You can use other operators like '/' & '*'(Division & Multiplication)