Write a script to print below pattern
5 4 3 2 1
5 4 3 2
5 4 3
5 4
5
Answer Posted / vishnu
For i=5 to 1 step -1
temp = temp & i
Next
For i=5 to 1 step -1
print temp
temp = left(temp,i-1)
Next
Is This Answer Correct ? | 0 Yes | 3 No |
Post New Answer View All Answers
When QTP object wait time is 10 seconds, and in test script wait time is 5 seconds and in function library wait time is 2 seconds how much time does the wait occur? or which is given priority.
write a script to verify the image path(src property) of the images which are in web pages.
Explain the new feature of UFT regarding the export of test results?
How to add synchronisation points in qtp?
How to use parameterization in qtp?
For which type of project the iterative model is suitable?
how to create flat file datasubmission in qtp
How can i check items sorted or not in a weblist ? Give me the script for this...
Explain in brief about the quicktest professional automation object model?
I want to open a Notepad window without recording a test and I do not want to use System utility Run command as well. How do I do this?
What are the types of data tables in qtp?
Tell some commonly used Excel VBA functions?
we add library file used in test via settings or through "ExecuteFile" command. when we implement framework do we make common library file and load the same for all the test cases execution?
I created 3 actions in test suppose I want to run action 1 in single time, action 2 is 4 time what I do?
What is the difference between run time object and test object in QTP?