What is the Difference between a sub and a function?

Answers were Sorted based on User's Feedback



What is the Difference between a sub and a function?..

Answer / bhupendran

sub does not return's a value,but function return's value

Is This Answer Correct ?    36 Yes 2 No

What is the Difference between a sub and a function?..

Answer / aravindreddy

SUB is a method
FUNCTION is to return a value to it

Is This Answer Correct ?    29 Yes 2 No

What is the Difference between a sub and a function?..

Answer / alam

Function always returns a value but sub does not.

Is This Answer Correct ?    22 Yes 4 No

What is the Difference between a sub and a function?..

Answer / m. aqueel

Sub keyword is used for the procedures and procedures never
return a value where function key word is used for function
and function returns a value that can be assign to any
variable.

Is This Answer Correct ?    17 Yes 1 No

What is the Difference between a sub and a function?..

Answer / aaa

Function returns a value, Sub doesn't.
Function can be called from within a cell, similar to
=Today() function.

Is This Answer Correct ?    10 Yes 1 No

What is the Difference between a sub and a function?..

Answer / kinjal

sub does not returns a value but function returns a value

Is This Answer Correct ?    8 Yes 1 No

What is the Difference between a sub and a function?..

Answer / bart calixto

yeah, sure.. everyone says that but...

what's the purpose of sub.?
I can do a function

Function ThisIsASub()
write "HELLO WORLD"
end Function

wow! I have a sub now.

so, besides the stupid reason that sub don't return value, what's the point of using subs?

If like someone create a newIF but it doesn't support ELSE... what's the point?

Greetings,
Bart.

Is This Answer Correct ?    2 Yes 0 No

What is the Difference between a sub and a function?..

Answer / digvijay

Sub is also function but never return the value and Function
must return the value.
Function is user defined and System define but sub is
keyworlds that defined by user.

function can be macro but Sub is Not.

Is This Answer Correct ?    1 Yes 0 No

What is the Difference between a sub and a function?..

Answer / raju chauhan

Like a Function procedure, a Sub procedure is a separate
procedure that can take arguments, perform a series of
statements, and change the value of its arguments. However,
unlike a Function procedure, which returns a value, a Sub
procedure can't be used in an expression.

Is This Answer Correct ?    0 Yes 0 No

Post New Answer

More Dot Net General Interview Questions

Explain something about WebService?

0 Answers   BirlaSoft,


What are the different.net tools which you used in projects?

0 Answers  


When displaying fonts, what is the difference between pixels, points and ems?

0 Answers  


Types of JIT and what is econo-JIT ?

5 Answers   Hewitt, TCS,


How can I get at the win32 api from a .net program?

0 Answers  






What?s SingleCall activation mode used for?

1 Answers  


Can you give an example of when it would be appropriate to use a web service as opposed to a non-serviced .NET component

1 Answers   Siebel Systems,


Explain what is reflection in microsoft .net context?

0 Answers  


Different between .net & j2ee ?

0 Answers  


Write the .net syntax for 'while loop'?

0 Answers  


Explain what is an interface and what is an abstract class? Please, expand by examples of using both. Explain why?

0 Answers  


How to get the number after decimal point in .net?

0 Answers  


Categories