Reverse a string keeping the words in the string as it is.
E.G. "Quick Test Professional"
O/P "Professional Test Quick"
Answer Posted / 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 |
Post New Answer View All Answers
To which environments does quicktest professional (qtp) supports?
What is quicktest professional?
What processes will be required to manage updates to the web site's content, and what are the requirements for maintaining, tracking, and controlling page content, graphics, links, etc.?
Hi All, I have QTP installed on my machine but the application under test (AUT) is on remote desktop.My scenarios is like that,it should contain following steps. 1)Automatically it should click on start and then on remote desktop connection. 2)it should enter the IP address and then connect to remote desktop. 3)and then it should be able to record the application in remote machine and then run it also. Can somebody tell me how to record the application which is in remote machine.
In an interview, what r the general questions asked in QTP? pls give me anwser to this question?
What is meant by Step generator?what is the use of this? we have 3 steps know there what r all those.? can u all pls give me clear idea of this
What is the Command used to start the QTP
Where to use Property Let, Property Get, Property Set in UFT
i have a doubt can anyone tell me where are scripts stored while using QTP.Tell me the exact procedure takes place in real time?like how we call scripts how to proceed after writing scripts?how scripts are executed etc?i heard some use Qc whether others dont use.so tell me whole procedure for both the things it will be a very big help.as i have interview i want to have whole idea on this.its very urgent.
QTP 10.0 is not identifying web objects for IE 8.it is identifying like winObject.I installed HP patch QTPWEB_00037.Still getting issue
Hi, My name is kishan. I have good Conceptual Knowledge on QTP. In order to Boost up my Confidence Level, I want to do a Project oriented Training only on QTP in Hyderabad. Kindly Let me know which is the Best QTP Project Training Institute in Hyderabad. Thanks in Advance kishan
Why do we use breakpoints in QTP?
If we put all properties in mandatory and assistive list of Normal Identification, Do we still need Smart?
we add library file used in test via settings or through "ExecuteFile" command. when we implement framework do we make common library file and load the same for all the test cases execution?
Explain advantages and disadvantages of ddf?