What are the modes of parameters that can be passed to a
procedure ?

Answers were Sorted based on User's Feedback



What are the modes of parameters that can be passed to a procedure ?..

Answer / gireesh.p.v

the modes of parameters passing are 3 type

1) IN
2) OUT
3) INOUT

COMTACT ME gireesh.p.v@gmail.com

Is This Answer Correct ?    6 Yes 0 No

What are the modes of parameters that can be passed to a procedure ?..

Answer / krupakar

Three Types of Parameters.
1) IN parameter mode- This mode is used to pass values to
the calling module when invoked.The value of IN parameter
can't be changed in the module.

2) OUT parameter mode -This mode is used to return a value
to the main block.The value of OUT parameter can change
anywhere in the program.

3)IN OUT parameter mode-This mode is used to pass values to
the calling module and return a value to the main block.The
value of IN OUT parameter can change anywhere in the
program.

Is This Answer Correct ?    2 Yes 0 No

What are the modes of parameters that can be passed to a procedure ?..

Answer / suman

IN- The parameter can be referenced by the procedure or
function. The value of the parameter can not be overwritten
by the procedure or function.

OUT- The parameter cannot be referenced by the procedure or
function. The value of the parameter can be overwritten by
the procedure or function.

INOUT- The parameter can be referenced by the procedure or
function. The value of the parameter can be overwritten by
the procedure or function.

Is This Answer Correct ?    2 Yes 1 No

Post New Answer

More SQL PLSQL Interview Questions

How can we store rows in PL/SQL using array?

0 Answers   MCN Solutions,


What is where clause in sql?

0 Answers  


function can return value ,procedure also return value through out parameter then what is the difference?

3 Answers   3i Infotech,


query to retrive the employees whose sal is greater than avg sal

10 Answers   TCS,


What does count (*) mean?

0 Answers  






what are myisam tables? : Sql dba

0 Answers  


What are sql*plus environment variables?

0 Answers  


What is anonymous block in sql?

0 Answers  


what is data integrity? : Sql dba

0 Answers  


How many rows will return from dual table?

4 Answers   Fujitsu,


What is denormalization in a database?

0 Answers  


Is primary key always clustered index?

0 Answers  


Categories