Google News
logo
Oracle - Interview Questions
Explain actual parameters with an example.
Actual parameters are defined as the variables or expressions referenced in the parameter list of a subprogram. An example of a procedure call that lists two actual parameters named empNumber and amount is as follows :
 
updateSalary(empNumber,amount);

Advertisement