PLSQL Oracle Teste Copie
PLSQL Oracle Teste Copie
Review your answers, feedback, and question scores below. An asterisk (*) indicates a correct answer. Section 1 (Answer all questions in this section) 1. (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. Which of the following statements about SQL is true? Mark for Review
Correct
2. (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.
Correct
3. (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.
4. (1) Points
Processing Language for SQL. Procedural Language extension for SQL. (*) Primary Language for SQL. Proprietary Language for SQL.
Correct
5. Nonprocedural languages allow the programmer to produce a result when a series of steps are followed. True or False? Mark for Review (1) Points True False (*)
Correct
6. In which three ways does PL/SQL extend the SQL programming language? Mark for Review (1) Points (Choose all correct answers) By adding procedural constructs. (*)
By adding compound constructs. By adding iterative control. (*) By adding conditional control. (*)
Correct
Review your answers, feedback, and question scores below. An asterisk (*) indicates a correct answer. Section 1 (Answer all questions in this section) 1. PL/SQL differs from C and Java in which of the following ways? (Choose two.) Mark for Review (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.
Correct
2. Which of the following can be compiled as a standalone program outside the Mark for Review
All the above Programs developed in Java or C, but not in PL/SQL. (*)
Correct
3. (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 (*)
Correct
4. When multiple SQL statements are combined into PL/SQL blocks, performance improves. True or False? Mark for Review (1) Points True (*) False
Correct
5. Procedural constructs give you better control of your SQL statements and their execution. True or False? Mark for Review (1) Points True (*) False
Correct
6. You can create a Web site application written entirely in PL/SQL. True or False? Mark for Review (1) Points True (*) False
Correct
Page 1 of 1
Review your answers, feedback, and question scores below. An asterisk (*) indicates a correct answer. Section 1 (Answer all questions in this section) 1. Evaluate the following declaration. Determine whether or not it is legal.
Correct
2. After they are declared, variables can be used only once in an application. True Mark for Review
Correct
Evaluate the following declaration. Determine whether or not it is legal. Mark for Review
Correct
4. (1) Points
Correct
5. Which of the following are required when declaring a variable? (Choose two.) Mark for Review (1) Points (Choose all correct answers) Identifier name (*) CONSTANT Data type (*) NOT NULL
Correct
6. (1) Points
Correct
7. 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. (*)
Correct
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? Mark for Review (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'); (*)
Correct
Page 1 of 1
Review your answers, feedback, and question scores below. An asterisk (*) indicates a correct answer. Section 1 (Answer all questions in this section) 1. Review (1) Points Double quotes: " " Parentheses: () Single quotes: ' ' (*) What characters must enclose non-numeric literal values? Mark for
Correct
Mark
Correct
3. Which of the following is a valid naming convention for an identifier? (Choose two.) Mark for Review (1) Points (Choose all correct answers) Can include letters or numbers (*) Cannot be a reserved word (*)
Correct
4. (1) Points
A data type for a column A building block of a PL/SQL block (*) A type of variable
Correct
5. (1) Points
Which of the following are lexical units? (Choose two.) Mark for Review
(Choose all correct answers) Data types PL/SQL blocks Identifiers (*) Literals (*)
Correct
6. Which of the following symbols can be used to enclose a comment in PL/SQL? Mark for Review (1) Points ?? */ / * :: ::
/* */ (*)
Correct
Page 1 of 1
Review your answers, feedback, and question scores below. An asterisk (*) indicates a correct answer. Section 1 (Answer all questions in this section) 1. What are the data types of the variables in the following declaration?
DECLARE fname VARCHAR2(20); fname VARCHAR2(15) DEFAULT 'fernandez'; BEGIN ... Mark for Review (1) Points Scalar (*) Composite LOB
Correct
2. (1) Points
Correct
Mark for
(Choose all correct answers) Array Character (*) Table Date (*) Boolean (*)
Correct
Mark for
Correct
5. (1) Points
Correct
Which of the following are PL/SQL data types? (Choose three.) Mark for
(Choose all correct answers) Large Objects (LOB) (*) Lexical Scalar (*) Delimiter Composite (*)
Correct
7. A datatype specifies and restricts the possible data values that can be assigned to a variable. True or False? Mark for Review (1) Points True (*) False
Correct
Page 1 of 1
Review your answers, feedback, and question scores below. An asterisk (*) indicates a correct answer. Section 1 (Answer all questions in this section) 1. which it is based. (1) Points When declared using %TYPE, a variable will inherit ____ from the column on Mark for Review
The name of the column The value of the column The data type and size of the column (*)
Correct
2. (1) Points
Correct
3. If you use the %TYPE attribute, you can avoid hard-coding the column name. True or False? Mark for Review (1) Points True False (*)
Correct
4. Code is easier to read if you declare one identifier per line. True or False? Mark for Review (1) Points True (*) False
Correct
Which of the following is NOT a good guideline for declaring variables? Mark
Declare one identifier per line Use column names as identifiers (*) Use NOT NULL when the variable must have a value
Correct
6. Which of the following variable declarations does NOT use a number data type? Mark for Review (1) Points v_count PLS_INTEGER := 0; v_median_age NUMBER(6,2); v_students LONG; (*) v_count BINARY_INTEGER;
Correct
Review your answers, feedback, and question scores below. An asterisk (*) indicates a correct answer. Section 1 (Answer all questions in this section) 1. What will happen when the following code is executed?
END; Mark for Review (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. (*)
Correct
2. The LENGTH and ROUND functions can be used in PL/SQL statements. True or False? Mark for Review (1) Points True (*) False
Correct
3. Which of the following data type conversions can be done implicitly? (Choose two.) Mark for Review (1) Points (Choose all correct answers) DATE to NUMBER NUMBER to VARCHAR2 (*) NUMBER to PLS_INTEGER (*)
Correct
4. The DECODE and MAX functions can be used in PL/SQL statements. True or False? Mark for Review (1) Points True
False (*)
5. When PL/SQL converts data automatically from one data type to another, it is called _______ conversion. Mark for Review (1) Points Explicit Implicit (*) TO_CHAR
Correct
6. (1) Points
Correct
Mark for
Correct
Mark
Correct
Mark
(Choose all correct answers) Concatenation (*) Exception Exponential (*) Arithmetic (*)
Correct
10.
DECLARE  x VARCHAR2(20); BEGIN x:= 5 + 4 * 5 ; DBMS_OUTPUT.PUT_LINE(x); END; What value of x will be displayed? Mark for Review (1) Points 45 29
25 (*) 14
Correct
11. Explicit conversions can be slower than implicit conversions. True or False? Mark for Review (1) Points True False (*)
Correct
12. Which of the following statements about implicit conversions is NOT true? Mark for Review (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.
Correct
Correct
14. The TO_CHAR function is used for explicit data type conversions. True or False? Mark for Review (1) Points True (*) False
Correct
15. PL/SQL can implicitly convert a CHAR to a NUMBER, provided the CHAR contains a numeric value, for example '123'. True or False? Mark for Review (1) Points True (*) False
Correct
16.
DECLARE v_char VARCHAR2(8) := '24/09/07'; v_date DATE; BEGIN v_date := ....... Line A END; Mark for Review (1) Points v_date := FROM_CHAR(v_char,'dd/mm/yy'); v_date := TO_DATE(v_char,'dd/mm/yy'); (*) v_date := v_char;
Correct
Review your answers, feedback, and question scores below. An asterisk (*) indicates a correct answer. Section 1 (Answer all questions in this section) 1. What is wrong with this code?
DECLARE v_a NUMBER; BEGIN v_a := 27; <<inner_block>> BEGIN v_a := 15; END; Mark for Review (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.
Correct
2. A variable is global to an outer block and local to the inner block. True or False? Mark for Review (1) Points True False (*)
Correct
3. 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; Mark for Review (1) Points 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.
4. 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? Mark for Review (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.
Correct
5.
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; Mark for Review (1) Points 3,3 3,7 Null, 7 (*) Null, 3
Correct
6. 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);
Correct
7. What happens when an exception occurs in the executable section of a PL/SQL block? Mark for Review (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.
Correct
8.
DECLARE v_myvar NUMBER; BEGIN v_myvar := 6; DECLARE v_hervar NUMBER; BEGIN v_hervar := 4; END; END; Mark for Review (1) Points
Only the outer block Both the inner and the outer block (*) Only the inner block Neither block
Correct
9. 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'; ... Mark for Review (1) Points v_date_of_birth.outer <<outer>>v_date_of_birth <<outer.v_date_of_birth>> outer.v_date_of_birth (*)
Correct
10. 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; Mark for Review (1) Points Unhappy 12 8 4 (*)
Correct
Review your answers, feedback, and question scores below. An asterisk (*) indicates a correct answer. Section 1 (Answer all questions in this section) 1. Which of the following makes PL/SQL code easier to read and maintain? Mark for Review (1) Points Place multiple statements on the same line. Type everything in lowercase. Use suitable comments in the code. (*)
Correct
2. Which of the following are examples of good programming practice? (Choose two.) Mark for Review (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. (*)
Correct
3. Comments change how a PL/SQL program executes, so an unsuitable comment can cause the program to fail. True or False? Mark for Review (1) Points True False (*)
Correct
4.
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? Mark for Review (1) Points Use a suitable naming convention for variables. Indent the code to make it more readable. (*)
Correct
5. Which of the following are examples of good programming practice? (Choose three.) Mark for Review (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.
Correct
6. (1) Points
/ / before and after the comment /* */ before and after the comment (*) * * before and after the comment
Correct
Review your answers, feedback, and question scores below. An asterisk (*) indicates a correct answer. Section 1
(Answer all questions in this section) 1. Is it possible to insert more than one row at a time using an INSERT statement with a VALUES clause? Mark for Review (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.
Correct
2.
DELETE from employees WHERE salary > (SELECT MAX(salary) FROM employees); Mark for Review (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. (*)
Correct
3.
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? Mark for Review (1) Points True
False (*)
Correct
4. To modify an existing row in a table, you can use the ________ statement. Mark for Review (1) Points MODIFY INSERT ALTER UPDATE (*)
Correct
5. What would be the result of the following statement: DELETE employees; Mark for Review (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.
6.
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, ....);
Mark for Review (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.
Correct
7. When inserting a row into a table, the VALUES clause must include a value for every column of the table. True or False? Mark for Review (1) Points True False (*)
8. You want to modify existing rows in a table. Which of the following are NOT needed in your SQL statement? (Choose two). Mark for Review (1) Points (Choose all correct answers) 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. (*)
Correct
Review your answers, feedback, and question scores below. An asterisk (*) indicates a correct answer. Section 1 (Answer all questions in this section) 1. It is good programming practice to create identifiers having the same name as column names. True or False? Mark for Review (1) Points True False (*)
Correct
Which one of these SQL statements can be directly included in a PL/SQL Mark for Review
IF... THEN...; INSERT INTO...; (*) SELECT * FROM DUAL; SHOW USER;
3.
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; Mark for Review (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.
Correct
4.
DECLARE v_count NUMBER; BEGIN SELECT COUNT(*) INTO v_count FROM employees WHERE salary > 50000; END; No employees earn more than $50000. Which of the following statements are true? (Choose two). Mark for Review (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.
Correct
5. Which SQL statements can be used directly in a PL/SQL block? (Choose two.) Mark for Review (1) Points (Choose all correct answers) GRANT EXECUTE ON ... SELECT * INTO ... (*) REVOKE SELECT ON ... UPDATE employees SET... (*) ALTER TABLE employees ...
Correct
6. Does PL/SQL allow you to have a variable with the same name as a database Mark for Review
No Yes (*)
7. When used in a PL/SQL block, which SQL statement must return exactly one row? Mark for Review (1) Points INSERT UPDATE SELECT (*) MERGE
DELETE
Correct
8. Which of the following is NOT a valid guideline for retrieving data in PL/SQL? Mark for Review (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.
Correct
Review your answers, feedback, and question scores below. An asterisk (*) indicates a correct answer. Section 1 (Answer all questions in this section) 1. following statement? Which implicit cursor attribute identifies the number of rows updated in the
DBMS_OUTPUT.PUT_LINE (__________ || ' rows updated.'); Mark for Review (1) Points SQL%COUNT SQL%NUMBER SQL%ROWCOUNT (*) SQLROW%COUNT
Correct
2. You can use implicit cursor attributes such as SQL%ROWCOUNT directly inside a DML statement. For example: INSERT INTO log_table VALUES (SYSDATE, USER, SQL%ROWCOUNT); True or False? Mark for Review (1) Points True False (*)
3. There are three employees in department 90. What will be displayed when the following code is executed? DECLARE v_open CHAR(3) := 'NO'; BEGIN UPDATE employees SET job_id = 'ST_CLERK' WHERE department_id = 90; IF SQL%FOUND THEN v_open := 'YES'; END IF; DBMS_OUTPUT.PUT_LINE(v_open || ' ' || SQL%ROWCOUNT); END; Mark for Review (1) Points NO 3 YES 1 YES 3 (*) Nothing will be displayed. The block will fail because you cannot use implicit cursor attributes directly in a call to DBMS_OUTPUT.PUT_LINE.
Correct
4. (1) Points
DML statements and SELECT statements which return a single row. (*) COMMIT and ROLLBACK statements only.
Correct
5.
UPDATE wf_countries SET population = population * 1.1 WHERE country_id = 229; Which kind of cursor is used for this statement? Mark for Review (1) Points An implicit cursor named "WF_COUNTRIES". An implicit cursor named "SQL". (*) An explicit cursor named "SQL". An explicit cursor which must be declared and named by the PL/SQL programmer.
Correct
6. Which of the following SQL DML commands can be used inside a PL/SQL block? Mark for Review (1) Points INSERT and UPDATE only. UPDATE and DELETE only. INSERT, UPDATE and DELETE only. INSERT, UPDATE, DELETE and MERGE. (*)
Correct
7. executed?
Employee_id 999 does not exist. What will happen when the following code is
DECLARE employee_id employees.employee_id%TYPE := 999; BEGIN UPDATE employees SET salary = salary * 1.1 WHERE employee_id = employee_id; END; Mark for Review (1) Points No rows are updated but the block completes successfully. Every employee row is updated. (*) An exception is raised because you cannot give a variable the same name as a table column. An exception is raised because the UPDATE statement did not modify any rows.
Review your answers, feedback, and question scores below. An asterisk (*) indicates a correct answer. Section 1 (Answer all questions in this section) 1. How many transactions are in the following block?
BEGIN INSERT INTO countries (country_id, country_name) VALUES ('XA', 'Xanadu'); INSERT INTO countries (country_id, country_name) VALUES ('NV', 'Neverland'); UPDATE countries SET country_name='Deutchland' WHERE country_id='DE'; UPDATE countries SET region_id=1 WHERE country_name LIKE '%stan'; END;
Four; each DML is a separate transaction Two; both the INSERTs are one transaction and both the UPDATEs are a second transaction. It depends on how many rows are updated - there will be a separate transaction for each row. One (*)
Correct
2. (1) Points
One As many as you want until you do a COMMIT or ROLLBACK. (*) As many as you can execute before the database does an AUTOSAVE. As many as you want until a different DML statement (UPDATE, DELETE or MERGE) is executed.
Correct
3.
BEGIN INSERT INTO animals VALUES ('aa','aardvarks'); SAVEPOINT sp_1; INSERT INTO animals VALUES ('bb','big birds'); SAVEPOINT sp_2; ROLLBACK TO sp_1; INSERT INTO animals VALUES ('cc','cool cats'); COMMIT; END;
Which row(s) will be in the ANIMALS table after this block is executed? Mark for Review (1) Points cool cats big birds and cool cats aardvaarks and cool cats (*) aardvaarks, big birds and cool cats
Correct
Mark for
In any section of the block: Declaration, Executable, or Exception. Only the Executable section. In the Executable and/or the Exception sections. (*) Nowhere; the COMMIT statement must be outside the block.
Correct
Review your answers, feedback, and question scores below. An asterisk (*) indicates a correct answer. Section 1 (Answer all questions in this section) 1. Which of the following statements are true about any of the PL/SQL conditional control structures such as IF ... , CASE ... and loops? Mark for Review (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. (*)
Correct
2. 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; Mark for Review (1) Points ELSE IF v_var = 20 THEN ELSIF v_var = 20 ELSIF v_var = 20 THEN (*) IF v_var = 20 THEN
Correct
3.
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; Mark for Review (1) Points Born in the 20th century Born in the 21st century (*) Exception raised because no date given
Correct
4.
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; Mark for Review (1) Points Equal Not equal (*) Start Nothing will be displayed. The block will fail because you cannot compare two null values.
Correct
Mark
LOOP statements (*) SELECT statements EXCEPTIONS IF statements (*) CASE statements (*)
Correct
6.
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; Mark for Review (1) Points up down left (*) null
Correct
7. 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? Mark for Review (1) Points True (*)
False
8.
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 Mark for Review
Correct
9. 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? Mark for Review (1) Points IF...THEN...ELSE IF...THEN...ELSIF...ELSE CASE...WHEN...THEN A loop. (*)
Correct
Mark
IF condition THEN statement1; statement2; END IF; (*) IF condition THEN statement1; statement2; ENDIF;
Correct
11.
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
Correct
Review your answers, feedback, and question scores below. An asterisk (*) indicates a correct answer. Section 1 (Answer all questions in this section) 1. (1) Points END; (*) ENDIF; END CASE; ENDCASE; How must you end a CASE expression? Mark for Review
Correct
2.
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'; <br /> WHEN v_age < 18 AND v_gender = 'Female' THEN v_status := 'Junior Female'; <br /> ELSE v_status := 'Other Value'; END CASE; DBMS_OUTPUT.PUT_LINE(v_status); END; Mark for Review (1) Points Adult Male Junior Female Other Value (*)
Correct
3. 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? Mark for Review (1) Points WHEN 90 THEN v_grade := 'A' WHEN 90 THEN v_grade := 'A'; (*) WHEN 90 THEN 'A' WHEN 90 THEN 'A';
4.
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? Mark for Review (1) Points
Correct
5. (1) Points
Correct
6.
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? Mark for Review (1) Points WHEN 90 THEN grade := 'A' WHEN 90 THEN v_grade := 'A'; WHEN 90 THEN 'A' (*)
Correct
7.
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; Mark for Review (1) Points Equal Undefined (*) Unequal Nothing will be displayed because V_MESSAGE is set to NULL.
Correct
8.
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?
Mark for Review (1) Points True (*) False NULL An error will occur because you cannot combine two Boolean variables using "NOT".
Correct
Review your answers, feedback, and question scores below. An asterisk (*) indicates a correct answer. Section 1 (Answer all questions in this section) 1. 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? Mark for Review (1) Points A loop (*) A CASE statement IF ... END IF; A Boolean variable.
Correct
For which one of these tasks should you use a PL/SQL loop?
Mark for
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.
Correct
3.
i := 10; LOOP i := i + 1; EXIT WHEN i > 30; END LOOP; Mark for Review (1) Points A FOR loop. A WHILE loop. A basic loop. (*) An infinite loop. A nested loop.
Correct
4.
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? Mark for Review (1) Points 9 10 (*) 11 xxxxxxxxxxx
Correct
5. (1) Points
ascending, descending, unordered infinite, finite, recursive IF, CASE, LOOP FOR, WHILE, basic (*)
Correct
6.
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; Mark for Review (1) Points
8 10 (*) 12 NULL
Correct
7.
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? Mark for Review (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
Correct
Mark for
Correct
Review your answers, feedback, and question scores below. An asterisk (*) indicates a correct answer. Section 1 (Answer all questions in this section) 1. 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? Mark for Review (1) Points 01-MAY-07 31-DEC-07 4/30/2007 (*) 4/17/2007
Correct
2. 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. (*) Mark for Review
Correct
3. You should use a WHILE loop when the number of iterations of the loop is known in advance. True or False? Mark for Review (1) Points True False (*)
Correct
4.
i := 2; WHILE i < 3 LOOP <br /> i := 4; DBMS_OUTPUT.PUT_LINE('The counter is: ' || i); END LOOP; How many lines of output will be displayed? (1) Points Mark for Review
The block will fail because you cannot use DBMS_OUTPUT.PUT_LINE inside a loop.
Correct
5. In a FOR loop, an explicitly declared counter is automatically incremented by 1 for each iteration of the loop. True or False? Mark for Review (1) Points True False (*)
Mark
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.
7. In a WHILE loop, the controlling condition is checked at the start of each iteration. True or False? Mark for Review (1) Points True (*) False
Correct
8. You want a loop that counts backwards from 10 through 1. How do you code that? Mark for Review (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
Correct
Review your answers, feedback, and question scores below. An asterisk (*) indicates a correct answer. Section 1 (Answer all questions in this section) 1. 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; Mark for Review (1) Points 80 45 (*) 14 41 When the following code is executed, how many lines of output will be
Correct
Mark
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
Correct
3.
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; Mark for Review (1) Points 5 10 15 50 (*)
Correct
4.
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; Mark for Review (1) Points WHILE v_innerloop <=5 LOOP FOR v_innerloop 1..5 LOOP (*) LOOP WHILE v_outerloop<v_innerloop LOOP
5.
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; Mark for Review
Correct
6. block?
What statement allows you to exit the outer loop at Point A in the following
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; Mark for Review (1) Points EXIT AT v_outer_done = 'YES'; EXIT WHEN v_outer_done = 'YES'; (*) WHEN v_outer_done = YES EXIT; EXIT <<outer loop>>;
Correct
Review your answers, feedback, and question scores below. An asterisk (*) indicates a correct answer. Section 1 (Answer all questions in this section) 1. (1) Points You can use ORDER BY when declaring an explicit cursor. You can not use an INTO clause when declaring an explicit cursor. An explicit cursor can select from only one table. No joins are allowed. (*) An explicit cursor must be DECLAREd before it can be OPENed. Which one of the following statements is NOT true? Mark for Review
Correct
2. One (and only one) employee has LAST_NAME = 'Grant'. You need to code: SELECT ... FROM employees WHERE last_name = 'Grant'; Which type of cursor should you use, and why? Mark for Review (1) Points An implicit cursor, because there is only one 'Grant'. An implicit cursor, because SELECT is a SQL statement and implicit cursors are always called "SQL". An explicit cursor, because there could be more than one 'Grant' in the future. (*) An explicit cursor, because you can use an implicit cursor only for DML statements.
Correct
3. (1) Points
You cannot OPEN or CLOSE an implicit cursor. Why not? Mark for Review
Correct
Which of the following best describes the difference between implicit and Mark for Review
Implicit cursors are used for SELECT statements, while explicit cursors are used for DML statements. Implicit cursor are named by the PL/SQL programmer, while explicit cursors are always named SQL. Implicit cursors are defined automatically by Oracle, while explicit cursors must be declared by the PL/SQL programmer. (*) Implicit cursors store rows on disk, while explicit cursors store rows in memory.
Correct
5.
DECLARE CURSOR emp_curs IS SELECT last_name, salary FROM employees; v_last_name employees.last_name%TYPE; v_salary employees.salary%TYPE; BEGIN FETCH emp_curs INTO v_last_name, v_salary; OPEN emp_curs; FETCH emp_curs INTO v_last_name, v_salary; CLOSE emp_curs; END; Mark for Review (1) Points When FETCHing more than one row, you MUST use a loop. The cursor declaration does not include a WHERE condition. The cursor declaration does not include an INTO clause.
Correct
6. You must make sure you have the same number of variables in your INTO statement as you have in your SELECT list. True or False? Mark for Review (1) Points True (*) False
Correct
7. (1) Points
You need to UPDATE more than one row in a table. You want to use a MERGE statement. You need to SELECT more than one row from a table. (*) You want to be able to ROLLBACK a transaction if needed.
Correct
Mark
CURSOR country_curs IS SELECT country_name, region_name FROM wf_countries c, wf_world_regions r WHERE c.region_id = r.region_id; CURSOR country_curs IS SELECT country_name INTO v_country_name FROM wf_countries; (*) CURSOR country_curs IS SELECT country_name FROM wf_countries ORDER BY population DESC;
CURSOR country_curs IS SELECT country_name FROM wf_countries WHERE region_id IN (SELECT region_id FROM wf_world_regions WHERE LOWER(region_name) LIKE '%asia%');
Correct
9.
DECLARE CURSOR dept_curs IS SELECT department_name FROM departments; v_dept_name departments.department_name%TYPE; BEGIN OPEN dept_curs; LOOP FETCH dept_curs INTO v_dept_name; EXIT WHEN dept_curs%NOTFOUND; DBMS_OUTPUT.PUT_LINE(v_dept_name); CLOSE dept_curs; END LOOP; END; Mark for Review (1) Points Nothing is wrong, all the rows will be FETCHed and displayed. The OPEN statement should be inside the loop. The EXIT WHEN ... statement should be coded outside the loop. The CLOSE statement should be coded after END LOOP; (*) The loop should be a WHILE loop, not a basic loop.
Correct
10. You have declared a cursor EMP_CURSOR to select many rows from the EMPLOYEES table. The following five statements will be in the executable section: A B C D E FETCH emp_cursor INTO v_empno,v_last_name; OPEN emp_cursor; END LOOP; CLOSE emp_cursor; LOOP
In which order should you code these statements? Mark for Review (1) Points B, E, A, C, D (*) E, B, A, C, D B, E, A, D, C B, A, E, D, C
Correct
11. There are 8 countries in REGION_ID 13 (Central America). What will happen when the following code is executed? DECLARE CURSOR country_curs IS SELECT country_name FROM wf_countries WHERE region_id = 13; v_country_name wf_countries.country_name%TYPE; BEGIN OPEN country_curs; WHILE country_curs%FOUND LOOP FETCH country_curs INTO v_country_name; DBMS_OUTPUT.PUT_LINE(v_country_name); END LOOP; CLOSE country_curs; END; Mark for Review (1) Points Eight rows will be fetched and displayed successfully. The last seven rows will be fetched and displayed. The block will execute, but no rows will be displayed. (*) The block will fail because you can not use a WHILE loop with an explicit cursor. None of the above.
12. variables?
Which statement correctly places the employee id and last name into the stated
DECLARE CURSOR emp_cursor IS SELECT employee_id, last_name FROM employees WHERE department_id = 30; v_empno employees.employee_id%TYPE; v_lname employees.last_name%TYPE; BEGIN OPEN emp_cursor; -- Point A ... Mark for Review (1) Points GET emp_cursor INTO v_empno, v_lname; FETCH emp_cursor INTO v_empno, v_lname; (*) GET emp_cursor.employee_id, emp_cursor.last_name INTO v_empno, v_lname; FETCH emp_cursor.employee_id, emp_cursor.last_name INTO v_empno, v_lname;
Correct
13.
DECLARE CURSOR emp_curs IS SELECT last_name FROM employees; v_last_name employees.last_name%TYPE; BEGIN OPEN emp_curs; LOOP -- Point A FETCH emp_curs INTO v_last_name; EXIT WHEN emp_curs%NOTFOUND; DBMS_OUTPUT.PUT_LINE(v_last_name); END LOOP; CLOSE emp_curs; END;
At Point A (after you have OPENed the cursor) another user updates an employee's last_name from 'Smith' to 'Jones' and immediately COMMITs. When your block FETCHes this row, which value will be fetched and displayed? Mark for Review (1) Points 1 Smith (*) Jones Smith and Jones (the row will be fetched twice) An INVALID_CURSOR exception will be raised when you try to FETCH the row.
14.
DECLARE CURSOR dept_curs IS SELECT department_name FROM departments; v_dept_name departments.department_name%TYPE; BEGIN OPEN dept_curs; LOOP FETCH dept_curs INTO v_dept_name; DBMS_OUTPUT.PUT_LINE(v_dept_name); EXIT WHEN dept_curs%NOTFOUND; END LOOP; CLOSE dept_curs; END; There are 10 rows in the DEPARTMENTS table. What will happen when this code is executed? Mark for Review (1) Points 10 rows will be displayed. 10 rows will be displayed, followed by a row of NULL values. The last row will be displayed twice. (*) A NO_DATA_FOUND exception will be raised.
The loop will execute for ever; the same 10 rows will be displayed over and over again.
Review your answers, feedback, and question scores below. An asterisk (*) indicates a correct answer. Section 1 (Answer all questions in this section) 1. Every PL/SQL anonymous block must start with the keyword DECLARE. True or False? Mark for Review (1) Points True False (*)
Correct
In which part of the PL/SQL block are declarations of variables defined? Mark
Correct
Mark
(Choose all correct answers) DECLARE (*) BEGIN EXCEPTION (*) END;
Correct
4. Which component of Oracle Application Express is used to enter and run SQL statements and PL/SQL blocks? Mark for Review (1) Points Application Builder SQL Workshop (*) Utilities Object Browser
Correct
5. Which of the following tools can NOT be used to develop and test PL/SQL code? Mark for Review (1) Points Oracle Jdeveloper Oracle Application Express Oracle JSQL (*) Oracle iSQL*Plus
Correct
6. What is the purpose of using DBMS_OUTPUT.PUT_LINE in a PL/SQL block? Mark for Review (1) Points To perform conditional tests To allow a set of statements to be executed repeatedly To display results to check if our code is working correctly (*) To store new rows in the database
Correct
Mark for
Exceptions can be ported to different operating systems Blocks can be sent to the operating system. PL/SQL code can be developed on one platform and deployed on another (*) PL/SQL code can be run on any operating system without a database
Correct
8. PL/SQL can be used not only with an Oracle database, but also with any kind of relational database. True or False? Mark for Review (1) Points True False (*)
Correct
9. Which of the following statements about exception handling in PL/SQL is false? Mark for Review
(1) Points You can prepare for database exceptions by creating exception handlers. You can prepare for application exceptions by creating exception handlers. Exception handling code tells your program what to do when an error is encountered. Exception handling code can be grouped together in a PL/SQL block. None of the above (*)
Mark for
variables conditional statements reusable program units constants nonprocedural constructs (*)
Correct
Review your answers, feedback, and question scores below. An asterisk (*) indicates a correct answer. Section 1 (Answer all questions in this section) 11. The P in PL/SQL stands for: Mark for Review
Correct
Mark
PL/SQL and SQL are both ANSI-compliant. PL/SQL and SQL can be used with many types of databases, including Oracle. PL/SQL and SQL are both Oracle proprietary programming languages. PL/SQL allows basic program logic and control flow to be combined with SQL statements. (*)
Correct
Section 2 (Answer all questions in this section) 13. Review (1) Points (Choose all correct answers) Identifiers (*) Table Columns Which of the following are PL/SQL lexical units? (Choose two.) Mark for
Correct
Mark for
(Choose all correct answers) yesterday (*) yesterday's date number_of_students_in_the_class v$testresult (*) #students
Mark for
(Choose all correct answers) Full Name students_street_address (*) v_code (*) #hours completion_%
Correct
16.
DECLARE maxsalary NUMBER(7) = 5000; Mark for Review (1) Points Correct. Not correct. (*)
Correct
17. Identify which of the following assignment statements are valid. (Choose three.) Mark for Review (1) Points (Choose all correct answers) v_last_name := Chandra; v_blackout_date := '31-DEC-2006'; (*) v_population := 333444; (*) v_music_type := 'ROCK'; (*)
Correct
18.
Correct
19. Variables can be assigned a value in both the Executable and Declaration sections of a PL/SQL program. True or False? Mark for Review (1) Points True (*) False
Correct
Mark
Correct
Review your answers, feedback, and question scores below. An asterisk (*) indicates a correct answer. Section 2 (Answer all questions in this section) 21. for Review (1) Points Data type (*) Table name Column name Constraint If you are using the %TYPE attribute, you can avoid hard coding the: Mark
Correct
Mark for Review (1) Points 2 and 3 2, 3 and 4 1, 2 and 3 (*) 1, 2, 3 and 4
Correct
23. declaration?
DECLARE TYPE dept_table_type IS TABLE OF departments%ROWTYPE INDEX BY PLS_INTEGER; v_dept_table dept_table_type; ... Mark for Review (1) Points Scalar Composite (*) LOB
Correct
It is the value of a variable. It specifies a storage format, constraints, and a valid range of values for a variable. (*) It allows different kinds of data to be stored in a single variable.
Correct
25. Type of a variable determines the range of values the variable can have and the set of operations that are defined for values of the type. Mark for Review (1) Points True (*) False
Correct
26.
DECLARE x VARCHAR2(6) := 'Chang'; BEGIN DECLARE x VARCHAR2(12) := 'Susan'; BEGIN x := x || x; END; DBMS_OUTPUT.PUT_LINE(x); END; Mark for Review (1) Points Susan Chang (*) ChangChang SusanChang The code will fail with an error
Correct
27.
DECLARE varA NUMBER := 12; BEGIN DECLARE varB NUMBER := 8; BEGIN varA := varA + varB; END; DBMS_OUTPUT.PUT_LINE(varB); END; Mark for Review (1) Points 8 12 Nothing, the block will fail with an error (*) 20 VarB
Correct
28. Examine the following code. At Line A, we want to assign a value of 22 to the outer block's variable v_myvar. What code should we write at Line A? <<outer_block>> DECLARE v_myvar NUMBER; BEGIN <<inner_block>> DECLARE v_myvar NUMBER := 15; BEGIN -- Line A END; END; Mark for Review (1) Points outer_block.v_myvar := 22; (*) v_myvar := 22; <<outer_block>>.v_myvar := 22;
v_myvar(outer_block) := 22; We cannot reference the outer block's variable because both variables have the same name
Correct
29. In the following code, Line A causes an exception. What value will be displayed when the code is executed? DECLARE outer_var VARCHAR2(50) := 'My'; BEGIN outer_var := outer_var || ' name'; DECLARE inner_var NUMBER; BEGIN inner_var := 'Mehmet'; -- Line A outer_var := outer_var || ' is'; END; outer_var := outer_var || ' Zeynep'; EXCEPTION WHEN OTHERS THEN DBMS_OUTPUT.PUT_LINE(outer_var); END; Mark for Review (1) Points My My name (*) My name is My name is Zeynep
Correct
When nested blocks are used, which blocks can or must be labeled?
Mark
The inner block must be labeled, the outer block can be labeled. Both blocks must be labeled
Nested blocks cannot be labeled The outer block must be labeled if it is to be referred to in the inner block. (*)
Correct
Review your answers, feedback, and question scores below. An asterisk (*) indicates a correct answer. Section 2 (Answer all questions in this section) 31. What good programming practice would make this code easier to follow?
DECLARE v_myvar VARCHAR2(20); BEGIN DECLARE v_myvar VARCHAR2(15); BEGIN ... END; END; Mark for Review (1) Points Using a consistent naming convention for variables Labeling the blocks (*) Avoid using column names as identifiers Developing a case convention for the code
Correct
Mark for
Correct
33. To comment a single line of code, use two dashes after the comment. True or False? Mark for Review (1) Points True False (*)
Correct
34. Single row character functions are valid SQL functions in PL/SQL. True or False? Mark for Review (1) Points True (*) False
Correct
35.
DECLARE v_myvar NUMBER; BEGIN v_myvar := 1 + 2 * 3; v_myvar := v_myvar * 2; END; Mark for Review (1) Points 81 49
14 (*) 18
Correct
36. The DECODE function is available in PL/SQL procedural statements. True or False? Mark for Review (1) Points True False (*)
Correct
37. If today's date is 14th June 2007, which statement will correctly convert today's date to the value: June 14, 2007 ? Mark for Review (1) Points TO_CHAR(sysdate) TO_DATE(sysdate) TO_DATE(sysdate,'Month DD, YYYY') TO_CHAR(sysdate, 'Month DD, YYYY') (*)
Correct
38. myvar :=
'That is the question'; Mark for Review (1) Points An assignment statement must be a single line of code Nothing is wrong, the statement is fine
An assignment statement must have a single semicolon at the end (*) "myvar" is not a valid name for a variable Character literals should not be enclosed in quotes
Correct
39. PL/SQL can convert a VARCHAR2 value containing alphabetic characters to a NUMBER value. True or False? Mark for Review (1) Points True False (*)
Correct
Which of the following are valid assignment statements? (Choose two.) Mark
(Choose all correct answers) v_string = 'Hello'; v_string := Hello; v_number := 17 + 34; (*) v_string := 'Hello'; (*) v_date := 28-DEC-06;
Correct
Review your answers, feedback, and question scores below. An asterisk (*) indicates a correct answer. Section 2 (Answer all questions in this section) 41. ______ conversion. (1) Points When you use a function to convert data types in a PL/SQL program, it is called Mark for Review
Correct
Section 3 (Answer all questions in this section) 42. Review (1) Points All the DML statements in a single PL/SQL block A related set of SQL DML statements which must be executed either completely or not at all (*) A single SQL statement that updates multiple rows of a table A SELECT statement based on a join of two or more database tables Which of the following best describes a database transaction? Mark for
Correct
43.
BEGIN INSERT INTO countries (id, name) VALUES ('XA', 'Xanadu'); SAVEPOINT XA; INSERT INTO countries (id, name)
VALUES ('NV','Neverland'); COMMIT; ROLLBACK TO XA; END; What happens when the block of code finishes? (1) Points Mark for Review
No data is inserted and no errors occur. No data is inserted and an error occurs Two rows are inserted and no errors occur. Two rows are inserted and an error occurs. (*)
Correct
44. Which of the following is NOT a good guideline for retrieving data in PL/SQL? Mark for Review (1) Points Declare the receiving variables using %TYPE The WHERE clause is optional in nearly all cases. (*) Specify the same number of variables in the INTO clause as database columns in the SELECT clause. THE SELECT statement should fetch exactly one row.
Correct
Which one of these SQL statements can be directly included in a PL/SQL Mark for Review
DESCRIBE employees;
Correct
46. is executed?
Which rows will be deleted from the EMPLOYEES table when the following code
DECLARE salary employees.salary%TYPE := 12000; BEGIN DELETE FROM employees WHERE salary > salary; END; Mark for Review (1) Points All rows whose SALARY column value is greater than 12000. All rows in the table. No rows. (*) All rows whose SALARY column value is equal to 12000.
Correct
47.
DECLARE v_salary employees.salary%TYPE; BEGIN Which of the following is a correct use of the INTO clause? (1) Points SELECT salary INTO v_salary FROM employees WHERE employee_id=100; Mark for Review
Correct
Mark for
Correct
49. You declare an implicit cursor in the DECLARE section of a PL/SQL block. True or False? Mark for Review (1) Points True False (*)
Correct
50. Assume there are 5 employees in Department 10. What happens when the following statement is executed? UPDATE employees SET salary=salary*1.1; Mark for Review (1) Points All employees get a 10% salary increase. (*) No rows are modified because you did not specify "WHERE department_id=10" A TOO_MANY_ROWS exception is raised. An error message is displayed because you must use the INTO clause to hold the new salary.
Correct
Review your answers, feedback, and question scores below. An asterisk (*) indicates a correct answer. Section 4 (Answer all questions in this section) 1. Which of the following blocks produces the same output as this block?
END LOOP; END; Mark for Review (1) Points DECLARE i PLS_INTEGER := 0; BEGIN WHILE i<3 LOOP DBMS_OUTPUT.PUT_LINE(i); i := i + 1; END LOOP; END;
DECLARE i PLS_INTEGER := 0; BEGIN WHILE i<3 LOOP i := i + 1; DBMS_OUTPUT.PUT_LINE(i); END LOOP; END; (*) DECLARE i PLS_INTEGER := 0; BEGIN WHILE i<3 LOOP DBMS_OUTPUT.PUT_LINE(i); END LOOP; i := i+ 1; END;
Correct
Mark
When the number of iterations is known When repeating a sequence of statements until the controlling condition is no longer true (*)
When assigning a value to a Boolean variable When testing whether a variable is null
Correct
3. In a FOR loop, an implicitly declared counter automatically increases or decreases with each iteration. True or False? Mark for Review (1) Points True (*) False
Correct
Mark
When the number of iterations is known (*) When testing the value in a Boolean variable When the controlling condition must be evaluated at the start of each iteration
Correct
5.
BEGIN FOR i in 1 ..3 LOOP DBMS_OUTPUT.PUT_LINE (i); i := i + 1; END LOOP; END; Mark for Review (1) Points It will display 1, 2, 3. It will display 2, 3, 4.
It will result in an error because you cannot modify the counter in a FOR loop. (*) It will result in an error because the counter was not explicitly declared.
Correct
6.
v_counter := 1; LOOP EXIT WHEN v_counter = 5; v_counter := v_counter + 1; END LOOP; What is the value of V_COUNTER after the loop is finished? (1) Points 5 (*) 6 1 This is an infinite loop; the loop will never finish. Mark for Review
Correct
Which one of these tasks is best done using a LOOP statement? Mark for
Assigning a letter grade to a numerical score Calculating and displaying the sum of all integers from 1 to 100 (*) Testing if a condition is true, false or null Fetching and displaying an employee's last name from the database
Correct
8. (1) Points
Correct
9.
DECLARE v_counter PLS_INTEGER := 1; BEGIN LOOP DBMS_OUTPUT.PUT_LINE(v_counter); v_counter := v_counter + 1; EXIT WHEN v_counter = 5; END LOOP; END; What is the last value of V_COUNTER that is displayed? Mark for Review (1) Points 5 6 4 (*) This is an infinite loop; the loop will never finish.
Correct
10. The EXIT statement can be located anywhere inside a basic loop. True or False? Mark for Review
Correct
Review your answers, feedback, and question scores below. An asterisk (*) indicates a correct answer. Section 4 (Answer all questions in this section) 11. What will be the value of v_sal_desc after the following code is executed?
DECLARE v_salary NUMBER(6,2) := NULL; v_sal_desc VARCHAR2(10); BEGIN CASE WHEN v_salary < 10000 THEN v_sal_desc := 'Low Paid'; WHEN v_salary >= 10000 THEN v_sal_desc := 'High Paid'; END CASE; END; Mark for Review (1) Points High Paid Low Paid Null The code will fail and return an exception (*)
Correct
What will be the value of variable c after the following code is executed?
b BOOLEAN := FALSE; c NUMBER; BEGIN c := CASE WHEN a AND b THEN 10 WHEN NOT a THEN 20 WHEN a OR b THEN 30 ELSE 40 END CASE; END; Mark for Review (1) Points 30 (*) 20 40 10
Correct
13.
What will be the value of variable c after the following code is executed?
DECLARE a BOOLEAN := TRUE; b BOOLEAN := NULL; c NUMBER; BEGIN IF a AND b THEN c := 2; ELSIF a OR b THEN c := 0; ELSE c := 1; END IF; END; Mark for Review (1) Points 1 Null 0 (*) 2
Correct
14.
What will be the value of v_result after the following code is executed?
DECLARE v_grade CHAR(1) := NULL; v_result VARCHAR2(10); BEGIN CASE v_grade WHEN ('A' OR 'B') THEN v_result := 'Very Good'; WHEN ('E' OR 'F') THEN v_result := 'Poor'; ELSE v_result := 'In Between'; END CASE; END; Mark for Review (1) Points Poor In Between (*) Null Very Good
Correct
15. You want to assign a value to v_result which depends on the value of v_grade: if v_grade = 'A' set v_result to 'Very Good' and so on. DECLARE v_grade CHAR(1); v_result VARCHAR2(10); BEGIN v_result := CASE v_grade The next line should be Mark for Review (1) Points WHEN v_grade = 'A' THEN 'Very Good' WHEN 'A' THEN 'Very Good'; WHEN 'A' THEN v_result := 'Very Good';
16. In the following code fragment, you want to exit from the outer loop at Line A if v_number = 6. Which statement would you write on Line A? <<big_loop>> WHILE condition_1 LOOP <<small_loop>> FOR i IN 1..10 LOOP DBMS_OUTPUT.PUT_LINE(i); -- Line A END LOOP; END LOOP; Mark for Review (1) Points IF v_number = 6 THEN EXIT; EXIT outer_loop WHEN v_number = 6; EXIT big_loop WHEN v_number = 6; (*) EXIT small_loop WHEN v_number = 6;
17. should look like this: 1x1=1 1x2=2 ..... 1 x 12 = 12 2x1=2 2x2=4 ..... 2 x 12 = 24 3x1=3 ..... ..... 12 x 12 = 144
You want to display multiplication tables for numbers up to 12. The display
Which of the following is an efficient way to do this in PL/SQL? Mark for Review
(1) Points Use two nested FOR loops. (*) Store all the numbers from 1 to 144 in a table, then fetch and display them using a cursor. Create a function which accepts two numbers as IN parameters and returns their product. Invoke the function 144 times. Write an anonymous block which contains 144 calls to DBMS_OUTPUT, each looking like: DBMS_OUTPUT.PUT_LINE('7 x 9 = 63');
Correct
BASIC loops WHILE loops FOR loops All of the above (*)
Correct
19.
BEGIN FOR i IN 1..5 LOOP FOR j IN 1..8 LOOP EXIT WHEN j = 7; DBMS_OUTPUT.PUT_LINE(i || j); END LOOP; END LOOP; END; How many lines of output will be displayed when this code is executed? Mark for Review (1) Points 35
6 30 (*) 40
Correct
20. How many ELSIF statements are you allowed to have in a compound IF Mark for Review
Only one As many as you want (*) They must match the same number as the number of ELSE statements. None; the command is ELSE IF;
Correct
Review your answers, feedback, and question scores below. An asterisk (*) indicates a correct answer. Section 4 (Answer all questions in this section) 21. You need to execute a set of statements 10 times, increasing a counter by 1 each time. Which of the following PL/SQL constructs can do this? (Choose three) Mark for Review (1) Points (Choose all correct answers) IF ... THEN ... ELSE A WHILE loop (*)
CASE ... WHEN ... THEN A FOR loop (*) A basic loop (*)
Correct
22. Examine the following code: DECLARE a BOOLEAN := TRUE; b BOOLEAN := FALSE; c BOOLEAN := TRUE; d BOOLEAN := FALSE; game char(4) := 'lost'; BEGIN IF ((a AND b) AND (c OR d)) THEN game := 'won'; END IF; What is the value of GAME at the end of this block? Mark for Review (1) Points NULL won' lost' (*) False
Correct
END IF;
Correct
24. You can use a control structure to change the logical flow of the execution of SQL statements. True or False? Mark for Review (1) Points True False (*)
Correct
(*)
Correct
26.
DECLARE a VARCHAR2(6) := NULL; b VARCHAR2(6) := NULL; BEGIN IF a = b THEN DBMS_OUTPUT.PUT_LINE('EQUAL'); ELSIF a != b THEN DBMS_OUTPUT.PUT_LINE('UNEQUAL'); ELSE DBMS_OUTPUT.PUT_LINE('OTHER'); END IF; END; Which word will be displayed? Mark for Review (1) Points UNEQUAL EQUAL Nothing will be displayed OTHER (*)
Correct
Section 5 (Answer all questions in this section) 27. What is wrong with the following code?
BEGIN FOR emp_rec IN (SELECT * FROM employees WHERE ROWNUM < 10 FOR UPDATE NOWAIT) LOOP DBMS_OUTPUT.PUT_LINE(emp_rec%ROWCOUNT || emp_rec.last_name):
END LOOP; END; Mark for Review (1) Points You cannot use FOR UPDATE NOWAIT with a cursor FOR loop using a subquery. You cannot reference %ROWCOUNT with a cursor FOR loop using a subquery. (*) The field EMP_REC.LAST_NAME does not exist. You cannot use ROWNUM with a cursor FOR loop. The cursor has not been opened.
Correct
Examine the following code. To display the salary of an employee, what must be
DECLARE CURSOR emp_curs IS SELECT * FROM employees; BEGIN FOR emp_rec IN emp_curs LOOP DBMS_OUTPUT.PUT_LINE( -- what goes here ? ); END LOOP; END; Mark for Review (1) Points salary emp_curs.salary emp_rec.salary (*) employees.salary emp_rec.salary IN emp_curs
Correct
29. When using a cursor FOR loop, OPEN, CLOSE and FETCH statements should not be explicitly coded. True or False? Mark for Review (1) Points True (*) False
Correct
30.
DECLARE CURSOR emp_curs(p_dept_id NUMBER) IS SELECT * FROM employees WHERE department_id = p_dept_id; BEGIN FOR dept_rec IN (SELECT * FROM departments) LOOP DBMS_OUTPUT.PUT_LINE(dept_rec.department_name); FOR emp_rec IN emp_curs(dept_rec.department_id) LOOP DBMS_OUTPUT.PUT_LINE(emp_rec.last_name); END LOOP; END LOOP; END; Mark for Review (1) Points The DEPARTMENTS cursor must be declared with a parameter. You cannot use a cursor with a subquery in nested loops. You cannot use two different kinds of loop in a single PL/SQL block. EMP_CURS should not be DECLAREd explicitly; it should be coded as a subquery in a cursor FOR loop. Nothing is wrong. The block will execute successfully and display all departments and the employees in those departments. (*)
Correct
Review your answers, feedback, and question scores below. An asterisk (*) indicates a correct answer. Section 5 (Answer all questions in this section) 31. You want to display each row from the DEPARTMENTS table, and immediately underneath it, a list of all EMPLOYEES in that department. Which of the following is a good way to do this? Mark for Review (1) Points Use a single cursor, declared as SELECT * FROM employees GROUP BY department_id; Use two cursors, one for each of the two tables. Declare the EMPLOYEES cursor with a parameter for the DEPARTMENT_ID. (*) Write a SELECT statement which JOINs the two tables, and use CONNECT BY PRIOR and LEVEL to display the rows in the correct order. Use a single cursor with a cursor FOR loop. Change the physical model so that all employee and department data is in a single table.
Correct
When using multiple nested cursors, what kinds of loops can you use?
Mark
Cursor FOR loops only. Basic loops only. WHILE loops only. None of the above. All of the above. (*)
Correct
33. Review
Which of these statements about implicit cursors is NOT true? Mark for
(1) Points They are declared automatically by Oracle for single-row SELECT statements. They are declared automatically by Oracle for all DML statements. They are declared by the PL/SQL programmer. (*) They are opened and closed automatically by Oracle.
Correct
The employees table contains 20 rows. What will happen when the following
DECLARE CURSOR emp_curs IS SELECT job_id FROM employees; v_job_id employees.job_id%TYPE; BEGIN OPEN emp_curs; LOOP FETCH emp_curs INTO v_job_id; DBMS_OUTPUT.PUT_LINE(v_job_id); EXIT WHEN emp_curs%NOTFOUND; END LOOP; CLOSE emp_curs; END; Mark for Review (1) Points 20 job_ids will be displayed. The block will fail and an error message will be displayed. 21 rows of output will be displayed; the first job_id will be displayed twice. 21 rows of output will be displayed; the last job_id will be displayed twice. (*)
Correct
35.
DECLARE CURSOR emp_curs IS SELECT salary FROM employees; v_salary employees.salary%TYPE; BEGIN FETCH emp_curs INTO v_salary; DBMS_OUTPUT.PUT_LINE(v_salary); CLOSE emp_curs; END; Mark for Review (1) Points The first employee's salary will be fetched and displayed. All employees' salaries will be fetched and displayed. The execution will fail and an error message will be displayed. (*) The lowest salary value will be fetched and displayed.
Correct
36. After a cursor has been closed, it can be opened again in the same PL/SQL block. True or False? Mark for Review (1) Points True (*) False
Correct
For which type of SQL statement must you use an explicit cursor?
Mark
DML statements that process more than one row. Queries that return more than one row. (*) Data Definition Language (DDL) statements.
Correct
38.
DECLARE CURSOR emp_curs IS SELECT last_name, salary FROM employees ORDER BY salary; v_last_name employees.last_name%TYPE; v_salary employees.salary%TYPE; BEGIN ... Which of the following statements successfully opens the cursor and fetches the first row of the active set? Mark for Review (1) Points OPEN emp_curs; FETCH emp_curs INTO v_last_name, v_salary; (*) OPEN emp_curs; FETCH emp_curs INTO v_salary, v_last_name;
Correct
39.
OPEN my_curs; CLOSE my_curs; CURSOR my_curs IS SELECT my_column FROM my_table; FETCH my_curs INTO my_variable; Mark for Review
Correct
CURSOR emp_curs IS SELECT salary FROM employees WHERE last_name LIKE 'S%';
CURSOR emp_dept_curs IS SELECT e.salary, d.department_name FROM employees e, departments d WHERE e.department_id = d.department_id;
Correct
Review your answers, feedback, and question scores below. An asterisk (*) indicates a correct answer. Section 5 (Answer all questions in this section) 41. An implicit cursor can be used for a multiple-row SELECT statement. True or False? Mark for Review (1) Points True False (*)
Correct
42.
The DEPARTMENTS table contains four columns. Examine the following code:
DECLARE CURSOR dept_curs IS SELECT * FROM departments; v_dept_rec dept_curs%ROWTYPE; BEGIN OPEN dept_curs; FETCH dept_curs INTO v_dept_rec; ... Which one of the following statements is true? Mark for Review (1) Points v_dept_rec contains the first four rows of the departments table. The FETCH will fail because the structure of v_dept_rec does not match the structure of the cursor. v_dept_rec contains the first row of the departments table. (*) The block will fail because the declaration of v_dept_rec is invalid.
Correct
43. Assume that you have declared a cursor called C_EMP. Which of the following statements about C_EMP is correct? (Choose two.) Mark for Review (1) Points (Choose all correct answers) You can use c_emp%NOTFOUND to exit a loop. (*) You can fetch rows when c_emp%ISOPEN evaluates to FALSE. You can use c_emp%ROWCOUNT to return the number of rows returned by the cursor so far. (*) You can use c_emp%FOUND after the cursor is closed.
Correct
44. Which of the following statements about the %ISOPEN cursor attribute is true? Mark for Review (1) Points You can issue the %ISOPEN cursor attribute only when a cursor is open. You can issue the %ISOPEN cursor attribute only when more than one record is returned. You can issue the %ISOPEN cursor attribute when a cursor is open or closed. (*) If a cursor is open, then the value of %ISOPEN is false.
Correct
45. The employees table contains 11 columns. The following block declares a cursor and a record based on the cursor: DECLARE CURSOR emp_curs IS SELECT * FROM employees; v_emp_rec emp_curs%ROWTYPE; A twelfth column is now added to the employees table. Which of the following statements is true? Mark for Review
(1) Points The declaration of emp_rec must be changed to add an extra field. The block will still work correctly without any changes to the PL/SQL code. (*) The block will fail and an INVALID_CURSOR exception will be raised. An extra scalar variable must be declared to correspond to the twelfth table column.
Correct
46. You want to declare a cursor which locks each row fetched by the cursor. Examine the following code: DECLARE CURSOR emp_curs IS SELECT * FROM employees FOR -- Point A Which of the following can NOT be coded at Point A? (1) Points UPDATE; UPDATE OF salary; UPDATE OF employees; (*) UPDATE NOWAIT; Mark for Review
Correct
47. User TOM has locked a row in the WORKERS table. Now, user DICK wants to open the following cursor: CURSOR c IS SELECT * FROM workers FOR UPDATE NOWAIT;
What will happen when DICK opens the cursor and tries to fetch rows? Mark for Review (1) Points TOM's session is rolled back. DICK's session successfully fetches rows from the cursor. DICK's session waits indefinitely. Both sessions wait for a few seconds; then the system breaks all locks and both sessions raise an exception. DICK's session immediately raises an exception. (*) The c%NOWAIT attribute is set to TRUE.
Correct
48.
CURSOR c IS SELECT * FROM departments FOR UPDATE; After opening the cursor and fetching some rows, you want to delete the most recently fetched row. Which of the following will do this successfully? Mark for Review (1) Points DELETE FROM c WHERE CURRENT OF c; DELETE FROM departments WHERE CURRENT OF c; (*) DELETE FROM c WHERE CURRENT OF departments; DELETE FROM departments WHERE c%ROWCOUNT = 1; None of the above.
Correct
49. A cursor has been declared as: CURSOR c_curs (p_param VARCHAR2) IS SELECT * FROM mytable WHERE mycolumn = p_param; Which of the following will open the cursor successfully? (1) Points
OPEN c_curs(p_param = "ABC"); OPEN c_curs('ABC'); (*) OPEN c_curs USING ("ABC"); p_param := 'ABC'; OPEN c_curs(p_param);
Correct
DECLARE CURSOR emp_curs(-- Point A --) IS SELECT * FROM employees WHERE job_id = p_job_id; Mark for Review (1) Points p_job_id ST_CLERK' p_job_id VARCHAR2(25) p_job_id VARCHAR2 (*) job_id VARCHAR2
Correct
Review your answers, feedback, and question scores below. An asterisk (*) indicates a correct answer. Section 1 (Answer all questions in this section) 1. Which of the following explicit cursor attributes evaluates to TRUE if the most recent FETCH returns a row? Mark for Review
Correct
2.
CURSOR country_curs IS SELECT * FROM wf_countries ORDER BY country_name; There are over 200 rows in the WF_COUNTRIES table, but you want to fetch and display only the first 25 rows. How would you exit from the FETCH loop? Mark for Review (1) Points EXIT WHEN country_curs%FOUND(25); EXIT WHEN country_curs%ROWCOUNT > 25; (*) EXIT WHEN ROWCOUNT > 25; WHEN country_curs > 25 THEN EXIT; END IF;
Correct
3.
DECLARE CURSOR emp_cursor IS SELECT employee_id, last_name, salary FROM employees; v_empcurs emp_cursor%ROWTYPE; What is the data type of V_EMPCURS?
Mark for Review (1) Points Scalar Record (*) Cursor Row
Correct
4.
DECLARE CURSOR country_curs IS SELECT country_id, country_name FROM wf_countries ORDER BY country_name; v_country country_curs%ROWTYPE; BEGIN OPEN country_curs; LOOP FETCH country_curs INTO v_country; EXIT WHEN country_curs%NOTFOUND; ------- Line A END LOOP; CLOSE country_curs; END; You want to display the id and name of each FETCHed country. What would you code at Line A? Mark for Review (1) Points DBMS_OUTPUT.PUT_LINE(country_id || ' ' || country_name); DBMS_OUTPUT.PUT_LINE(v_country(country_id) || ' ' || v_country(country_name)); DBMS_OUTPUT.PUT_LINE(country_curs.country_id || ' ' || country_curs.country_name); DBMS_OUTPUT.PUT_LINE(v_country.country_id || ' ' || v_country.country_name); (*)
Correct
5.
DECLARE CURSOR dept_loc_cursor IS SELECT department_id, department_name, location_name FROM departments d, locations l WHERE d.location_id = l.location_id; v_dept_loc dept_loc_cursor%ROWTYPE; How many fields does V_DEPT_LOC contain? Mark for Review (1) Points Two, because the cursor joins two tables Four Three (*) None
Correct
6. You can reference explicit cursor attributes directly in a SQL statement. True or False? Mark for Review (1) Points True False (*)
Correct
How must you reference one field which is part of a PL/SQL record?
Mark
Correct
Review your answers, feedback, and question scores below. An asterisk (*) indicates a correct answer. Section 1 (Answer all questions in this section) 1. A cursor FOR loop using a subquery can extensively shorten code length when compared to an explicit cursor declaration. True or False? Mark for Review (1) Points True (*) False
Correct
Which one of the following is a valid cursor FOR loop with a subquery? Mark
FOR emp_rec IN (SELECT last_name || first_name FROM employees) LOOP ... FOR emp_rec IN (SELECT UPPER(last_name) FROM employees) LOOP ... FOR emp_rec IN SELECT last_name, salary*12 "ANNSAL" FROM employees LOOP ... FOR emp_rec IN (SELECT last_name, salary*12 "ANNSAL" FROM employees) LOOP ... (*)
Correct
3.
CURSOR loc_curs IS SELECT * FROM locations; How should you code a FOR loop to use this cursor? (1) Points Mark for Review
FOR loc_rec IN 1 .. loc_curs%ROWCOUNT LOOP ... WHILE loc_rec IN loc_curs LOOP ... FOR loc_curs IN loc_rec LOOP ... IF loc_rec IN loc_curs LOOP ... FOR loc_rec IN loc_curs LOOP ... (*)
Correct
4.
BEGIN FOR emp_record IN emp_cursor LOOP DBMS_OUTPUT.PUT_LINE(emp_record.last_name); END LOOP; IF emp_record.last_name = 'Patel' THEN ... Mark for Review (1) Points EMP_RECORD has not been explicitly declared. The cursor has not been OPENed. You cannot reference EMP_RECORD outside the loop. (*) It should read: DBMS_OUTPUT.PUT_LINE(emp_cursor.last_name); Nothing is wrong, the code will execute correctly.
Correct
Which of the following is a benefit of using a cursor FOR loop? Mark for
The exception handling is done automatically. . The OPEN, CLOSE, FETCH and EXIT from the loop are done automatically. (*) You can OPEN the same cursor twice at the same time. Because there is less code, the loop executes faster. %ROWCOUNT increments automatically each time a row is FETCHed.
Correct
What is the DISadvantage of using a cursor FOR loop with a subquery? Mark
You cannot reference cursor attributes such as %NOTFOUND. (*) The execution speed is slower. You cannot declare the cursor in the declaration section. You cannot use the cursor to join two or more tables. There are no disadvantages.
7.
FOR emp_record IN emp_cursor LOOP DBMS_OUTPUT.PUT_LINE( --Point A -- ); END LOOP; END; To display the salary of an employee, what code should you write at Point A? Mark for Review (1) Points emp_record.salary (*) emp_cursor.salary employees.salary emp_record.employees.salary TO_CHAR(salary)
Correct
Review your answers, feedback, and question scores below. An asterisk (*) indicates a correct answer. Section 1 (Answer all questions in this section) 1. You want to use explicit cursors to fetch and display all the countries in a specific region. There are 19 rows in the WF_WORLD_REGIONS table. You want to use a different region each time the cursor is opened. How many cursors should you declare? Mark for Review (1) Points 19 cursors, all in the same PL/SQL block. 19 cursors in 19 PL/SQL blocks (one in each block). 20 cursors, in case an extra row is inserted into WF_WORLD_REGIONS later. One cursor with a parameter in the WHERE clause. (*) None of the above.
Correct
2.
You cannot reference a cursor parameter in a WHERE clause. The parameter should be coded as: (p_loc_id NUMBER) (*) The parameter should be coded as: (p_loc_id IN NUMBER) Nothing is wrong, the cursor declaration is correct.
3.
CURSOR emp_curs (p_dept_id employees.department_id%TYPE, p_job_id employees.job_id%TYPE) IS SELECT * FROM employees WHERE department_id = p_dept_id AND job_id = p_job_id; Which of the following will correctly open the cursor? Mark for Review (1) Points OPEN emp_curs(20); FOR emp_rec IN emp_curs(20) LOOP ... OPEN emp_curs('IT_PROG', 20); FOR emp_rec IN emp_curs(20,'IT_PROG') LOOP ... (*) FOR emp_rec IN emp_curs(p_dept_id p_job_id) LOOP ...
Correct
4.
DECLARE CURSOR emp_curs (p_dept_id employees.department_id%TYPE) IS SELECT * FROM employees WHERE department_id = p_dept_id; v_emp_rec emp_curs%ROWTYPE; v_deptid NUMBER(4) := 50; BEGIN OPEN emp_curs( -- Point A --); .... You want to open the cursor, passing value 50 to the parameter. Which of the following are correct at Point A? Mark for Review (1) Points 50 v_deptid 100 / 2 All of the above. (*)
Correct
5. Using parameters with a cursor, you can open and close the cursor several times in a block, returning a different active set each time. True or False? Mark for Review (1) Points True (*) False
Correct
Review your answers, feedback, and question scores below. An asterisk (*) indicates a correct answer. Section 1 (Answer all questions in this section) 1. What is the difference between the following two blocks of code?
--Block A DECLARE CURSOR emp_cursor IS SELECT employee_id, last_name FROM employees WHERE department_id = 80 FOR UPDATE OF salary; --Block B DECLARE CURSOR emp_cursor IS SELECT employee_id, last_name FROM employees WHERE department_id = 80 FOR UPDATE OF salary NOWAIT; Mark for Review (1) Points There is no difference; the programs behave exactly the same way. In Block A, the program waits indefinitely until the rows are available. In Block B, the program returns control immediately so that it can do other work. (*) In Block A, the program waits indefinitely until the rows are available. In Block B, control is returned to your program after 5 seconds so that it can do other work.
Correct
2. You have declared a cursor as SELECT .... FOR UPDATE; You have OPENed the cursor and locked the FETCHed rows. When are these row locks released? Mark for Review (1) Points When an UPDATE ... WHERE CURRENT OF cursor_name; is executed. When you CLOSE the cursor. When your block finishes executing.
When you explicitly COMMIT or ROLLBACK your transaction. (*) When another user tries to SELECT the rows.
3. (1) Points
Only with an UPDATE, not with a DELETE. Only with a DELETE, not with an UPDATE. When the cursor is declared as SELECT ... FOR UPDATE ...; (*) When the cursor is based on a single table (not on a join). When the cursor has not been OPENed.
Correct
4.
CURSOR emp_dept_curs IS SELECT last_name, salary, department_name FROM employees e, departments d WHERE e.department_id = d.department_id -- Point A -- ; You want to lock fetched rows from EMPLOYEES, but NOT lock fetched rows from DEPARTMENTS. Which of the following is correct at Point A? Mark for Review (1) Points FOR UPDATE FOR UPDATE of salary (*) FOR UPDATE OF employees FOR UPDATE (last_name)
Correct
5. You want to fetch rows from the EMPLOYEES table. You want to lock the fetched rows, to prevent other users from updating them. You declare the following cursor: CURSOR emp_curs IS SELECT employee_id, last_name, salary FROM employees -- Line A -- ; What should you code at Line A? What should you code at Line A? (1) Points Mark for Review
FOR LOCK FOR UPDATE OF employees FOR UPDATE (*) FOR UPDATE (employees)
Correct
6. If the rows you attempt to reserve using FOR UPDATE have already been locked by another session and you use the NOWAIT option, what is the outcome? Mark for Review (1) Points The block executes successfully with no errors. The server will wait until the locks have been released by the other user. An Oracle server error occurs. (*) Your rows will override the other users' lock and your block will execute successfully.
7.
CURSOR country_curs IS SELECT country_id, country_name FROM wf_countries FOR UPDATE WAIT 10; Another user updates a row in WF_COUNTRIES but does not COMMIT the update. What will happen when you OPEN country_curs; ? Mark for Review (1) Points A LOCKED_ROWS exception is raised immediately. The other user's transaction is automatically rolled back. Your session waits indefinitely until the other user COMMITs. Your session waits for 10 seconds, and then returns control to your block so that it can continue to execute. (*) Your block fails because you should have coded: FOR UPDATE WAIT (10);
Correct
Review your answers, feedback, and question scores below. An asterisk (*) indicates a correct answer. Section 1 (Answer all questions in this section) 1. You want to produce a report which displays each department and (immediately after each department) a list of employees who work in that department. You declare a DEPARTMENTS cursor as: CURSOR dept_curs IS SELECT * FROM departments ORDER BY department_id; How could you declare the EMPLOYEES cursor? (Choose two). Mark for Review (1) Points
CURSOR emp_curs (p_dept_id NUMBER) IS SELECT * FROM employees WHERE department_id = p_dept_id; (*) CURSOR emp_curs IS SELECT * FROM employees ORDER BY department_id;
CURSOR emp_curs (p_dept_id departments.department_id%TYPE) IS SELECT * FROM employees WHERE department_id = p_dept_id; (*) CURSOR emp_curs IS SELECT * FROM employees WHERE department_id = departments.department_id;
Correct
2. Assume your schema contains 25 tables. How many explicit cursors can you declare and use within a single PL/SQL block? Mark for Review (1) Points Only one. As many as you need - there is no limit. (*) A maximum of three. As many as you need, but only one of them can be open at any time. A maximum of 25 (one for each table in your schema).
Correct
3. Which of the following is a good reason to use two cursors in a single PL/SQL block? Mark for Review (1) Points To allow one cursor to be opened twice at the same time. When two tables are related to each other (often by a foreign key) and we want to produce a multilevel report using data from both tables. (*) To allow rows to be locked as they are FETCHed. To speed up the execution of the PL/SQL block. It is the only way to declare a cursor with a parameter.
Correct
4. Assume that table BIGDEPTS contains 100 rows, and table BIGEMPS contains 1000 rows, with 10 employees in each department. Consider the following code: DECLARE CURSOR bigdept_cur IS SELECT * FROM bigdepts; CURSOR bigemp_cur IS SELECT * FROM bigemps; BEGIN FOR dept_rec IN bigdept_cur LOOP DBMS_OUTPUT.PUT_LINE (dept_rec.department_name); FOR emp_rec IN bigemp_cur LOOP IF emp_rec.department_id=dept_rec.department_id THEN DBMS_OUTPUT.PUT_LINE (emp_rec.last_name); END IF; END LOOP; END LOOP; END; Why is this code inefficient? Mark for Review (1) Points It locks both tables unnecessarily.
It is using two cursors when one cursor is enough. It is doing a Cartesian Product, joining every employee with every department and displaying 1100 lines of output. It reads 1000 employee rows every time BIGEMP_CUR is OPENed, and then ignores 990 of them. (*) It is using cursor FOR loops, which are less efficient than OPENing and CLOSEing the cursors explicitly.
5.
DECLARE CURSOR region_cur IS SELECT * FROM wf_world_regions; v_region_rec region_cur%ROWTYPE; CURSOR country_cur (p_region_id NUMBER) IS SELECT * FROM wf_countries WHERE region_id = p_region_id; v_country_rec country_cur%ROWTYPE; BEGIN OPEN region_cur; LOOP FETCH region_cur INTO v_region_rec; EXIT WHEN region_cur%NOTFOUND; DBMS_OUTPUT.PUT_LINE (v_region_rec.region_name); -- Line A -LOOP FETCH country_cur INTO v_country_rec; EXIT WHEN country_cur%NOTFOUND; ...... What would you code at Line A? Mark for Review (1) Points OPEN country_cur (p_region_id); OPEN country_cur (wf_world_regions.region_id); OPEN country_cur (v_region_rec.region_id); (*)
Correct
6. Which of the following is NOT allowed when using multiple cursors with Mark for Review
You cannot use cursor FOR loops. You cannot declare the cursors FOR UPDATE. You cannot declare a cursor based on a join. You cannot OPEN more than one cursor at the same time. None of the above, they are all allowed. (*)
Correct
Review your answers, feedback, and question scores below. An asterisk (*) indicates a correct answer. Section 1 (Answer all questions in this section) 1. Which of the following statements about user-defined PL/SQL records is NOT true? Mark for Review (1) Points It is not the same as a row in a database table It can be used as an OUT parameter in a package procedure It can be a component of another PL/SQL record It must contain one or more components, but all the components must have scalar datatypes (*)
Correct
2. Which of the following will successfully create a record type containing two fields, and a record variable of that type? Mark for Review (1) Points TYPE person_type IS RECORD (l_name VARCHAR2(20), gender CHAR(1)); person_rec TYPE person_type;
TYPE person_type IS RECORD (l_name VARCHAR2(20), gender CHAR(1)); person_rec person_type; (*) TYPE person_type IS (l_name VARCHAR2(20), gender CHAR(1)); person_rec person_type;
Correct
3. The following code declares a PL/SQL record with the same structure as a row of the departments table. True or False? DECLARE v_dept_rec departments%ROWTYPE; ... Mark for Review (1) Points True (*)
False
Correct
Review your answers, feedback, and question scores below. An asterisk (*) indicates a correct answer. Section 1 (Answer all questions in this section) 1. To declare an INDEX BY table, we must first declare a type and then declare a collection variable of that type. True or False? Mark for Review (1) Points True (*) False
Correct
2. Which of these PL/SQL data structures could store a complete copy of the employees table, i.e., 20 complete table rows? Mark for Review (1) Points A record An INDEX BY table of records (*) An INDEX BY table An explicit cursor based on SELECT * FROM employees;
Correct
3. Which of the following methods can be used to reference elements of an INDEX BY table? (Choose three.) Mark for Review (1) Points
(Choose all correct answers) EXISTS (*) FIRST (*) COUNT (*) PREVIOUS DROP
Correct
4. Which of the following successfully declares an INDEX BY table of records which could be used to store copies of complete rows from the departments table? Mark for Review (1) Points DECLARE TYPE t_depttab IS TABLE OF departments%TYPE INDEX BY BINARY_INTEGER;
DECLARE TYPE t_depttab IS TABLE OF departments%ROWTYPE INDEX BY BINARY_INTEGER; (*) DECLARE TYPE t_depttab IS INDEX BY TABLE OF departments%ROWTYPE INDEX BY BINARY_INTEGER;
Correct
What is the largest number of elements (i.e., records) that an INDEX BY table of Mark for Review
(1) Points 100 4096 32767 Many millions of records because a BINARY_INTEGER or PLS_INTEGER can have a very large value (*) None of the above
Correct
Mark
A PL/SQL record (*) An INDEX BY table of records An INDEX BY table indexed by PLS_INTEGER An INDEX BY table indexed by BINARY_INTEGER
Correct
Review your answers, feedback, and question scores below. An asterisk (*) indicates a correct answer. Section 1 (Answer all questions in this section) 1. Which of these exceptions can be handled by an EXCEPTION section in a PL/SQL block? Mark for Review (1) Points An attempt is made to divide by zero
A SELECT statement returns no rows Any other kind of exception that can occur within the block All of the above (*) None of the above
Correct
2.
EXCEPTION WHEN ZERO_DIVIDE OR TOO_MANY_ROWS OR NO_DATA_FOUND THEN statement_1; statement_2; WHEN OTHERS THEN statement_3; END; Mark for Review (1) Points True (*) False
Correct
Which of the following is NOT an advantage of including an exception handler in Mark for Review
Prevents errors from occurring (*) Code is more readable because error-handling routines can be written in the same block in which the error occurred Prevents errors from being propagated back to the calling environment Avoids costly and time-consuming correction of mistakes
Correct
4. Only one exception can be raised automatically during one execution of a PL/SQL block. True or False? Mark for Review (1) Points True (*) False
Mark for
A user enters an invalid password while trying to log on to the database. An error occurs during the execution of the block, which disrupts the normal operation of the program. (*) A compile-time error occurs because the PL/SQL code references a non-existent table. The programmer forgets to declare a cursor while writing the PL/SQL code.
Correct
6. Examine the following code. Why does this exception handler not follow good practice guidelines? (Choose two.) DECLARE v_dept_name departments.department_name%TYPE; BEGIN SELECT department_name INTO v_dept_name FROM departments WHERE department_id = 75; EXCEPTION WHEN OTHERS THEN DBMS_OUTPUT.PUT_LINE('A select returned more than one row'); END; Mark for Review (1) Points
(Choose all correct answers) You should not use DBMS_OUTPUT.PUT_LINE in an exception handler. department_id 75 does not exist in the departments table. The exception handler should test for the named exception NO_DATA_FOUND. (*) The exception handler should COMMIT the transaction. The exception section should include a WHEN TOO_MANY_ROWS exception handler. (*)
Correct
7. Which of the following EXCEPTION sections are constructed correctly? (Choose three.) Mark for Review (1) Points (Choose all correct answers) EXCEPTION WHEN NO_DATA_FOUND THEN statement_1; WHEN OTHERS THEN statement_2; END; (*) EXCEPTION WHEN TOO_MANY_ROWS THEN statement_1; END; (*) EXCEPTION WHEN NO_DATA_FOUND THEN statement_1; WHEN NO_DATA_FOUND THEN statement_2; WHEN OTHERS THEN statement_3; END;
(*) EXCEPTION WHEN OTHERS THEN statement_1; WHEN NO_DATA_FOUND THEN statement_2; END;
Correct
8. Which of the following are NOT good practice guidelines for exception handling? (Choose two.) Mark for Review (1) Points (Choose all correct answers) Test your code with different combinations of data to see what potential errors can happen. Use an exception handler whenever there is any possibility of an error occurring. Include a WHEN OTHERS handler as the first handler in the exception section. (*) Allow exceptions to propagate back to the calling environment. (*) Handle specific named exceptions where possible, instead of relying on WHEN OTHERS.
Correct
Review your answers, feedback, and question scores below. An asterisk (*) indicates a correct answer. Section 1 (Answer all questions in this section)
Which one of the following events would implicitly raise an exception? Mark
The PL/SQL programmer mis-spells the word BEGIN as BEGAN. A database constraint is violated. (*) A SELECT statement returns exactly one row. An UPDATE statement modifies no rows.
Correct
2. exception.
Examine the following code. The UPDATE statement will raise an ORA-02291
BEGIN UPDATE employees SET department_id = 45; EXCEPTION WHEN OTHERS THEN INSERT INTO error_log_table VALUES (SQLCODE); END; What will happen when this code is executed? Mark for Review (1) Points The code will execute and insert error number 02291 into error_log_table. The code will fail because SQLCODE has not been declared. The code will fail because we access error message numbers by using SQLERRNUM, not SQLCODE. The code will fail because we cannot use functions like SQLCODE directly in a SQL statement. (*)
Correct
Which of the following best describes a predefined Oracle Server error? Mark
Has a standard Oracle error number but must be declared and named by the PL/SQL programmer Has a standard Oracle error number and a standard name which can be referenced in the EXCEPTION section (*) Is associated with an Oracle error number using PRAGMA EXCEPTION_INIT Is not raised automatically but must be declared and raised explicitly by the PL/SQL programmer
Correct
4. (1) Points
Syntax errors (*) Predefined Oracle Server errors Non-predefined Oracle Server errors User-defined errors
Correct
5. A PL/SQL block executes and an Oracle Server exception is raised. Which of the following contains the text message associated with the exception? Mark for Review (1) Points SQLCODE SQLERRM (*) SQL%MESSAGE SQL_MESSAGE_TEXT
Correct
Which of the following is NOT a predefined Oracle Server error? Mark for
Correct
7. There are no employees whose salary is less than 2000. Which exception handlers would successfully trap the exception which will be raised when the following code is executed? (Choose two.) DECLARE v_mynum NUMBER := 10; v_count NUMBER; BEGIN SELECT COUNT(*) INTO v_count FROM employees WHERE salary < 2000; v_mynum := v_mynum / v_count; EXCEPTION ... END; Mark for Review (1) Points (Choose all correct answers) NO_DATA_FOUND ZERO_DIVIDE (*) SQL%ROWCOUNT = 0 OTHERS (*) OTHER
Correct
8. What is the correct syntax to associate an exception named EXCEPNAME with the non-predefined Oracle Server error ORA-02292? Mark for Review (1) Points PRAGMA EXCEPTION_INIT (newname, -2292) (*) RAISE_APPLICATION_ERROR (-2292, excepname); SQLCODE (-2292, excepname); WHEN (-2292, excepname) THEN
Correct
9. Examine the following code. At Line A, you want to raise an exception if the employee's manager_id is null. What kind of exception is this? DECLARE v_mgr_id employees.manager_id%TYPE; BEGIN SELECT manager_id INTO v_mgr_id FROM employees WHERE employee_id = 100; IF v_mgr_id IS NULL THEN -- Line A END IF; ... Mark for Review (1) Points A predefined Oracle Server exception A constraint violation A non-predefined Oracle server exception A user-defined exception (*) A NO_DATA_FOUND exception
Correct
10. How would you trap Oracle Server exception ORA-01403: no data found? Mark for Review (1) Points
WHEN NO DATA FOUND THEN ... WHEN ORA-01403 THEN ... WHEN NO_DATA_FOUND THEN ... (*) WHEN SQL%ROWCOUNT=0 THEN ...
Correct
11. Which type(s) of exception MUST be explicitly raised by the PL/SQL programmer? Mark for Review (1) Points User-defined exceptions. (*) Predefined Oracle server errors such as TOO_MANY_ROWS. Non-predefined Oracle server errors such as ORA-01203. All of the above.
Correct
12. An ORA-1400 exception is raised if an attempt is made to insert a null value into a NOT NULL column. DEPARTMENT_ID is the primary key of the DEPARTMENTS table. What will happen when the following code is executed? DECLARE e_not_null EXCEPTION; BEGIN PRAGMA EXCEPTION_INIT(e_not_null, -1400); INSERT INTO departments (department_id, department_name) VALUES(null, 'Marketing'); EXCEPTION WHEN e_not_null THEN DBMS_OUTPUT.PUT_LINE('Cannot be null'); END; Mark for Review (1) Points The exception will be raised and "Cannot be null" will be displayed.
The code will not execute because the syntax of PRAGMA EXCEPTION_INIT is wrong. The code will not execute because PRAGMA EXCEPTION_INIT must be coded in the DECLARE section. (*) The code will not execute because the syntax of the INSERT statement is wrong.
Correct
Page 1 of 1