write string reverse prog using vb script with out using
string reverse statement();

Answers were Sorted based on User's Feedback



write string reverse prog using vb script with out using string reverse statement();..

Answer / uday

str="uday"
msgbox strreverse(str) 'just for info sake.

'this is the script
For i=len(str) to 1 step -1
resultchar=mid(str,i,1)
result=result+resultchar
Next
msgbox result

Is This Answer Correct ?    5 Yes 1 No

write string reverse prog using vb script with out using string reverse statement();..

Answer / ankarao

str="Ankarao"
l=len(str)
for i=n to 1 step-1
res=mid(str,i,1)
rev=rev+res
next
msgbox rev

Is This Answer Correct ?    2 Yes 0 No

write string reverse prog using vb script with out using string reverse statement();..

Answer / jagadish

str = "jagguvamsee"
n=len(str)
for i = 1 to n
a = mid(str,i.1)&a
msgbox a
next

Is This Answer Correct ?    0 Yes 0 No

write string reverse prog using vb script with out using string reverse statement();..

Answer / lak

str ="Lakshmi"
For i=1 to len(str)
strrev = mid(str,i,1)&strrev
Next
msgbox strrev

Is This Answer Correct ?    0 Yes 0 No

Post New Answer

More QTP Interview Questions

Please Don't mind .i want in detail the real time process i.e in each document what it contains.

0 Answers  


hi, Can any body tell me whats the difference between the QTP and the Rational Robat ad the Silk Test and LOad Runner and are they used in any Company On the Major scale bcas I finnf Many comapny Using the Manual Testing Only Hence Askin the Question Hope I will get the Assitence .

1 Answers   First Europa,


tell me abt a time when u had to go above &beyind the call of duty to get the job done

0 Answers  


What is Version control?

3 Answers  


How to measure transaction time through VBScript without using start and end transaction points?

0 Answers  






HOW AND WHY TO CREATE EMPTY OBJECT IN QTP?

2 Answers   Patni,


How can we merge two repositories? Can we merge two differnt rep. I mean 1is peraction and other shared

4 Answers   Tavant Technologies,


PLS SEND REAL TIMERS, WHAT IS SOA TESTING..IM TRYING 3+ YR.. I HAVE GOOD KNOWLEDGE ON MANUAL TESTING... NOW IM NEW TO LEARN "ETL TESTING" IS BEST OR NOT? BEFORE LEARNING ETL TESTING ANY SKILLS ARE REQUIRED..... AND NOW WHAT IS THE MARKET FOR ETL TESTING... AND IT IS BASED ON PROGRAMMING OR NOT?PLS HELP ME REAL TIMERS IM REQESTING U..... CONTACT ME gan9000@gmail.com

1 Answers  


How to use userdifined environment variables.Once we created in Environment tab which is at File--> Settings-- >Environment-->Userdifined

0 Answers   Livetek,


i want information about API testing and i want info like how process can be done in company? i want added info like coding ,debugging, desing in c.v ? what should add in c.v for eg banking domin? pls any answer my question?

0 Answers  


Explain QTP Testing process ?

13 Answers   TCS,


I am trying to write a descriptive program for clicking on a perticular link.For that i wanted an index or location of that object.But when I viewing through spy, There was no index property of that object.What to do for getting index value.How can I get index? please any one let me know.

5 Answers  


Categories