int a=4857 i need output as 7584.without using any inbuild
function?

Answers were Sorted based on User's Feedback



int a=4857 i need output as 7584.without using any inbuild function?..

Answer / r.singh

varnum=4857
vartemp=0
while(varnum/10)>0 then
vartemp=(vartemp*10)+(varnum mod 10)
varnum=varnum/10
wend
rev=vartemp
msgbox rev

Is This Answer Correct ?    9 Yes 1 No

int a=4857 i need output as 7584.without using any inbuild function?..

Answer / bantanahal haribabu

s="12345"
While int(s)>0
n=s mod 10
x=x&n
s=int(s)/10
Wend
msgbox x

Is This Answer Correct ?    3 Yes 0 No

int a=4857 i need output as 7584.without using any inbuild function?..

Answer / testengineer

Thanku Mr.R.Singh,Miss Sumathi and Mr. Bantanahal Haribabu

But Could u please confirm me whether "MOD,INT,LEN" are Inbuilt Functions are not?

Is This Answer Correct ?    2 Yes 0 No

int a=4857 i need output as 7584.without using any inbuild function?..

Answer / anil

s=4857
For i=Len(s) To 1 step-1
c=Mid(s,i,1)
temp=temp&c
Next
MsgBox temp

Is This Answer Correct ?    2 Yes 0 No

int a=4857 i need output as 7584.without using any inbuild function?..

Answer / sumathi

var=4857
For i=1 to len(var)
x=var mod 10
num=num&x
var=var/10
var=fix(var)
Next
print num

Is This Answer Correct ?    1 Yes 0 No

int a=4857 i need output as 7584.without using any inbuild function?..

Answer / mogal

a = 4857

Do while ( a>0 )
num = a mod 10
a = a / 10
output = output & num
loop
print output

Is This Answer Correct ?    1 Yes 0 No

Post New Answer

More VB Script Interview Questions

Can someone please tell me what poor design in a relational database (not the layout or style) is and how it can be avoided? PLEASE...im desperate.

0 Answers  


how to retrieve native property value in runtime?

1 Answers   Hexaware,


write a vb script to generate fibonnaci numbers

1 Answers  


To get data from table which method will be used in QTP

3 Answers  


write a vbscrpit to swap values

2 Answers   Adani,


How will you reverse a string in vbscript?

0 Answers  


how to acces the remote mechine using vb cript(QTP)

0 Answers   TCS,


Explain the .wsf files?

0 Answers  


Which operator is used to perform the comparison among 2 operands in the vbscript language?

0 Answers  


write a vb script to display the reverse of vbs

2 Answers  


What are the valid scopes of a variable in vbscript?

0 Answers  


How to Enter Values on the Command promt using VB script

0 Answers  


Categories