write a VB.net program to swap two numbers
Answer Posted / vineetha
Module Basudev
Sub Main()
dim a,b,te as integer
System.console.writeline("Enter The Two Number:")
a=System.Console.ReadLine()
b=System.console.ReadLine()
System.console.WriteLine("The Two Number is:{0} And
{1}:",a,b)
te=a
a=b
b=te
System.console.WriteLine("After Swapping Value is:{0} and
{1}:",a,b)
Sytem.console.ReadLine()
End Sub
End Module
| Is This Answer Correct ? | 14 Yes | 17 No |
Post New Answer View All Answers
How can we remove handlers at run time?
Can you please explain the difference between dispose and finalize()?
What are the different types of applications supported in .net (or) .net framework?
Explain about rapid application development tool?
What do you mean by serialization and deserialization and it's use.
Which namespace are used for accessing the data?
Explain internal keyword in .net framework?
Which class allows an element to be accessed using unique key?
What is DLL HELL in VB.NET
What is the ruby interface generator?
Explain trace in vb.net?
Explain the advantage of option strict on?
List the types of generations in garbage collector?
Explain manifest?
How can we store decimal data in .net?