• Shuffle
    Toggle On
    Toggle Off
  • Alphabetize
    Toggle On
    Toggle Off
  • Front First
    Toggle On
    Toggle Off
  • Both Sides
    Toggle On
    Toggle Off
  • Read
    Toggle On
    Toggle Off
Reading...
Front

Card Range To Study

through

image

Play button

image

Play button

image

Progress

1/3

Click to flip

Use LEFT and RIGHT arrow keys to navigate between flashcards;

Use UP and DOWN arrow keys to flip the card;

H to show hint;

A reads text to speech;

3 Cards in this Set

  • Front
  • Back

Question: 1


Examine the following command:SQL>ALTER SESSIONSET plsql_warnings *'enable: severe','enable: performance', 'ERROR: 05003';What is the implication of theabove command?


A. It issues a warningwhenever ERROR: 05003 occur during compilation.


B. It causes the compilationto fail whenever the warning ERROR.05003 occurs.


C. It issues warnings wheneverthe code causes an unexpected action or wrong results performance problems.


D. It causes the compilationto fail whenever the code gives wrong results or contains statements that arenever executed.

Answer: C


It issues warnings whenever the code causes an unexpected action or wrong results performance problems

Question: 2


Which two tasks should be created as functions insteadof as procedures? (Choose two.)


A. Reference host or bindvariables in a PL7SQL block of code


B.Tasks that compute and return multiple values to the calling environment


C. Tasks that compute a valuethat must be returned to the calling environment


D.Tasks performed in SQL that increase data independence by processing complexdata analysis within the Oracle server, rather than by retrieving the data intoan application

Answer: A, C


Reference host or bind variables in a PL7SQL block of code


Tasks that compute a value that must be returned to the calling environment



Question: 5


What would be the outcome whenthe code is executed?



A. It executes successfully.


B. It gives an error becausethe SAL variable is not visible in the increase function.


C. It gives an error becausethe increase function cannot be called from the RAISE_SALARY procedure.


D.It gives an error because the increase function and the RAISE_SALARY procedureshould be declared at the beginning of the declare section before all the otherdeclarations.