1.

What Are The Different Methods For Passing Parameters To A Procedure?

Answer»

There are following three different METHODS to pass values to a procedure:

  • Positional —Refers to a method in which actual parameters of a procedure are PASSED in the same order as the FORMAL parameters.
  • NAMED—Refers to a method in which actual parameters of a procedure are passed in any arbitrary order but are associated with their corresponding formal parameters.
  • Combination—Refers to a method in which some parameters are passed as positional and some are passed as named parameters.

There are following three different methods to pass values to a procedure:



Discussion

No Comment Found