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...

hai..friends ....what is the difference between function and
sub procedure ....here every one know's theoretically here
my question is what is the meaning of function can return
the value and sub can't return the value...can you give one
example with some values for that ....what does it mean ?
how function can return the value...sub can not...any one
please...........with example

Answer Posted / monika

function myfunction(a,b)
myfunction=a+b
End function

returnvalue=myfunction(5,9)
msgbox returnvalue

it will display value returned by function and stored in returnvalue variable as 14

sub myfunction(a,b)
myfunction=a+b
End sub

returnvalue=myfunction(5,9)
msgbox returnvalue

it will throw error as no value returned by sub

sub myfunction(a,b)
c=a+b
msgbox c
End sub

call myfunction(5,9)

it will display 14 inside sub

Is This Answer Correct ?    1 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What purpose does ‘on error resume next’ serves?

1139


What is the difference between a dictionary and an array?

1116


How to open a file. What is the perpose of true and false mode there?

1164


Anyone have qtp11.0 crack?

2892


How to scroll down a page while recording in qtp. suggest me any method apart from low level recording.

3069


Explain the support of asp for vb script functionality?

1118


There are 5 web pages.write a script to click the button on 4th web page.

3472


Explain vbscript in detail?

1105


How to Import data from a file (file is on the desktop) to the data table

2125


How do i automate a website www.flyashx.com without having any test cases witin a week time.

1981


Mention the environments where vbscript could be run?

1298


Explain the asc function?

988


Which operator is used to perform the comparison among 2 operands in the vbscript language?

1012


what types of bugs will we find out in banking projects for automation testing?

2282


Which command is used for writing text on a page?

1058