Write a script to print below pattern
5 4 3 2 1
5 4 3 2
5 4 3
5 4
5
Answers were Sorted based on User's Feedback
Answer / lakshmi
for i=1 to 5
for j=5 to i step -1
temp=temp & " "& j
Next
temp=temp&vbcrlf
Next
Msgbox temp
| Is This Answer Correct ? | 3 Yes | 0 No |
Answer / 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 |
QTP 10.0 is not identifying web objects for IE 8.it is identifying like winObject.I installed HP patch QTPWEB_00037.Still getting issue
how will we run batch tests in qtp what is the process to run the multiple test sets?
how will b the questions if we keep one QTP project in CV.please tell me iam attending an interview.
what is defenetion of kiran can u tell me plz CVS, SVN
What is quicktest professional?
What is the function of Filter in QC . give with a real time example.
I encountered with very strange problem in qtp while writing the script i written the code window"regexpwndclass:=XLMAIN").window"regexpwndtitle:=Open" ).Exit this code was working fine for about 10-15 times i executed the script but after some time qtp started giving the error with the same code the error is "Object doesnt support this method or function window(...).window(..)" then i modified the code with only window"regexpwndtitle:=Open").Exit in place of window"regexpwndclass:=XLMAIN").window"regexpwndtitle:=Open" ).Exit now again its working fine i cannot understand what thing is creating the problem if same code executed successfully in starting for about 10 times then why it is giving the error now can anyone give the reason .
What is the difference between QTP 8.2 and QTP 9.2
how to test Web application using QTP software
How many lines of code in each script of QTP?
How to open an application through scripting?
Does QTP record on Objects created on XWindows Environment?