Write a script to print below pattern 5 4 3 2 1 5 4 3 2 5 4 3
5 4 5
Answer Posted / ravindra v
For i=1 to 5
For j=5 to i step -1
temp=temp&j
Next
print temp
temp=null
Next
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
An object is non standard object, i mapped it to standard object, eventhogh on mapping to standard object i cannot use the methods available on the standard object with the mapped object. How i can use those standard object methods with these mapped object. (((Note : dont tell that we can use virtual object as virtual object is to map nonstandard obj to standard obj)))
What is the latest version of qtp?
How you will rate urself in QTP in the range of 0 to 5
How to make qtp understand the difference amongst the same type of objects .suppose there are 5 check boxes in a page and I have to choose the 2nd one, how to do that through script?
What is the difference between a Function and Procedure in QTP?
Can we record using all the modes in a single script? Explanation with example is appreciated
How to test background color and dynamic images during run time can you put the check point for moving objects?
How to suppress warnings from the test results page?
How to data driven test for Win objects in QTP ?
Where we can use the synchronization?
Why do we use breakpoints in QTP?
What are the different types of recording modes in qtp? Which will be used when?
how we connect 1. qtp9.2 to the quality center9.0? 2. Load runner8.0 to the quality center9.0
Give me some real time point of way where exactly we can conduct audits?
Can we access the java methods in qtp. Because my requirement is to access the swt(for eclipse an it is java code) methods in qtp is it possible?