write a vbscrpit to swap values

Answers were Sorted based on User's Feedback



write a vbscrpit to swap values..

Answer / manjunathareddy

Dim oNum1
Dim oNum2
oNum1=Cint(InputBox("Enter the First number here"))
oNum2=Cint(InputBox("Enter the Second number here"))
Msgbox "Before swapping numbers are"&" "&oNum1&" "&oNum2
oNum1=oNum1-oNum2
oNum2=oNum1+oNum2
oNum1=oNum2-oNum1
Msgbox "After Swaping numbers are"&" "&oNum1&" "&oNum2

Is This Answer Correct ?    4 Yes 0 No

write a vbscrpit to swap values..

Answer / monika

Dim oNum1
Dim oNum2
oNum1=Cint(InputBox("Enter the First number here"))
oNum2=Cint(InputBox("Enter the Second number here"))
Msgbox "Before swapping numbers are"&" "&oNum1&" "&oNum2
oNum1=oNum1+oNum2
oNum2=oNum1-oNum2
oNum1=oNum1-oNum2
Msgbox "After Swaping numbers are"&" "&oNum1&" "&oNum2

Is This Answer Correct ?    0 Yes 0 No

Post New Answer

More VB Script Interview Questions

write a vb script to calculate factorial of a number?

5 Answers  


Mention the rules for using option explicit statement?

1 Answers  


Find Out Length of an array without using Ubound?

1 Answers  


If anyone knows abt Test Complete material, Pls let me Know. if u have any material or any documents..... Pls mail me on this mail Id...... This is very Urgent Requirment..... for my Project.....

3 Answers  


what is the function to display current date?

4 Answers  


why variable name should not exceed 255 characters?

1 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  


Write a program to create a Dynamic array of size 5 elements and display all the elements.

1 Answers  


write a vb script to generate hello 5 times using do until loop

4 Answers  


Join the multiple array with out using JOIN function

1 Answers  


What is the difference between javascript and vbscript?

1 Answers  


Mention what is the difference between vbscript and vba?

1 Answers  


Categories