You must use a Static Content region type to display messages about the employee of the month. Which text, when placed in this region, will display the message correctly?
A.
Join me in congratulating: P1_ENAME as the new employee of the month!
B.
Join me in congratulating: &P1_ENAME. as the new employee of the month!
C.
Join me in congratulating V('P1_ENAME') as the new employee of the month!
D.
Join me in congratulating & P1_ENAME. as the new employee of the month!
Static Content regions display fixed text with substitution:
B. &P1_ENAME.: The &ITEM_NAME. syntax substitutes the value of P1_ENAME at runtime (e.g., "Join me in congratulating: John as..."), correctly rendering the item’s value. The dot ensures proper parsing.
A. P1_ENAME: Treated as literal text, not substituted.
C. V('P1_ENAME'): A PL/SQL function, invalid in static content; it’s for server-side code.
Chosen Answer:
This is a voting comment (?). You can switch to a simple comment. It is better to Upvote an existing comment if you don't have anything to add.
Submit