Automation Testing Question:
Download Questions PDF

Suppose a[0]=I
a[1]=N
a[2]=D like that it gos
.
.
out put we need INDIA?

Answers:

Answer #1
option 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

Answer #2
msgbox join(a)

Download Automation Testing Interview Questions And Answers PDF

Previous QuestionNext Question
Do you know images are dynamically changes how to compare two images?What is ETL TESTING?