Oracle 1Z0-144 Actual Free Exam Questions & Community Discussion

  • Exam Code/Number: 1Z0-144
  • Exam Name/Title: Oracle Database 11g: Program with PL/SQL
  • Certification Provider: Oracle
  • Corresponding Certification: Other Oracle Certification
  • Exam Questions: 103
  • Updated On: Jul 07, 2026
View Exhibit1 and examine the structure of the product table.

View Exhiblt2 and examine the procedure you created. The procedure uses the prod id to determine whether the list price is within a given range.

You then create the following trigger on the product table.
CREATE OR REPLACE TRIGGER check_price__trg BEF0RE INSERT OR UPDATE OF prod_id, prod_list_price ON product FOR EACH ROW WHEN (nev.prod_id <> NVX(old.prod_id,0) OR New.prod__list_price <> NVL(old.prod_list_price, 0) ) BEGIN check_price (: new.prod_id) ; END /
Examine the following update command for an existing row in the product table.
SQL> UPDATE produce SET prod_list_price = 10 WHERE prod_id=115;
Why does it generate an error?
Correct Answer: E Vote an answer
View Exhibit1 and examine the structure of the DO table. View Exhibit2 and examine the code.


The anonymous block gives an error on execution. What is the reason?
Correct Answer: D Vote an answer
The STRING_TAB table has the following structure:

View the Exhibit and examine the code.

What is the outcome on execution?
Correct Answer: D Vote an answer
Which two statements are true about the usage of the cursor for loops? (Choose two.)
Correct Answer: C,D Vote an answer
Examine the following PL/SQL code:

The server output is on for the session. Which statement is true about the execution of the code?
Correct Answer: C Vote an answer
Which three statements are true about wrapping? (Choose three.)
Correct Answer: B,C,E Vote an answer
Explanation: Only visible for EduDump members. You can sign-up / login (it's free).
Identify situations in which the DBMS_SQL package is the only applicable method of processing dynamic SQL. (Choose all that apply.)
Correct Answer: B,C Vote an answer
0
0
0
10