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
Define naming convention?
What is strong typing and weak typing?
hello thank you for replying to my question regarding adding barcode fonts in vb.net project. I have downloaded a free font and added in my vb.net project but now i dont know how to use that i need to generate barcodes can any body help me how to use those fonts these are font3of9 .i need a small code to use these fonts to generate barcode thank u!
What do you mean by serialization and deserialization and it's use.
Which classes a dll can contain?
what is commom language runtime?
Explain about visual basic.net?
What is code security?
Describe about visual basic.net?
Which namespace are used for accessing the data?
Before in my vb app I would just load the icons from dll. How can I load the icons provided by .net dynamically?
What is difference between import system.data.sqlclient,system.data.oledb?
Write the role of new keyword?
Name some of the features present in vb 2005?
What are the difference between dispose(), close(), exit(), end()? When do we use them?