write a vb script to display the reverse of vbs

Answers were Sorted based on User's Feedback



write a vb script to display the reverse of vbs..

Answer / mudaseer

msgbox strreverse("vbs")

Is This Answer Correct ?    4 Yes 0 No

write a vb script to display the reverse of vbs..

Answer / mudaseer

Option Explicit

Dim MyStr, char, NewStr, x, y

MyStr = "vbs"

y = Len(MyStr)
For x = y To 1 Step -1
char = Mid(MyStr,x,1)
NewStr = NewStr & char
Next

msgbox newstr

Is This Answer Correct ?    3 Yes 1 No

Post New Answer

More VB Script Interview Questions

Write VB script to convert from feet to inches(hint 1feet=12 inches)

2 Answers  


what is extension of the file if its saved from recovery manger to some drive

1 Answers  


How will you get a random number between 0 and 1 in vbscript?

0 Answers  


Am working with web application. i faced one senario. i.e, webpage having webtable having two coloumns, in that first coloumn is for serial no and second coloumn is for mac address link, now i want to get first row second coloumn value, that having macaddress as link. Please help me how to get that link?

2 Answers  


Explain the support of asp for vb script functionality?

0 Answers  






What is the difference between Javascript & Vbscript?

2 Answers  


Plzzzzzzz can any one tell me which is the best institute in hyderabad for learing VBScript. plz do answer guys its urgent plzzzzzzz. thanks in advance.

0 Answers  


Hi, Anybody could you Please tell me How to write the script for Checking whether given number is Prime Number or not..Thanks in Advance

6 Answers   Amazon,


What is the equivalent of VBScript?s On Error In Jscript ?

1 Answers   Microsoft,


What is the use of "Option Explicit"?

2 Answers  


write a vb script to display calculator using case statement?

1 Answers  


Does VB/Win make standalone .EXE files?

0 Answers  


Categories