Answered Questions

  • What is the main purpose of RETURN in functions?

    What is the main purpose of RETURN in functions when we can calculate a value and pass it through using OUT mode in procedure or functions?

    Deepika S Verma

    • Mar 14th, 2014

    Its a myth that function returns value whereas procedure does not, actually procedure also return value (i.e. 0 or 1 ) at the time of exiting which indicates the success or error. Whereas Function ret...