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
Answers were Sorted based on User's Feedback
Answer / veer
From the first one will not display any message box because the condition is not true but it shows result as "done" in the result window .
From the second one will display a message box "pass" 3 times
| Is This Answer Correct ? | 8 Yes | 0 No |
Answer / mano
the above answer is right but in second program pass wil display 3 times
| Is This Answer Correct ? | 6 Yes | 0 No |
Answer / manisha
In the first one it will not display any result.Because the
condition given is wrong .
In the second one the result is displayed as pass for 3
times.
Condition for ForLoop:-
the limit must be in increament order (OR) if the limit is
decreament order we have to mention "Step -n",where n is
to skip or jump .
In the above example:-
For the 1st - no result
for the 2nd - The result is displayed as pass for 3 times.
because for i=5 to 1 step -2
i=5
i=3(jumped to 5-2=3)
i=1(jumped to 3-2=1)
| Is This Answer Correct ? | 5 Yes | 0 No |
Answer / ankit
the first one will not print any message because the
condition is not true
the second one will print message pass 2 times
| Is This Answer Correct ? | 1 Yes | 4 No |
How to write VB Script for selecting a particular row in a WebTable?
What is the use of the recordset object and which statement is used to create such an object?
I have attended Anovatek Software QTP interview. They will give us computer and one web based application with QTP. We have to automate some records (already updated records or new records) using QTP Data driven testing. But we should use for loop? Can any one know how to do data driven testing using For loop?
What is the difference between Javascript & Vbscript?
1) How can we use VB script in testing the application? 2) What all are the things(Software application to be installed in PC) we need to learn VBscript?
How are comments handled in the vbscript language?
How to make sure that items in a wintree are sorted al?
Explain the arrays in vb script?
What is parametrization ?
how to increasing the numbers in a given text box please write a vb script
Differentiate javascript and vbscript?
Write a vbscript procedure that converts feet to inches. Hint: there are 12 inches in a foot?