write a VB.net program to swap two numbers
Answer Posted / basudev_kan
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)
Ssytem.console.ReadLine()
End Sub
End Module
| Is This Answer Correct ? | 83 Yes | 42 No |
Post New Answer View All Answers
What is code access security?
What are the various open source tool available for VB.NET?
What is the difference between datagrid and gridview?
Explain jit?
What are all the differences between dispose and finalize()?
Explain about branching logic control in vb.net?
Explain about the performance of visual basic?
List the types of authentication?
Explain the difference between dispose and finalize()?
How do you retrieve the customized properties of a .net application from xml .config file?
Explain about delegate?
Explain internal keyword in .net framework?
Explain the difference between vb 6 and vb.net?
What is difference between inline and code behind?
What is intermediate langauge?