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



Write a script to print below pattern 5 4 3 2 1 5 4 3 2 5 4 3 5 4 5 ..

Answer / ashok kumar

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

Write a script to print below pattern 5 4 3 2 1 5 4 3 2 5 4 3 5 4 5 ..

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

Write a script to print below pattern 5 4 3 2 1 5 4 3 2 5 4 3 5 4 5 ..

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

Write a script to print below pattern 5 4 3 2 1 5 4 3 2 5 4 3 5 4 5 ..

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

Write a script to print below pattern 5 4 3 2 1 5 4 3 2 5 4 3 5 4 5 ..

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

Write a script to print below pattern 5 4 3 2 1 5 4 3 2 5 4 3 5 4 5 ..

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

Write a script to print below pattern 5 4 3 2 1 5 4 3 2 5 4 3 5 4 5 ..

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

Write a script to print below pattern 5 4 3 2 1 5 4 3 2 5 4 3 5 4 5 ..

Answer / pushkar1206

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

Write a script to print below pattern 5 4 3 2 1 5 4 3 2 5 4 3 5 4 5 ..

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

Post New Answer

More QTP Interview Questions

Hi am New to Automation Testing , any one can you help me what are the basic questiion are asked an interview?

1 Answers  


why do we go for Test Automation?

2 Answers  


i am trying to automate yatra.com,in that site, when i go to automate the Leaving from field showing as a WEBEDIT, but when i enter 1 or 2 char, it displaying dropdownlist, i try to use keyboard automation to select the item from that list but it is not possible, can anybody help he. Thans for posting the Answer

1 Answers   TCS,


How to associate shared object repository to test in qtp?

1 Answers  


How to set the function parameters as optional. Pls anybody can give the answer.. Thanks in advance...

2 Answers   Navis,


How to retrieve value (data) from notepad using QTP ?

5 Answers   Health Care,


suppose we recording a web based project so for that we are using internet explorer after that if we execute that script in netscape then script will execute or not and one more thing is to exeute the script in any browser what to do

2 Answers   DigiTech,


Hi .. i want to write the script for the combo nox list . For example if any combo box having a multipul itme. So how can i retrive each item for each iteration ? help me out .

2 Answers  


What are the types of object repositories? Which one is you are using?

1 Answers  


What are the five challenges you faced in QTP?

1 Answers   CTS,


Why bpt?

1 Answers  


w is active screen

2 Answers   GCI, Wipro,


Categories