The PLSQL_OPTIMIZE_LEVEL parameter is set to 2 for the session.
Examine the section of code given:
FUNCTION p2 (p boolean) return PLS_INTEGER IS ...
FUNCTION p2 (x PLS_INTEGER) return PLS_INTEGER IS
... ...
PRAGMA INLINE(p2, 'YES');
x := p2(true) + p2(3);
...
Which statement is true about the INLINE pragma procedure calls?