write a VB.net program to swap two numbers
Answer Posted / tarunkumar
vb.net programm to swap two numbers without using third
variable is as follows
public class form1
Private Sub Form1_Load(ByVal sender As System.Object, ByVal
e As System.EventArgs) Handles MyBase.Load
Dim a As integer
Dim b As integer
a=a+b
b=a-b
a=a-b
End Sub
End class
vb.net programm to swap two numbers using three variables
is as follows
public class form1
Private Sub Form1_Load(ByVal sender As System.Object, ByVal
e As System.EventArgs) Handles MyBase.Load
Dim a As integer
Dim b As integer
Dim temp As integer
temp=a
a=b
b=temp
End Sub
End class
this programm is written in window application because the
question tells to write vb.net programm only but not
console application
| Is This Answer Correct ? | 34 Yes | 12 No |
Post New Answer View All Answers
What is redim keyword?
Explain about visual basic.net?
Explain about garbage collection?
What is the difference between custom control and user control?
What is the difference between import system.data.sqlclient and system.data.oledb?
What keyword is used to accept a variable number of parameter in a method?
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 the difference between value and reference types?
Allowed program to auto-correct the database when loading a presentation.
i have two class that contain's two methods as same name in derived class i have to call these two methods what will happen at run time ?
What are option strict and option explicit?
Write program in VB.Net with SQL Server and Crystal Reports to develop a small windows application to add,edit,save, search and print Employee Information and send sourcecode as zip file. empcode : .............. empname : .............. dateofjoin : dd/mm/yyyy dateofbirth : dd/mm/yyyy TableName: EmpMaster EmpCode EmpName DOB DOJ TableName: EmpDocs EmpCode DocNo DocName ExpDate
How to retrieve images in sql server database through vb.net?
Can you please explain the difference between value and reference types?
Explain and brief about rapid application development tool?