View the Exhibit and examine the blocks of code that you plan to execute.Which statement is true about the blocks of code?
Which statement is true about triggers on data definition language (DDL) statements?
Which two statements are correct about PL/SQL package components? (Choose two)
In which of the following scenarios would you recommend using associative arrays?
View Exhibit 1 and examine the structure of the EMP table.View Exhibit 2 and examine the code.EKPNOS 7845 and 7900 exist in the EMP table.Which two calls to the RAISE_SALABY procedure in the anonymous block execute successfully? (Choose two.)
View the Exhibit to examine the PL/SQL code:DECLARE -x NUMBER := 5;y NUMBER := NULL;BEGIN -IF x != y THEN yields NULL, not TRUEDBMS_OUTPUT.PUT_LINE(x != y); not runELSIF x = y THEN also yields NULLDBMS_OUTPUT.PUT_LINE(x = y);ELSE -DBMS_OUTPUT.PUT_LINE -(Cant tell if x and y are equal or not.);END IF;END;/SREVROUPUT is on for the session. Which statement is true about the output of the PL/SQL block?