how to reverse a string with out using string or predefined
function,ex:string is " i love india". the output should be
like this "i evol aidni"
Answer Posted / karthikjanahan
Dim str,arr
str = "i love india"
strlen = len(str)
ReDim arr(strlen)
For i = strlen to 1 step -1
arr(i) = mid(str,i,1)
x = x & arr(i)
Next
msgbox x
| Is This Answer Correct ? | 10 Yes | 5 No |
Post New Answer View All Answers
Our company is having a windows client server application developed in vb.net. so there is a treeview and i am not in a position to record the click events in QTP. so kindly help. Vivek
Where we use data driver in qtp?
What is throw object?
What are the different types of qtp test assets and their extensions?
How software tester can use constants and variables in scripts?
What are the check points can be inserted without recording?
Can we run multiple QTP scripts one after the other without manual intervention? How?
How can i use virtual objects? If have i created one new virtual object in a virtual object manager by following instructions.
What are the views available in quicktest professional?
What the differences are and best practical application of Object Repository?
What is quicktest professional?
What are the two types of repositories available, explain them?
descriptive program for a yahoo mail that is in yahoo mail suppose check box mailid subject assume it is like this format all things are in webtable the question is suppose some mail ids are there in that mailids i want to select the check box wich is before a@gmail.com and after that i want to click on delete button
How do client side image and server side image work?
Sql questions to find second max salary and how to use joins