Write a script to print below pattern 5 4 3 2 1 5 4 3 2 5 4 3
5 4 5
Answer Posted / pravati
Write a script to print below pattern 5 4 3 2 1 5 4 3 2 5 4 3 5 4 5
x="5 4 3 2 1 5 4 3 2 5 4 3 5 4 5"
y=split(x," ")
msgbox ubound(y)
For i = 0 to ubound(y) Step 1
msgbox y(i)
Next
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
what QTP Options do you know?
On what document base Descriptive programming is written if build is not yet ready ?
Suppose you are using shared objects repository in your test and you want to split your present action? At that time shared object repository is single or it’s also splits?
How many types of parameters are available in quicktest professional?
How to build scripts that access data from external sources?
How does qtp identify the object in the application?
what is the frame work in J-meter?
Brief the process of testing with UFT?
How to find the length of the string in qtp?
When to use shared and local object repository?
How extensive or customized are the server logging and reporting requirements; are they considered an integral part of the system and do they require testing?
Suppose I want fail that check point? How can you do that?
Suppose I created one object as virtual object? That object is applicable to that test? Or all the tests?
Where is the resultset of a sqlquery (which is fired by rsobj.open sqlquery,xxxx,xxxx) stored ?
How to use Environment parameterization? Explain with an example.