Automation Testing Question:
Suppose a[0]=I
a[1]=N
a[2]=D like that it gos
.
.
out put we need INDIA?
Answers:
Answer #1option Explicit
Dim Str, i, arr_len
Dim arr(10)
arr(0)="I"
arr(1)="N"
arr(2)="D"
arr(3)="I"
arr(4)="A"
arr_len=Ubound(arr)
for i=0 to arr_len
Str=str&arr(i)
next
msgbox Str
Dim Str, i, arr_len
Dim arr(10)
arr(0)="I"
arr(1)="N"
arr(2)="D"
arr(3)="I"
arr(4)="A"
arr_len=Ubound(arr)
for i=0 to arr_len
Str=str&arr(i)
next
msgbox Str
Answer #2msgbox join(a)
Previous Question | Next Question |
Do you know images are dynamically changes how to compare two images? | What is ETL TESTING? |