derive from SUN source code or binary materials, and (iv) do not include any
SUN binary materials without an appropriate and separate license from SUN.
Java ...
Oracle DBA who has worked with databases since. 1992, and with Oracle ......
9400. 29025. 29025. Source of example: Tom Kyte Effective Oracle by Design.
Oracle Database 11g R2: Advanced PL/SQL Programming & Tuning ora11g102-
ver2. Instructor Resources From The Sideris Training Portal. 5 Days.
Click the button below to register a free account and download the file. Books Synopsis : Take Your PL/SQL Programming S
Oracle Database 11g: Advanced Programming with PL/SQL. (Mock Assessment
Test). -Saurabh K. Gupta. Author of “Oracle Advanced PL/SQL Developer ...
Oracle Advanced Collections. Earlier Oracle had a “Collections” Functionality
built inside the AR which gave users a very little of Collections. This Oracle ...
What is Oracle Advanced Collections? Ans: Oracle Advanced Collections is the
module which deals primarily with Collection of your Accounts Receivable from ...
Aug 1, 2014 - Advanced Analytics: One of the Keys to Future Success in ... Analytics is a key component in what IDC Fina
Dec 1, 2006 ... behalf of the United States Government, the following notice is applicable: U.S.
GOVERNMENT ...... Moderate Dunning Letter 1 Template.
OOW13 - Oracle Advanced Benefits and Oracle Compensation Workbench - Product Updates and Roadmap.pdf. OOW13 - Oracle Adv
1 Introduction to Oracle Advanced Collections ... 2 Overview of Using Oracle
Advanced Collections ... Using the Navigator in Oracle Advanced Collections.
development environment for building Java and SOA-based applications. ...
Forms To ADF Transformation Assessment Service assesses the feasibility and ...
You Will Learn: Who Should Attend: Dell Training Services. Oracle 10g SQL
Programming. Oracle 10g SQL Programming is a five-day course where students
...
of the IBM 7090 computer to describe the translator program. .... or assembly
programs, depending on the language level at which they meet the user. Today ...
Advanced UNIX Programming. Advanced UNIX Programming. Jeff Howell.
Published by ITCourseware, LLC, 7245 South Havana Street, Suite 100,
Centennial, ...
ADVANCED UNIX PROGRAMMING. ( Common to Computer Science &
Engineering, Information Technology and Computer Science & Systems
Engineering).
No part of this book may be reproduced or ... ADVANCED JAVA PRoGRAmmiNG
... workbook, including the many students who have offered comments, ...
The present book is a case study of an assembler-compiler program. ... ments at
M. I. T. Thus we conclude that the average student is able to grasp and enjoy ...
CPSC 219: Advanced Java. James Tam. Advanced Java Programming. After
mastering the basics of Java you will now learn more complex but important ...
Advanced Linux .... Part I: Advanced UNIX Programming with Linux. ...... W.
Richard Stevens wrote three excellent books on UNIX programming, and we
have ...
Nov 25, 2008 - Analyse the runtime behavior of the program. â» Which parts (functions .... Simulates (!) a L1 and L2 ca
Dynamic programming is a powerful technique for efficiently solving ... See http://www.cs.uiuc.edu/~jeffe/teaching/algor
Cay Horstmann. Object. Oriented Software Design. & Patterns (2nd ed).
Advanced OOP ... You will also learn how to use well known designs for
organizing the.
Oracle PL/SQL Programming – Advanced. Assessment. In order to learn which
questions have been answered correctly: 1. Print these pages. 2. Answer the ...
Oracle PL/SQL Programming – Advanced
Assessment
In order to learn which questions have been answered correctly: 1. Print these pages. 2. Answer the questions. 3. Send this assessment with the answers via: a. FAX to (212) 967-3498. Or b. Mail the answers to the following address: SYS-ED PO Box 1213 New York, NY 10156 Client contact: Name: Company: Address: City, State, Zip: Phone Number: Fax Number: E-mail:
COMPUTER EDUCATION TECHNIQUES, INC. (ORA_PLSQL_ADV - 5.2)
SA: Page 1
Oracle PL/SQL Programming – Advanced
Assessment
QNO 1.
Question The CASE expression uses a selector which is:
Answer b
2.
a. The WHEN clause. b. An expression whose value is used to select one of several alternatives. c. SQL SELECT statement used in an IF statement. d. The WHERE clause. e. None of the above. With the CASE construct, if none of the legs is selected:
c
3.
a. The results are the same as with an IF. b. The condition is ignored. c. Then the case_not_found exception is raised. d. Then the condition_unmet is raised. e. None of the above. The term for hiding the details of a complex algorithm by writing a procedure and passing it parameters is called:
d
4.
a. Shared memory. b. Class. c. Template. d. Procedural abstraction. e. None of the above. The keyword that denotes the object whose method was invoked is:
b
5.
a. ME b. SELF c. THIS d. MINE e. None of the above. A constructor must be invoked:
b
6.
a. Implicitly b. Explicitly c. At the time that the object is removed. d. Is never required. e. None of the above. When the object itself is null, not just its attributes, it is called:
a
7.
a. Atomically null b. Null c. Low values d. Constructor e. None of the above. A ref is a:
b
a. Method of passing the values of parameters. b. Pointer to an object. c. Method of compiling the PL/SQL. d. A wrapper for encrypting the source. e. None of the above.
COMPUTER EDUCATION TECHNIQUES, INC. (ORA_PLSQL_ADV - 5.2)
SA: Page 2
Oracle PL/SQL Programming – Advanced
Assessment
QNO 8.
Question The TREAT operator will:
Answer c
9.
a. Encapsulate an object. b. Parse a string. c. Return only those objects that are of a specified subtype. d. Invoke a constructor. e. None of the above. The spnc_makefile.mk make file is used to:
c
10.
a. To invoke a procedure. b. Organize objects in the database. c. Speed up PL/SQL procedures. d. A, B and C. e. None of the above. The PLSQL_COMPILER_FLAGS setting:
a
11.
a. Is stored inside the library unit for each procedure. b. Is used to check system constraints. c. Is set from the command line. d. Can only be used in an object. e. None of the above. Table functions:
e
12.
a. Can be parallelized. b. Returned rows can be streamed directly to the next process without intermediate staging. c. Rows from a collection returned by a table function can also be pipelined. d. Produce a collectionError! Bookmark not defined. of rows. e. All of the above. Pipelined table functions can be implemented:
d
13.
a. Native PL/SQL approach. b. Interface approach. c. Only in SQL*Plus commands. d. A and B. e. None of the above. Bulk binds improve performance by:
c
14.
a. Improving the optimizer. b. Resetting the statistics in the catalog. c. Minimizing the number of context switches between the PL/SQL and SQL engines. d. Performing a Forward Prefetch. e. None of the above. The keyword that instructs the PL/SQL engine to bulk-bind input collections before sending them to the SQL engine is:
d
a. BULK_BIND b. BULK c. BIND d. FORALL e. None of the above.
COMPUTER EDUCATION TECHNIQUES, INC. (ORA_PLSQL_ADV - 5.2)
SA: Page 3
Oracle PL/SQL Programming – Advanced
Assessment
QNO 15.
Question To have a bulk bind complete despite errors:
Answer a
16.
a. Use the keywords SAVE EXCEPTIONS. b. Issue a ROLLBACK WORK. c. Issue a COMMIT. d. Issue a SAVEPOINT. e. None of the above. The LIMIT clause is only allowed:
d
17.
a. In the Declare Cursor. b. In all DML statements c. In the CREATE TABLE DDL. d. Only in bulk (not scalar) FETCH statements. e. None of the above. The COLEASE function:
e
18.
a. Is used for objects. b. Resets the NULL attribute for an object. c. Is used for BULK BINDS. d. Can only be used with a LIMIT clause. e. None of the above. The BULK COLLECT clause:
a
19.
a. Can only be used in server-side programs. b. Can only be used in client-side programs. c. Can be used in client and server-side programs. d. Requires the PL/SQL be wrapped. e. None of the above. Index-by tables are often used:
c
20.
a. Search thru very large databases b. Is a new feature of Oracle 9i c. To cache table values to give a performance boost in special situations, especially where frequent lookup is called for. d. a, b and c. e. None of the above. The Utl_Smtp package provides:
a
21.
a. Primitives to send email. b. Used for collection statistics. c. For networking in Oracle 9i. d. b and c. e. None of the above. Which of the following is a transaction type?
d
a. Non-distributed transactions. b. Distributed transactions. c. Remote transactions. d. a, b and c. e. None of the above.
COMPUTER EDUCATION TECHNIQUES, INC. (ORA_PLSQL_ADV - 5.2)
SA: Page 4
Oracle PL/SQL Programming – Advanced
Assessment
QNO 22.
Question AUTONOMOUS_TRANSACTION is a:
Answer c
23.
a. Programming techniques b. Automatically used in all programs c. PL/SQL compiler directive d. a, b and c. e. None of the above. PACK_MESSAGE is used in:
b
24.
a. Queueing b. Piping c. AUTONOMOUS TRANSACTIONS d. Host I/O e. None of the above. Which of the following is not a type of pipe?
e
25.
a. Public Pipes b. Private Pipes c. Implicit Pipes d. Explicit Pipes e. All are pipe types External tables are:
a
a. Defined as tables that do not reside in the database. b. Invalid in Oracle. c. Can only be used by the DBA. d. Tables that could not have a VIEW. e. None of the above.
COMPUTER EDUCATION TECHNIQUES, INC. (ORA_PLSQL_ADV - 5.2)