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

what is the difference between pragma exception_init and raise_application_error

1 Answers   Aetins, State Street,


How many joins in sql?

0 Answers  


Explain what is rdbms?

0 Answers  


How does stored procedure reduce network traffic?

0 Answers  


What is the difference between execution of triggers and stored procedures?

0 Answers  






What is left join in postgresql?

0 Answers  


What are user defined stored procedures ?

3 Answers   BirlaSoft,


State few characteristics of pl/sql?

0 Answers  


What are the different type of joins in sql?

0 Answers  


What is date functions?

0 Answers  


Is a view faster than a stored procedure?

0 Answers  


What is pl sql collection?

0 Answers  


Categories