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 |
the question was on what techonlogy u been working on i said VB then he asked me the addin for VB in Qtp?
How to Parameterize Object repository in QTP?
How to add a standard checkpoint in your test ?
HI, Based On The Information Below Write A Data Driven test Script Edit Box 1 Should take Value From Num1 Column Edit Box 2 Should take Value From Num2 Column Click On Add Button, Get The Value Of Exp res Column, Get Value From Actual Result Edit Box , Compare Two Values, Write Pass / Fail Value Into Result Column Thanks In Advance... Kavitha Input.Xls Num1 Num2 Exp res Act res Result 10 30 40 40 Pass 50 40 90 90.5 - - - - - - - - - - - - - - - -
QTP supports both client server and Web applications. Does it support Plug-in?
Without integrating QC/Testdirector with QTP, is it possible to keep track of the defects?If yes how? How to export QTP results to an excel sheet?
How to display the first 3 letters in these "ABCDEFGH" using qtp script?
I have 5 no.of Action in my Test. Out off which i should make 3rd action as my start-up action. How should i make it?
what are the Common Problems in S/w development process
Hi, I am working on microsoft infopath forms..It is standalone form..(not dotnet or web.) . I am not able to indentify any objects in it.. I am currently using active accessibility in the macro for the same but its execution is too slow.. Kindly help in case you have better solution.
What are default add-ins in qtp?
how can i call reusable action in a function could any one explain me?