Reverse a string keeping the words in the string as it is.
E.G. "Quick Test Professional"
O/P "Professional Test Quick"
Answer / gaurav sharma
Dim strVar
strVar = "Quick Test Professional"
strRevrs = ""
strSplit = Split(strVar," ")
For iLoop = Ubound(strSplit) To Lbound(strSplit) Step -1
strRevrs = strRevrs&" "&strSplit(iLoop)
Next
MsgBox strRevrs
| Is This Answer Correct ? | 0 Yes | 0 No |
What is Regular Expressions?
which is the easiest way you can send the QTP test results to Client if he want to see the screenshots when the results are failed?
What are Child Objects?
What is system testing and what are the different types of tests you perform in system testing?
On what document base Descriptive programming is written if build is not yet ready ?
write a script to validate the content in the web application. (do it by OR method) and (do it by Descriptive method by creating a description object..
How to Analyze the Checpoint results with Standard Checpoint ?
Explain how Selenium is different from UFT?
What are the advantages of Object Repository?
how can u find the syntax errors or other script errors in your test during the execution of your QTP Test - (i.e., not after the execution/test run finished, but before finishing the test run)
how do find current links in webpage for ex: in yahoowebsite today mainpage is having 50 links and next day same page is having 60 links. if i run same programe it should display total links in webpage ?
What are the different recording modes?