write the code to reverse a string without using Strrev
built in function.
Answer Posted / m.bindu kumar
'Code to reverse a string without using strrev using
functions
Function stringreverse(a)
strlen=len(a)
For i = strlen to 1 step -1
strrev=mid(a,i,1)
stn=stn+strrev
Next
msgbox stn
End function
Dim strrev,strlen, strname,stn
a=inputbox ("enter the string to reverse")
stringreverse(a)
| Is This Answer Correct ? | 3 Yes | 6 No |
Post New Answer View All Answers
How would you directly trigger javascript in a test?
What are the key points to create a framework in QTP for oracle forms?
What is quicktest professional?
What is optional step in qtp? How you can add optional step in qtp?
Is it possible to switch between recording modes during a test creation?
what is the mail use of frame work(with detail). architecture for keyword driven frame work
how could i download qtp in which i get add-in support for 'oracle' is there any way to get it? i finding but not getting pls help me out :)
If the objects hierarchy is changing from build to build, then how you will handle that condition?
Explain the check points in quicktest professional (qtp)?
what is the advantages and disadvantages of using functions instead of re usable actions
Hi Frenz... I would like to take up the QTP certification . Can anyone tell me what is the procedure. n if anybody have the study materials pls fwd it to jkpunathil@gmail.com
How can you handle exceptions in qtp?
How can i click on any Excel sheet's "H" column with out writing coordinates Ex:Window("Book1").WinObject("Book1").Click 498,14 I dont want to give coordinates like 498,14 Can i open "H" column by writing like Ex:Window("Book1").WinObject("Book1").Click "H" or Ex:Window("Book1").WinObject("Book1").Click "H","1" or Ex:Window("Book1").WinObject("Book1").Click H,1 If i want to click on "Sheet3" of an excel sheet, Can i open like Ex:Window("Book1").WinObject("Book1").Click "Sheet3" Please help me any one
You will receive the mail in your outlook from client at night time to go ahead for the execution. Based on the mail you need to trigger the batch run. What is the QTP Code for this?
If object is not recognized by qtp but the object is standard object what is your approach?