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
Here....
For i = 1 To 5
For j = 5 To i Step -1
temp = temp & " " & j
Next
MsgBox temp
temp = ""
Next
| Is This Answer Correct ? | 12 Yes | 3 No |
Answer / vishnu
'5 4 3 2 1
'5 4 3 2
'5 4 3
'5 4
'5
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 ? | 4 Yes | 2 No |
Answer / sireesha
For i = 1 To 5
For j = 5 To i Step -1
temp = temp & " " & j
Next
MsgBox temp
temp = temp&vbnewline
Next
msgbox temp
| Is This Answer Correct ? | 2 Yes | 0 No |
Answer / 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 |
Answer / machiraju veera venkata naga s
p=""
For i = 1 To 5 Step 1
t=""
For j = 5 To i Step -1
t=t&" "&j
Next
p=p&""&t
Next
print p
(Test this code right now... Its mine.)
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / bhargavi
For i = 1 To 5
For j = 5 To i Step -1
temp = temp & " " & j
Next
If i=5 Then
print temp
End If
Next
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / 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 |
a=inputbox("enter number")
b=len(a)
For i=b to 1 step -1
c=left(a,i)
d=d&c&vbnewline
Next
msgbox d
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / phu
for i=4 to 0 step-1
{
for j=0 to i step+1
print (5-j)
}
| Is This Answer Correct ? | 0 Yes | 4 No |
I have written some script in QTP and i added those objects in Object Repository. All written script has been executed successfully. After few days when i tried to execute the same script i got error message "objects not found in Object Repositiry". How can we solve this issue?
It is a SQL question. Write a query to find top three salaries in an EMP TABLE?
How will you declare a variable in qtp?
How can we perfom Action and Component parameter.?
can the activities of test case design be automated?
Hi All, I Want To excute scripts batch without using QC .I need code for that Thanks Balaji
How to do the scripting. Is there any inbuilt functions in qtp as in qtp-s. What is the difference between them? How to handle script issues?
What are the different types of checkpoints?
If aclient comes to tester ask to bye a tool Keep aside about the cost,In what way we can choose the tool.
Explain the difference between data driven testing and parameterization ?
I am testing a Website thelancet and create a description for searching "health" in search edit box.But my description failed on last two lines.Can anybody solve this
Hi! My OTP script has several bitmap checkpoints included which I check in the test results xml file. The test is for SAP 4.7. I need to save these bitmaps to files or at least export them to the html file using the export function in the test results viewer. Could you please help me with this problem? Thank you in advance! Best regards, Peter