GeekInterview.com
   Home |  Tech FAQ  |   Interview Questions |  Placement Papers |  Tech Articles |  Learn |  Freelance Projects |  Online Testing |  Geeks Talk |  Job Postings |  Knowledge Base | Site Search |  Add/Ask Question

  GeekInterview.com  >  Interview Questions  >  Oracle  >  PL/SQL

 Print  |  
Question:  Procedure Parameters

Answer: What is call by value and call by reference in parameters (IN, OUT, INOUT)?


November 11, 2008 20:52:41 #3
 kz4ora   Member Since: October 2008    Total Comments: 2 

RE: Procedure Parameters
 
There are 3 types parameters

IN - Default mode,using this value is passed to procedure

OUT- Value is returned to calling environment

IN OUT- Does both- Value passed to procedure and can be used to return some value to calling environment

 
     

 

Back To Question