Pagini

marți, 12 martie 2013

Section 4 Lesson 5: Iterative Control: Nested Loops


Iterative Control: Nested Loops

 1.  What statement allows you to exit the outer loop at Point A in the following block?
DECLARE
 v_outer_done CHAR(3) := 'NO';
 v_inner_done CHAR(3) := 'NO';
BEGIN
 LOOP -- outer loop
  ...
   LOOP -- inner loop
   ...
   ... -- Point A
   EXIT WHEN v_inner_done = 'YES';
   ...
  END LOOP;
  ...
  EXIT WHEN v_outer_done = 'YES';
  ...
 END LOOP;
END;
(1) Points
     
    EXIT AT v_outer_done = 'YES';
    EXIT WHEN v_outer_done = 'YES'; (*)
    WHEN v_outer_done = YES EXIT;
    EXIT <<outer loop>>;
     
  2.  Which one of these statements about using nested loops is true? (1) Points
     
    All the loops must be labelled
    The outer loop must be labelled, but the inner loop need not be labelled
    The outer loop must be labelled if you want to exit the outer loop from within the inner loop (*)
    Both loops can have the same label
     
  3.  What will be displayed when the following block is executed?
DECLARE
  x NUMBER(6) := 0 ;
BEGIN
  FOR i IN 1..10 LOOP
    FOR j IN 1..5 LOOP
    x := x+1 ;
    END LOOP;
  END LOOP;
  DBMS_OUTPUT.PUT_LINE(x);
END;
(1) Points
     
    5
    10
    15
    50 (*)
     
  4.  When the following code is executed, how many lines of output will be displayed?
BEGIN
  FOR i IN 1..5 LOOP
    FOR j IN 1..8 LOOP
      DBMS_OUTPUT.PUT_LINE(i || ',' || j);
    END LOOP;
    DBMS_OUTPUT.PUT_LINE(i);
  END LOOP;
END;
(1) Points
     
    80
    45 (*)
    14
    41
     
  5.  What type of loop statement would you write for Point A?
BEGIN
  FOR v_outerloop IN 1..3 LOOP
    -- Point A
     DBMS_OUTPUT.PUT_LINE('Outer loop is:'||v_outerloop||
     ' and inner loop is: '||v_innerloop);
     END LOOP;
  END LOOP;
END;
(1) Points
     
    WHILE v_innerloop <=5 LOOP
    FOR v_innerloop 1..5 LOOP (*)
    LOOP
    WHILE v_outerloop<v_innerloop LOOP
     
  6.  Look at the following code:
DECLARE
  v_blue NUMBER(3) := 0;
  v_red NUMBER(3) := 0;
BEGIN
<< blue >> LOOP
  v_blue := v_blue + 1;
  EXIT WHEN v_blue > 10;
  << red >> LOOP
    v_red := v_red + 1;
    EXIT WHEN v_red > 10;
     -- Line A
  END LOOP red;
END LOOP blue;
END;

What should you code at Line A to exit from the outer loop?
(1) Points
     
    EXIT;
    EXIT red;
    EXIT <<blue>>;
    EXIT blue; (*)

Section 4 Lesson 4: Iterative Control: While and For Loops


Iterative Control: While and For Loops
     
  1.  Look at the following code fragment:
i := 2;
WHILE i < 3 LOOP
   i := 4;
   DBMS_OUTPUT.PUT_LINE('The counter is: ' || i);
END LOOP;

How many lines of output will be displayed?
(1) Points
     
    No lines
    One line (*)
    Two lines
    The block will fail because you cannot use DBMS_OUTPUT.PUT_LINE inside a loop.
     
  2.  Look at the following block:
DECLARE
   v_date DATE := SYSDATE;
BEGIN
   WHILE v_date < LAST_DAY(v_date) LOOP
     v_date := v_date + 1;
   END LOOP;
   DBMS_OUTPUT.PUT_LINE(v_date);
END;

If today's date is 17th April 2007, what will be displayed when this block executes?
(1) Points
     
    01-MAY-07
    31-DEC-07
    4/30/2007 (*)
    4/17/2007
     
  3.  Which statement best describes when a FOR loop should be used? (1) Points
     
    When an EXIT WHEN statement must be coded.
    When an implicitly declared counter must increase by 1 in each iteration of the loop. (*)
    When we want to exit from the loop when a Boolean variable becomes FALSE.
    When the statements inside the loop must execute at least once.
     
  4.  You should use a WHILE loop when the number of iterations of the loop is known in advance. True or False? (1) Points
     
    True
    False (*)
     
  5.  Look at this code fragment: FOR i IN 1 .. 3 LOOP i := 4; DBMS_OUTPUT.PUT_LINE('The counter is: ' || i); END LOOP; How many lines of output will be displayed? (1) Points
     
    One
    Three
     Four
     The block will fail because you cannot change the value of i inside the loop. (*)
     
  6.  In a FOR loop, an explicitly declared counter is automatically incremented by 1 for each iteration of the loop. True or False? (1) Points
     
    True
     False (*)
     
 7.  In a WHILE loop, the controlling condition is checked at the start of each iteration. True or False?  (1) Points
     
    True (*)
     False
     
  8.  You want a loop that counts backwards from 10 through 1. How do you code that? (1) Points
     
    FOR i IN 10 .. 1 LOOP
    FOR i IN 1 .. 10 BY -1 LOOP
    FOR i IN REVERSE 1 .. 10 LOOP (*)
    FOR i IN REVERSE 10 .. 1 LOOP

Section 4 Lesson 3: Iterative Control: Basic Loops


Iterative Control: Basic Loops
     
  1.  What will be displayed when this block is executed?
DECLARE
  v_count NUMBER := 10;
  v_result NUMBER;
BEGIN
  LOOP
    v_count := v_count - 1;
    EXIT WHEN v_count < 5;
    v_result := v_count * 2;
  END LOOP;
  DBMS_OUTPUT.PUT_LINE(v_result);
END;
(1) Points
     
    8
    10 (*)
    12
    NULL
     
  2.  For which one of these tasks should you use a PL/SQL loop? (1) Points
     
    Updating the salary of one employee.
    Executing the same set of statements repeatedly until a condition becomes true. (*)
    Deciding whether a value is within a range of numbers.
    Making a decision based on whether a condition is true or not.
     
  3.  Look at this code:
DECLARE
  v_bool BOOLEAN := TRUE;
  v_date DATE;
BEGIN
  LOOP
    EXIT WHEN v_bool;
    SELECT SYSDATE INTO v_date FROM dual;
  END LOOP;
END;

How many times will the SELECT statement execute?
(1) Points
     
    Once.
    Twice.
    Never (the SELECT will not execute at all) (*)
    An infinite number of times because the EXIT condition will never be true
     
  4.  Which kind of loop is this?
i := 10;
LOOP
    i := i + 1;
    EXIT WHEN i > 30;
END LOOP;
(1) Points
     
    A FOR loop.
    A WHILE loop.
    A basic loop. (*)
    An infinite loop.
    A nested loop.
     
  5.  Examine the following code::
DECLARE
  v_count NUMBER := 0;
  v_string VARCHAR2(20);
BEGIN
  LOOP
    v_string := v_string || 'x';
    IF LENGTH(v_string) > 10 THEN
      EXIT;
    END IF;
    v_count := v_count + 1;
  END LOOP;
  DBMS_OUTPUT.PUT_LINE(v_count);
END;
What will be displayed when this block is executed?
(1) Points
     
    9
    10 (*)
    11
    xxxxxxxxxxx
     
  6.  You want to calculate and display the multiplication table for "sevens": 7x1=7, 7x2=14, 7x3=21 and so on. Which kind of PL/SQL construct is best for this?  (1) Points
     
    A loop (*)
    A CASE statement
    IF ... END IF;
    A Boolean variable.
     
  7.  What are the three kinds of loops in PL/SQL?  (1) Points
     
    ascending, descending, unordered
    infinite, finite, recursive
    IF, CASE, LOOP
    FOR, WHILE, basic (*)

     
  8.  How many EXIT statements can be coded inside a basic loop? (1) Points
     
    None.
    One only.
    Two.
     As many as you need, there is no limit. (*)

Section 4 Lesson 2: Conditional Control: Case Statements


Conditional Control: Case Statements

 Section 1
   
  1.  How must you end a CASE expression? (1) Points
     
    END; (*)
    ENDIF;
    END CASE;
    ENDCASE;
     
  2.  Examine the following code:
DECLARE
   v_a BOOLEAN;
   v_b BOOLEAN := FALSE;
   v_c BOOLEAN ;
BEGIN
   v_c := (v_a AND v_b);
   -- Line A
    ....
END;

What is the value of V_C at Line A?
(1) Points
     
    True
    False (*)
    NULL
    Undefined
     
  3.  What will be displayed when the following block is executed?
DECLARE
   v_age1 NUMBER(3);
   v_age2 NUMBER(3);
   v_message VARCHAR2(20);
BEGIN
   CASE
     WHEN v_age1 = v_age2 THEN v_message := 'Equal';
     WHEN v_age1 <> v_age2 THEN v_message := 'Unequal';
     ELSE v_message := 'Undefined';
   END CASE;
   DBMS_OUTPUT.PUT_LINE(v_message);
END;
(1) Points
     
    Equal
    Undefined (*)
    Unequal
    Nothing will be displayed because V_MESSAGE is set to NULL.
     
  4.  Examine the following code:
DECLARE
   v_score NUMBER(3);
   v_grade CHAR(1);
BEGIN
   v_grade := CASE v_score
   -- Line A
   ....

The CASE expression must convert a numeric score to a letter grade: 90 -> A, 80 -> B, 70 -> C and so on. What should be coded at Line A?
(1) Points
     
    WHEN 90 THEN grade := 'A'
    WHEN 90 THEN v_grade := 'A';
    WHEN 90 THEN 'A' (*)
    WHEN 90 THEN 'A';
     
  5.  What will be displayed when the following block is executed?
DECLARE
   v_age NUMBER(3);
   v_gender VARCHAR2(6) := 'Female';
   v_status VARCHAR2(20);
BEGIN
   CASE
     WHEN v_age >= 18 AND v_gender = 'Male' THEN v_status := 'Adult Male';
     WHEN v_age >= 18 AND v_gender = 'Female' THEN v_status := 'Adult Female';
     WHEN v_age < 18 AND v_gender = 'Male' THEN v_status := 'Junior Male';
     WHEN v_age < 18 AND v_gender = 'Female' THEN v_status := 'Junior Female';
     ELSE v_status := 'Other Value';
   END CASE;
   DBMS_OUTPUT.PUT_LINE(v_status);
END;
(1) Points
     
    Adult Male
    Junior Female
    Other Value (*)
    Nothing will be displayed because V_STATUS is set to NULL.
     
  6.  How must you end a CASE statement? (1) Points
     
    END;
    END CASE; (*)
    END IF;
    ENDCASE;
     
  7.  Examine the following code:
DECLARE
  v_score NUMBER(3);
  v_grade CHAR(1);
BEGIN
  CASE v_score
  -- Line A
  ....

The CASE statement must convert a numeric score to a letter grade: 90 -> A, 80 -> B, 70 -> C and so on.
What should be coded at Line A?
(1) Points
     
    WHEN 90 THEN v_grade := 'A'
    WHEN 90 THEN v_grade := 'A'; (*)
    WHEN 90 THEN 'A'
    WHEN 90 THEN 'A';
     
  8.  Look at the following code:
DECLARE
   x BOOLEAN := FALSE;
   y BOOLEAN := FALSE;
   z BOOLEAN ;
BEGIN
   z := (x OR NOT y);
   -- Line A
   ....
END;
What is the value of Z at Line A?
(1) Points
     
    True (*)
    False
    NULL
    An error will occur because you cannot combine two Boolean variables using "NOT".

Section 4 Lesson 1: Conditional Control: IF Statements


Conditional Control: IF Statements

 Section 1
 
  1.  Name three types of control structures in PL/SQL. (Choose three)  (1) Points
   (Choose all correct answers)
   
    LOOP statements (*)
    SELECT statements
    EXCEPTIONS
    IF statements (*)
    CASE statements (*)
   
  2.  You want to repeat a set of statements 100 times, incrementing a counter each time. What kind of PL/SQL control structure would you use? (1) Points
   
    IF...THEN...ELSE
    IF...THEN...ELSIF...ELSE
    CASE...WHEN...THEN
    A loop. (*)
   
  3.  A basic loop is a type of control structure used to change the logical flow of statements in a PL/SQL block. True or False? (1) Points
   
    True (*)
    False
   
  4.  Look at the following (badly written) code:
age := 5;

IF age<30 THEN mature := 'adult';
ELSIF age<22 THEN mature := 'teenager';
ELSIF age<13 THEN mature := 'child';
END IF;
DBMS_OUTPUT.PUT_LINE(mature);

What will be displayed when this code is executed?
(1) Points
   
    child
    teenager
    adult (*)
    adultteenagerchild
   
  5.  Which one of the following is correct syntax for an IF statement? (1) Points
   
    IF condition THEN DO statement1; statement2; END IF;
    IF condition THEN statement1; statement2; END IF; (*)
    IF condition THEN statement1; statement2; ENDIF;
    IF condition THEN statement1; AND statement2; END IF;
   
  6.  We want to execute one of three statements depending on whether the value in V_VAR is 10, 20 or some other value. What should be coded at Line A?
IF v_var = 10 THEN
statement1;
-- Line A
statement2;
ELSE
statement3;
END IF;
(1) Points
   
    ELSE IF v_var = 20 THEN
    ELSIF v_var = 20
    ELSIF v_var = 20 THEN (*)
    IF v_var = 20 THEN
   
  7.  What will be displayed when this block is executed?
DECLARE
   v_birthdate DATE;
BEGIN
   IF v_birthdate < '01-JAN-2000'
   THEN
     DBMS_OUTPUT.PUT_LINE(' Born in the 20th century ');
   ELSE
     DBMS_OUTPUT.PUT_LINE(' Born in the 21st century ');
   END IF;
END;
(1) Points
   
    Born in the 20th century
    Born in the 21st century (*)
    Exception raised because no date given
   
  8.  Which of the following statements are true about any of the PL/SQL conditional control structures such as IF ... , CASE ... and loops? (1) Points
   
    They allow the programmer to use logical tests to determine which statements are executed and which are not.

    They allow a set of statements to be executed repeatedly (i.e. more than once).

    They determine a course of action based on conditions.

    All of the above. (*)
   
  9.  What is wrong with the following trivial IF statement:
IF (v_job='President')
THEN v_salary := 10000;
(1) Points
   
    IF and THEN must be on the same line: IF (v_job='President') THEN ...
    The condition should be coded: IF (v_job := 'President')
    END IF; is missing (*)
    ELSE is missing

   
  10.  What will be displayed when this block is executed?
DECLARE
   v_bool1 BOOLEAN := NULL;
   v_bool2 BOOLEAN := NULL;
   v_char VARCHAR(10) := 'Start';
BEGIN
   IF (v_bool1 = v_bool2) THEN
     v_char:='Equal';
   ELSE v_char:='Not equal';
   END IF;
   DBMS_OUTPUT.PUT_LINE(v_char);
END;
(1) Points
   
    Equal
    Not equal (*)
    Start
    Nothing will be displayed. The block will fail because you cannot compare two null values.
   
  11.  What will be displayed when this block is executed?
DECLARE
   v_bool1 BOOLEAN := TRUE;
   v_bool2 BOOLEAN;
   v_char VARCHAR(4) := 'up';
BEGIN
   IF (v_bool1 AND v_bool2) THEN
     v_char:='down';
   ELSE v_char:='left';
   END IF;
   DBMS_OUTPUT.PUT_LINE(v_char);
END;
(1) Points
   
    up
    down
    left (*)
    null

Section 3 Lesson 2: Retrieving Data in PL/SQL


Retrieving Data in PL/SQL

 Section 1
   
  1.  Look at this PL/SQL block:
DECLARE
   v_count NUMBER;
BEGIN
   SELECT COUNT(*) INTO v_count
   FROM employees WHERE salary > 50000;
END;

No employees earn more than $50,000. Which of the following statements are true? (1) Points
    (Choose all correct answers)
   
    The SELECT will return value 0 into V_COUNT. (*)
    The SELECT will fail because it does NOT return exactly one row.
    The block will fail because variable V_SALARY was not declared.
    The SELECT returns exactly one row. (*)
    The block will fail because no results are displayed to the user.

  2.  Which one of these SQL statements can be directly included in a PL/SQL executable block?  (1) Points
   
    IF... THEN...;
    INSERT INTO...; (*)
    SELECT * FROM DUAL;
    SHOW USER;

  3.  It is good programming practice to create identifiers having the same name as column names. True or False? (1) Points
   
    True
    False (*)
   
  4.  Which of the following is NOT a valid guideline for retrieving data in PL/SQL?  (1) Points
   
    Terminate the SQL statement with a semicolon (;)
    Do NOT use a WHERE clause in SELECT statements. (*)
    Where possible, declare variables using the %TYPE attribute.
    Specify the same number of variables in the INTO clause as database columns in the SELECT clause.
   
  5.  Which SQL statements can be used directly in a PL/SQL block? (Choose two.)  (1) Points
  (Choose all correct answers)
   
    GRANT EXECUTE ON ...
    SELECT * INTO ... (*)
    REVOKE SELECT ON ...
    UPDATE employees SET... (*)
    ALTER TABLE employees ...
   
  6.  Does PL/SQL allow you to have a variable with the same name as a database column? (1) Points
   
    No
    Yes (*)
   
  7.  What will happen when the following block is executed?
DECLARE
    v_last employees.last_name%TYPE;
    v_first employees.first_name%TYPE;
    v_salary employees.salary%TYPE;
BEGIN
    SELECT first_name, last_name
    INTO v_first, v_last, v_salary
    FROM employees WHERE employee_id=100;
END;
(1) Points
   
    The block will fail because the SELECT statement returns more than one row.
    The block will fail because the SELECT is trying to read two columns into three PL/SQL variables. (*)
    The block will fail because V_LAST was declared before V_FIRST.
    The block will execute successfully, and the V_SALARY variable will be set to NULL.
   
  8.  When used in a PL/SQL block, which SQL statement must return exactly one row? (1) Points
   
    INSERT
    UPDATE
    SELECT (*)
    MERGE
    DELETE

Section 3 Lesson 1: Review of SQL DML


Review of SQL DML

Section 1
   
  1.  When inserting a row into a table, the VALUES clause must include a value for every column of the table. True or False?  (1) Points
   
    True
    False (*)
   
  2.  What would be the result of the following statement: DELETE employees;  (1) Points
   
    Nothing, no data will be changed.
    All rows in the employees table will be deleted. (*)
    The statement will fail because it contains a syntax error.
    The row with EMPOYEE_ID=100 will be deleted.

  3.  Is it possible to insert more than one row at a time using an INSERT statement with a VALUES clause?  (1) Points
   
    No, you can only create one row at a time when using the VALUES clause. (*)
    Yes, you can list as many rows as you want, just remember to separate the rows with commas.
    No, there is no such thing as INSERT ... VALUES.
   
  4.  What is wrong with the following statement?
MERGE INTO emps e
USING new_emps ne
ON (e.employee_id = ne.employee_id)
WHEN MATCHED
THEN UPDATE SET ne.salary = e.salary
WHEN NOT MATCHED
THEN INSERT VALUES
(ne.employee_id, ne.first_name, ne.last_name, .... ne.salary, ....);
(1) Points
   
    The UPDATE clause must include the target table name: UPDATE emps SET ....
    The INSERT clause must include a column list as well as a list of column values.
    The SET clause is trying to update the source table from the target table. (*)
    Nothing is wrong, the statement will execute correctly.
   
  5.  You want to modify existing rows in a table. Which of the following are NOT needed in your SQL statement? (Choose two).  (1) Points
   
    A MODIFY clause.
    An UPDATE clause.
    The name of the table.
    The name of the column(s) you want to modify.
    A new value for the column you want to modify (this can be an expression or a subquery).
    A WHERE clause, (*)
   
  6.  What is wrong with the following statement?
DELETE from employees WHERE salary > (SELECT MAX(salary) FROM employees);
(1) Points
   
    You cannot code a subquery inside a DELETE statement.
    You cannot use inequality operators such as "<" and ">" inside a DELETE statement.
    Nothing is wrong, the statement will execute correctly. (*)
   
  7.  Look at this SQL statement:
MERGE INTO old_trans ot
USING new_trans nt
ON (ot.trans_id = nt.trans_id) .... ;

OLD_TRANS is the source table and NEW_TRANS is the target table. True or false?
(1) Points
   
    True
    False (*)
   
  8.  To modify an existing row in a table, you can use the ________ statement.  (1) Points
   
    MODIFY
    INSERT
    ALTER
    UPDATE (*)

Section 2 Lesson 7: Good Programming Practices


Good Programming Practices

Section 1
   
  1.  Comments change how a PL/SQL program executes, so an unsuitable comment can cause the program to fail. True or False?  (1) Points
   
    True
    False (*)
   
  2.  Examine the following code:
DECLARE
v_first_name varchar2 (30);
v_salary number (10);
BEGIN
SELECT first_name, salary
INTO v_first_name, v_salary
FROM employees
WHERE last_name = 'King';
END;

Which programming guideline would improve this code?
(1) Points
   
    Use a suitable naming convention for variables.
    Indent the code to make it more readable. (*)
    Use upper and lower case consistently.
   
  3.  What symbol is used to comment a series of lines?  (1) Points
   
    / / before and after the comment
    /* */ before and after the comment (*)
    * * before and after the comment
   
  4.  Which of the following are examples of good programming practice? (Choose two.) (1) Points
  (Choose all correct answers)
   
    Use the %TYPE attribute to declare a variable according to another previously declared variable or database column. (*)

    Declare one or more identifiers per line for improved performance.
    For clarity, use column names as identifiers.
    Use meaningful names for identifiers. (*)

  5.  Which of the following are examples of good programming practice? (Choose three.)  (1) Points
   (Choose all correct answers)
   
    Document code with comments. (*)
    Use implicit data type conversions.
    Develop naming conventions for identifiers and other objects. (*)
    Indent code so that it can be read more easily. (*)
    Use table column names as the names of variables.

  6.  Which of the following makes PL/SQL code easier to read and maintain?  (1) Points
   
    Place multiple statements on the same line.
    Type everything in lowercase.
    Use suitable comments in the code. (*)

Section 2 Lesson 6: Nested Blocks and Variable Scope


Nested Blocks and Variable Scope

 Section 1
   
  1.  A variable is global to an outer block and local to the inner block. True or False? (1) Points
    True
     False (*)
   
  2.  Examine the following code. What is the scope of variable v_myvar?
DECLARE
    v_myvar NUMBER;
BEGIN
    v_myvar := 6;
    DECLARE
       v_hervar NUMBER;
    BEGIN
       v_hervar := 4;
    END;
END;
(1) Points
   
    Only the outer block
    Both the inner and the outer block (*)
    Only the inner block
    Neither block

  3.  What values will be displayed when the following code is executed?
DECLARE
    v_mynum NUMBER;
BEGIN
    v_mynum := 7;
    DECLARE
       v_mynum NUMBER;
    BEGIN
       DBMS_OUTPUT.PUT_LINE(v_mynum);
       v_mynum := 3;
    END;
    DBMS_OUTPUT.PUT_LINE(v_mynum);
END;
(1) Points
   
    3,3
    3,7
    Null, 7 (*)
    Null, 3
   
  4.  Examine the following code. Line A causes an exception. What will be displayed when the block is executed?
DECLARE
    x NUMBER := 10;
    y NUMBER;
BEGIN
    x := 15;
    y := 'Happy'; -- Line A
    x := 20;
EXCEPTION
    WHEN OTHERS THEN
    DBMS_OUTPUT.PUT_LINE(x);
END;
(1) Points
   
    10
    20
    15 (*)
    Nothing is displayed
   
  5.  For the anonymous block below, what is the correct reference to the father's date of birth in the inner block?
<<outer>>
DECLARE
   v_father_name VARCHAR2(20):='Patrick';
   v_date_of_birth DATE:='20-Apr-1972';
BEGIN
   DECLARE
     v_child_name VARCHAR2(20):='Mike';
     v_date_of_birth DATE:='12-Dec-2002';
...
(1) Points
   
    v_date_of_birth.outer
    <<outer>>v_date_of_birth
    <<outer.v_date_of_birth>>
    outer.v_date_of_birth (*)
   
  6.  An inner block is nested within an outer block. An exception occurs within the inner block, but the inner block does not have an EXCEPTION section. What happens?  (1) Points
   
    The exception is propagated to the outer block and the remaining executable statements in the outer block are skipped. (*)

    The exception is propagated to the outer block and the remaining executable statements in the outer block are executed.

    Oracle automatically tries to re-execute the inner block.

    The outer block is bypassed and the exception is always propagated to the calling environment.
   
  7.  What is wrong with this code?
DECLARE
    v_a NUMBER;
BEGIN
    v_a := 27;
    <<inner_block>>
    BEGIN
       v_a := 15;
END;
(1) Points
   
    The outer block has no label.

    Variable v_a is out of scope within the inner block and therefore cannot be referenced.

    The inner block has no END; statement. (*)

    Nothing is wrong, the code will execute successfully.
   
  8.  What happens when an exception occurs in the executable section of a PL/SQL block? (1) Points
   
    Oracle keeps trying to re-execute the statement which caused the exception.

    The remaining statements in the executable section are not executed. Instead, Oracle looks for an EXCEPTION section in the block. (*)

    The remaining statements in the executable section of the block are executed.

    The exception is always propagated to the calling environment.
   
  9.  Examine the following nested blocks. Line B causes an exception. What will be displayed when this code is executed?
DECLARE
    var_1 NUMBER;
BEGIN
    var_1 := 4;
    DECLARE
       var_2 NUMBER;
    BEGIN
       var_2 := 'Unhappy'; -- Line B
       var_1 := 8;
    END;
    var_1 := 12;
EXCEPTION
    WHEN OTHERS THEN
       DBMS_OUTPUT.PUT_LINE(var_1);
END;
(1) Points
   
    Unhappy

    12

    8

    4 (*)
   
  10.  Examine the following code. At Line A, we want to assign a value of 25 to the outer block's variable (V1). What must we do?
DECLARE
    v_myvar NUMBER; -- This is V1
BEGIN
    DECLARE
       v_myvar NUMBER := 8;
       BEGIN
          -- Line A
       END;
END;
(1) Points
   
    At Line A, code:
v_myvar := 25;

    Label both blocks and at line A, code:
v_myvar := 25;

    It cannot be done because the outer block's v_myvar is out of scope at Line A.

    Label the outer block and (at Line A) dot-prefix v_myvar with the block label. (*)

    It cannot be done because the outer block's v_myvar is in scope but not visible at Line A.

Section 2 Lesson 5: Writing PL/SQL Executable Statements


Writing PL/SQL Executable Statements

 Section 1
   
  1.  Examine the following code: DECLARE x VARCHAR2(20); BEGIN x:= 5 + 4 * 5 ; DBMS_OUTPUT.PUT_LINE(x); END; What value of x will be displayed?  (1) Points
   
    45
    29
    25 (*)
    14
   
  2.  Which explicit function is used to convert a character into a number?  (1) Points
   
    TO_DATE
    TO_NUMBER (*)
    TO_CHAR
   
  3.  Using implicit conversions is good programming practice.  (1) Points
   
    True
    False (*)
   
  4.  Examine the following block. What should be coded at Line A?
DECLARE
v_char VARCHAR2(8) := '24/09/07';
v_date DATE;
BEGIN
v_date := ....... Line A
END;
(1) Points
   
    v_date := FROM_CHAR(v_char,'dd/mm/yy');
    v_date := TO_DATE(v_char,'dd/mm/yy'); (*)
    v_date := v_char;

  5.  When PL/SQL converts data automatically from one data type to another, it is called _______ conversion.  (1) Points
   
    Explicit
    Implicit (*)
    TO_CHAR
   
  6.  The DECODE and MAX functions can be used in PL/SQL statements. True or False?  (1) Points
   
    True
    False (*)
   
  7.  Which of the following are valid PL/SQL operators? (Choose three.)  (1) Points (Choose all correct answers)
   
    Concatenation (*)
    Exception
    Exponential (*)
    Arithmetic (*)
   
  8.  Which of the following statements about implicit conversions is NOT true?  (1) Points
   
    Code containing implicit conversions typically runs faster than code containing explicit conversions. (*)
    Code containing implicit conversions may not work in the future if Oracle changes the conversion rules.
    Code containing implicit conversions is harder to read and understand.

  9.  Which of the following is correct?  (1) Points
   
    v_family_name = SMITH;
    V_FAMILY_NAME = SMITH;
    v_family_name := SMITH;
    v_family_name := 'SMITH'; (*)
   
  10.  The TO_CHAR function is used for explicit data type conversions. True or False?  (1) Points
   
    True (*)
    False
   
  11.  Explicit conversions can be slower than implicit conversions. True or False? (1) Points
   
    True
    False (*)

  12.  PL/SQL statements must be written on a single line. (1) Points
    True
    False (*)
   
  13.  What will happen when the following code is executed?
DECLARE v_new_date DATE;
BEGIN
v_new_date := 'Today';
DBMS_OUTPUT.PUT_LINE(v_new_date);
END;
(1) Points
   
    The block will execute and display today's date.
    The block will execute and display the word "Today".
    The block will fail because the character value "Today" cannot be implicitly converted to a date. (*)
   
  14.  The LENGTH and ROUND functions can be used in PL/SQL statements. True or False? (1) Points
   
    True (*)
    False
   
  15.  PL/SQL can implicitly convert a CHAR to a NUMBER, provided the CHAR contains a numeric value, for example '123'. True or False? (1) Points
   
    True (*)
    False
   
  16.  Which of the following data type conversions can be done implicitly? (Choose two.)  (1) Points
   (Choose all correct answers)
    DATE to NUMBER
    NUMBER to VARCHAR2 (*)
    NUMBER to PLS_INTEGER (*)

Section 2 Lesson 4: Using Scalar Data Types


Using Scalar Data Types

 Section 1
   
  1.  If you use the %TYPE attribute, you can avoid hard-coding the column name. True or False?  (1) Points
   
    True
    False (*)

  2.  Code is easier to read if you declare one identifier per line. True or False? (1) Points
   
    True (*)
    False
   
  3.  Which of the following is NOT a good guideline for declaring variables?  (1) Points
   
    Declare one identifier per line
    Use column names as identifiers (*)
    Use NOT NULL when the variable must have a value

  4.  Which of the following variable declarations does NOT use a number data type?  (1) Points
   
    v_count PLS_INTEGER := 0;
    v_median_age NUMBER(6,2);
    v_students LONG; (*)
    v_count BINARY_INTEGER;

  5.  When declared using %TYPE, a variable will inherit ____ from the column on which it is based.  (1) Points
   
    The name of the column
    The value of the column
    The data type and size of the column (*)
   
  6.  Which of the following is NOT a character data type?  (1) Points
   
    VARCHAR2
    BOOLEAN (*)
    CHAR
    LONG

Section 2 Lesson 3: Recognizing Data Types


Recognizing Data Types

 Section 1
 
  1.  Which of the folowing are scalar data types? (Choose three.)  (1) Points (Choose all correct answers)
   
    Array
    Character (*)
    Table
    Date (*)
    Boolean (*)

  2.  Which of the following is a composite data type? (1) Points
   
    CLOB
    VARCHAR2
    RECORD (*)
    DATE

 3.  What are the data types of the variables in the following declaration?
DECLARE
fname VARCHAR2(20);
fname VARCHAR2(15) DEFAULT 'fernandez';
BEGIN
...
(1) Points
   
    Scalar (*)
    Composite
    LOB
   
  4.  A datatype may specify a valid range of values. True or False?  (1) Points
   
    True (*)
    False
   
  5.  A Scalar data type holds a ____ value.  (1) Points
   
    Multi
    Large
    Single (*)
   
  6.  A datatype specifies and restricts the possible data values that can be assigned to a variable. True or False? (1) Points
   
    True (*)
    False

   
  7.  Which of the following are PL/SQL data types? (Choose three.)  (1) Points (Choose all correct answers)
   
    Large Objects (LOB) (*)
    Lexical
    Scalar (*)
    Delimiter
    Composite (*)

Section 2 Lesson 2: Recognizing PL/SQL Lexical Units


Recognizing PL/SQL Lexical Units

Section 1
   
  1.  What is a lexical unit?  (1) Points
   
    A data type for a column
    A building block of a PL/SQL block (*)
    A type of variable
   
  2.  What characters must enclose non-numeric literal values?  (1) Points
   
    Double quotes: " "
    Parentheses: ()
    Single quotes: ' ' (*)

  3.  The name of a variable is an example of an identifier. True or False?  (1) Points
   
    True (*)
    False
   
  4.  Which of the following symbols can be used to enclose a comment in PL/SQL?  (1) Points
   
    ? ?
    */ / *
    :: ::
    /* */ (*)
   
  5.  Which of the following are lexical units? (Choose two.) (1) Points (Choose all correct answers)
   
    Data types
    PL/SQL blocks
    Identifiers (*)
    Literals (*)
   
  6.  Which of the following is a valid naming convention for an identifier? (Choose two.)  (1) Points (Choose all correct answers)
   
    Can include letters or numbers (*)
    Cannot contain a reserved word (*)
    Can be over 30 characters
    Can start with a number or special character

Section 2 Lesson 1: Using Variables in PL/SQL


 Using Variables in PL/SQL

Section 1
 
  1.  Evaluate the following declaration. Determine whether or not it is legal.
DECLARE
    name,dept VARCHAR2(14);
(1) Points
   
    legal
    illegal (*)

  2.  Examine the following variable declarations:
DECLARE v_number NUMBER := 10; v_result NUMBER;
Which of the following correctly assigns the value 50 to V_RESULT?  (1) Points
   
    v_result := v_number * 5;
    v_result := 100 / 2;
    v_result := ROUND(49.77);
    All of the above. (*)
   
  3.  After they are declared, variables can be used only once in an application. True or False?  (1) Points
   
    True
    False (*)
   
  4.  Constants must be initialized. True or False?  (1) Points
   
    True (*)
    False
   
  5.  Evaluate the following declaration. Determine whether or not it is legal. DECLARE
    test NUMBER(5);  (1) Points
   
    legal (*)
    illegal
   
  6.  Which of the following are required when declaring a variable? (Choose two.)  (1) Points (Choose all correct answers)
   
    Identifier name (*)
    CONSTANT
    Data type (*)
    NOT NULL
   
  7.  Variables may be reused. True or False?  (1) Points
    True (*)
    False
   
  8.  A function called FORMAT_TODAYS_DATE accepts no parameters and returns today's date in the format: Month DD, YYYY
The following anonymous block invokes the function:

DECLARE v_today DATE; BEGIN -- invoke the function here

Which of the following statements correctly assigns the date variable v_today to the value returned by the format_todays_date function?
(1) Points
   
    format_todays_date := v_today('Month DD, YYYY');
    v_today := format_todays_date ('Month DD, YYYY');
    v_today := format_todays_date(v_today);
    v_today := TO_DATE(format_todays_date, 'Month DD, YYYY'); (*)

Section 1 Lesson 3: Creating PL/SQL Blocks


 Section 1
 
  1.  What are the characteristics of an anonymous block? (Choose two.) (1) Points (Choose all correct answers)
   
    Unnamed (*)
    Stored in the database
    Compiled each time the application is executed (*)
    Can be declared as procedures or as functions
   
  2.  Which sections of a PL/SQL block are optional?  (1) Points
    Declaration and Executable
    Declaration and Exception (*)
    Exception only
    Executable only

  3.  Which statements are mandatory in a PL/SQL block? (Choose two.)  (1) Points (Choose all correct answers)
    DECLARE
    BEGIN (*)
    EXCEPTION
    END; (*)

 4.  Which lines of code will correctly display the message "Hello World" ? (Choose two.)  (1) Points
   (Choose all correct answers)
    DBMS_OUTPUT('Hello World');
    DBMS_OUTPUT.PUT_LINE('Hello World'); (*)
    DBMS_OUTPUT.PUT_LINE('Hello' || 'World');
    DBMS_OUTPUT.PUT_LINE('Hello' || ' ' || 'World'); (*)
   
  5.  How can you display results to check that a PL/SQL block is working correctly?  (1) Points
    You don't need to do anything, the results will display automatically.
    Use an Exception section
    Use DBMS_OUTPUT.PUT_LINE (*)
    Write a C or Java program to display the results
   
  6.  What are the characteristics of a PL/SQL stored subprogram? (Choose two.)  (1) Points (Choose all correct answers)
    Named (*)
    Not stored in the database
    Can be invoked at any time (*)
    Do not exist after they are executed
   
  7.  This PL/SQL anonymous block will execute successfully. True or False?
DECLARE
    v_date DATE := SYSDATE;
    DBMS_OUTPUT.PUT_LINE(v_date);
END;
(1) Points
   
    True
    False (*)
   
  8.  Which of the following is NOT a PL/SQL programming environment?  (1) Points
    Oracle jDeveloper
    SQL*Plus
    gSQL*Plus (*)
    SQL Workshop in Application Express
 
  9.  What is wrong with this PL/SQL anonymous block?
BEGIN
    DBMS_OUTPUT.PUT_LINE('Hello');
    DBMS_OUTPUT.PUT_LINE(' and Goodbye');
(1) Points
   
    The Declaration section is missing
    The Exception section is missing
    There is nothing wrong with the block, it will work fine.
    The END; statement is missing (*)
   
  10.  In a PL/SQL block, which of the following should not be followed by a semicolon? (1) Points
   
    DECLARE (*)
    END
    All SQL statements
    All PL/SQL statements
   
  11.  Which of the following is a PL/SQL programming environment?  (1) Points
   
    Oracle Cdeveloper
    Java*Plus
    PL/SQL Express
    SQL*Workshop in Application Express (*)

Section 1 Lesson 2: Benefits of PL/SQL


Section 1
   
  1.  When multiple SQL statements are combined into PL/SQL blocks, performance improves. True or False? (1) Points
    True (*)
    False
   
  2.  Procedural constructs give you better control of your SQL statements and their execution. True or False?  (1) Points
   True (*)
   False
   
  3.  PL/SQL differs from C and Java in which of the following ways? (Choose two.)  (1) Points (Choose all correct answers)
    It requires an Oracle database or tool. (*)
    It does not support object-oriented programming.
    It is the most efficient language to use with an Oracle database. (*)
    It is the most complex programming language to learn.
    It is not portable to other operating systems.

 4.  Which of the following can be compiled as a standalone program outside the database?  (1) Points
    A program developed in PL/SQL
    A program developed in Java
    A program developed in C
    All the above
    Programs developed in Java or C, but not in PL/SQL. (*)
     
  5.  Which of the following can be done using PL/SQL?  (1) Points
    Create complex applications.
    Retrieve and modify data in Oracle database tables.
    Manage database tasks such as security.
    Create custom reports.
    All of the above (*)
   
  6.  You can create a Web site application written entirely in PL/SQL. True or False?  (1) Points
   True (*)
   False

Section 1 Lesson 1: Introduction to PL/SQL


Section 1

1. In which three ways does PL/SQL extend the SQL programming language? (1) Points
(Choose all correct answers)
By adding procedural constructs. (*)
By adding compound constructs.
By adding iterative control. (*)
By adding conditional control. (*)

2.  Which of the following statements is true? (1) Points
You can embed PL/SQL statements within SQL code.
You can embed SQL statements within PL/SQL code. (*)
You can embed procedural constructs within SQL code.
None.

3.  Which of the following statements is true? (1) Points
PL/SQL is an Oracle proprietary, procedural, 3GL programming language. (*)
PL/SQL is an Oracle proprietary, procedural, 4GL programming language.
PL/SQL is an Oracle proprietary, nonprocedural, 3GL programming language.
PL/SQL is an ANSI-compliant, procedural programming language.

4. PL/SQL stands for:  (1) Points
Processing Language for SQL.
Procedural Language extension for SQL. (*)
Primary Language for SQL.
Proprietary Language for SQL.

5.  Nonprocedural languages allow the programmer to produce a result when a series of steps are followed. True or False? (1) Points
True
False (*)

6.  Which of the following statements about SQL is true? (1) Points
SQL is an Oracle proprietary, nonprocedural, 4GL programming language.
SQL is an Oracle proprietary, procedural, 3GL programming language.
SQL is an ANSI-compliant, nonprocedural, 4GL programming language. (*)
SQL is an ANSI-compliant, procedural, 4GL programming language.