Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...

Difference between a sub and a function?

Answer Posted / satishdubey

A Sub Procedure is a method will not return a value
A sub procedure will be defined with a Sub keyword
Sub ShowName(ByVal myName As String)
Console.WriteLine (My name is: & myName)
End Sub

A function is a method that will return value(s).
A function will be defined with a Function keyword
Function FindSum(ByVal num1 As Integer, ByVal num2 As
Integer)
As Integer
Dim sum As Integer = num1 + num2
Return sum
End Function

Is This Answer Correct ?    7 Yes 4 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Name some of the features present in vb 2005?

1002


What is the use of system.diagnostics.process class?

1110


How do you retrieve the customized properties of a .net application from xml .config file?

1032


What is the advantages of VB.NET?

1083


What is late binding and early binding?

1124


Why do we use byref keyword in vb.net?

1110


Can you please explain the difference between dataset and datareader?

1079


Explain how to store decimal data in .net?

1220


Define naming convention?

1059


What is a static variable?

1951


Explain the difference between dispose and finalize()?

1199


Which control is an example of an object in vb net?

7010


Explain about the performance of visual basic?

1073


What are the differences between c# and visual basic.net?

1101


Define serialization in .net?

1267