Oracle Business Process Management Suite 12c Essentials
Oracle Hyperion Financial Management 11 Essentials
Oracle SOA Suite 12c Essentials
Oracle WebLogic Server 12c Essentials
Java SE 8 Programmer II
Oracle Business Intelligence Foundation Suite 11g Essentials
Siebel 8 Consultant
Oracle WebLogic Server 12c: Administration I
Oracle VM 3 for x86 Essentials
Oracle Database 12c Essentials
Examine these statements:
Which is true?
It will result in a compilation error for protected_proc because calling_proc does not exist.
It will result in a compilation error for protected_proc because calling_proc must be prefixed with the schema name.
It will result in a successful compilation because objects referenced in an ACCESSIBLE BY clause are not checked at compile time.
With adequate privileges, PROTECTED_PROC procedure can be called by other programs apart from CALLING_PROC.
Which two are true about collections and RECORD types? (Choose two.)
A variable of RECORD type can contain fields of another RECORD type or any collection type.
Only associative arrays and nested tables can have elements of RECORD type.
All collections and RECORD types can be defined in PL/SQL blocks, packages, or at the schema level.
Collections and RECORD types are always dense.
All collections and RECORD types can be stored in table columns.
VARRAYS, nested tables and each field in %ROWTYPE type variables have a default value of null.
Which three statements are true about passing parameters to subprograms? (Choose three.)
PL/SQL assigns values to actual parameters in subprograms with unhandled exceptions.
IN parameters passed to subprograms act like constants, to which values cannot be assigned by the subprogram.
IN OUT parameters pass initial values to subprograms and return values updated by subprograms to the caller.
The actual parameter must be a variable when calling a subprogram with an OUT parameter.
IN parameters passed to subprograms act like variables, to which values can be assigned by the subprogram.
OUT parameters returning values to calling subprograms act like constants in the called subprogram.
Actual parameters corresponding to IN OUT formal parameters can be constants or expressions.