InterviewSolution
Saved Bookmarks
| 1. |
What Is The Difference Between A Procedure And A Function ? |
|
Answer» FUNCTIONS return a single variable by VALUE WHEREAS procedures do not return any variable by value. Rather they return multiple VARIABLES by passing variables by reference through their OUT PARAMETER. Functions return a single variable by value whereas procedures do not return any variable by value. Rather they return multiple variables by passing variables by reference through their OUT parameter. |
|