Вы находитесь на странице: 1из 43

Test: Section 10 Quiz

Review your answers, feedback, and question scores below. An asterisk (*) indicates a correct
answer.

Section 10 Quiz

(Answer all questions in this section)

1. Every subprogram which has been declared in a package specification must


also be included in the package body. Triue or False? Mark for Review

(1) Points

True (*)

False

Correct Correct

2. What is wrong with the following syntax for creating a package


specification?

CREATE OR REPLACE mypack IS

g_constant1 NUMBER(6) := 100;

PROCEDURE proc1 (p_param1 IN VARCHAR2);

PROCEDURE proc2;
END mypack;

Mark for Review

(1) Points

The keyword PACKAGE is missing.

(*)

A package must contain at least one function.

The first line should be:

CREATE OR REPLACE PACKAGE SPECIFICATION mypack IS

Nothing is wrong, this code contains no errors.

You cannot declare constants in the specification.

Incorrect Incorrect. Refer to Section 10 Lesson 1.


3. Package Specification DEPT_PACK was created by the following code:

CREATE OR REPLACE PACKAGE dept_pack IS

PROCEDURE ins_dept(p_deptno IN NUMBER);

FUNCTION get_dept(p_deptno IN NUMBER) RETURN VARCHAR2;

END dept_pack;

Which of the following are correct syntax for invoking the package subprograms? (Choose two.)

Mark for Review

(1) Points

(Choose all correct answers)

CREATE PROCEDURE dept_proc IS

v_deptname VARCHAR2(20);

BEGIN

v_deptname := dept_pack.get_dept(40);

END;

(*)

BEGIN

dept_pack.get_dept(20);

END;
BEGIN

dept_pack.ins_dept(20);

END;

(*)

DECLARE

v_deptname VARCHAR2(20);

BEGIN

v_deptname := get_dept(50);

END;

BEGIN

dept_pack(30);

END;

Incorrect Incorrect. Refer to Section 10 Lesson 1.

4. The following package specification has been created:

CREATE OR REPLACE PACKAGE mypack IS

FUNCTION myfunc(p_funcparam DATE) RETURN BOOLEAN;


PROCEDURE myproc(p_procparam IN NUMBER);

END mypack;

Which of the following will correctly invoke the package subprograms? (Choose two.)

Mark for Review

(1) Points

(Choose all correct answers)

v_num := mypack.myproc(22);

IF NOT mypack.myfunc(SYSDATE) THEN

DBMS_OUTPUT.PUT_LINE('Message');

END IF;

(*)

myproc(40);

mypack.myproc(35);

(*)
mypack.myfunc('22-Jan-2007');

Incorrect Incorrect. Refer to Section 10 Lesson 1.

5. In which component of a package is the full definition of a public procedure


written? Mark for Review

(1) Points

Both the body and the specification

Body (*)

Neither the body nor the specification

Specification

Incorrect Incorrect. Refer to Section 10 Lesson 1.


Page 1 of 3 Next Summary

Test: Section 10 Quiz

Review your answers, feedback, and question scores below. An asterisk (*) indicates a correct
answer.

Section 10 Quiz

(Answer all questions in this section)

6. The package name must be included when calling a package function from a
SELECT statement executed outside the package. True or False? Mark for Review

(1) Points

True (*)

False

Correct Correct
7. Functions called from a SQL query or DML statement must not end the
current transaction, or create or roll back to a savepoint. True or False? Mark for Review

(1) Points

True (*)

False

Correct Correct

8. INDEX BY is missing from the emp_tab TYPE declaration. What is the most
efficient declaration?

CREATE OR REPLACE PACKAGE emp_pkg IS

TYPE emp_tab IS TABLE OF employees%ROWTYPE;

PROCEDURE get_employees(p_emp_table OUT emp_tab);

END emp_pkg;

Mark for Review

(1) Points

INDEX BY BINARY_INTEGER (*)


INDEX BY INTEGER

INDEX BY BINARY

INDEX ALL

Correct Correct

9. The following package is valid. True or False?

CREATE OR REPLACE PACKAGE exceptions_pkg IS

e_cons_violation EXCEPTION;

PRAGMA EXCEPTION_INIT (e_cons_violation, -2292);

e_value_too_large EXCEPTION;

PRAGMA EXCEPTION_INIT (e_value_too_large, -1438);

END exceptions_pkg;

Mark for Review

(1) Points

True (*)
False

Correct Correct

10. Which of the following are not allowed in a bodiless package? (Choose
three) Mark for Review

(1) Points

(Choose all correct answers)

User-defined exceptions

Global variables

Private variables (*)

DML statements (*)


Subprograms (*)

Incorrect Incorrect. Refer to Section 10 Lesson 3.

Previous Page 2 of 3 Next Summary

Test: Section 10 Quiz

Review your answers, feedback, and question scores below. An asterisk (*) indicates a correct
answer.

Section 10 Quiz

(Answer all questions in this section)

11. A local variable defined inside a package procedure is visible to the calling
environment. True or False? Mark for Review

(1) Points

True

False (*)
Incorrect Incorrect. Refer to Section 10 Lesson 2.

12. When one component of a package is called, all the package's components
are loaded into memory. True or False? Mark for Review

(1) Points

True (*)

False

Correct Correct

13. A package contains both public and private subprograms. Which one of the
following statements is true? Mark for Review

(1) Points

If three users invoke three different subprograms in the package, there will be three copies
of the code in memory.
The whole package is loaded into memory when the first call is made to any subprogram in
the package. (*)

The public subprograms are all loaded into memory at the same time, but the private
subprograms are loaded into memory one at a time as they are invoked.

Each subprogram is loaded into memory when it is first invoked.

Incorrect Incorrect. Refer to Section 10 Lesson 2.

14. When a change is made to the detailed code of a public procedure in a


package (but not to the procedure's name or parameters), both the specification and the body must
be recompiled. True or False? Mark for Review

(1) Points

True

False (*)

Incorrect Incorrect. Refer to Section 10 Lesson 2.


15. SCOTT's schema contains a package EMP_PKG which contains a public
procedure EMP_SAL which accepts a NUMBER parameter. Which of the following will invoke the
procedure successfully? Mark for Review

(0) Points

emp_sal(101);

None of these.

All of these.

scott.emp_pkg.emp_sal(101): (*)

emp_pkg.emp_sal(101);

Correct Correct

Previous Page 3 of 3 Summary


Test: Section 10 Quiz

Review your answers, feedback, and question scores below. An asterisk (*) indicates a correct
answer.

Section 10 Quiz

(Answer all questions in this section)

1. To be able to invoke a package subprogram from outside the package, it


must be declared in the package: Mark for Review

(1) Points

None of these.

Specification

Body and the specification (*)

Body
Correct Correct

2. The following package specification has been created:

CREATE OR REPLACE PACKAGE mypack IS

FUNCTION myfunc(p_funcparam DATE) RETURN BOOLEAN;

PROCEDURE myproc(p_procparam IN NUMBER);

END mypack;

Which of the following will correctly invoke the package subprograms? (Choose two.)

Mark for Review

(1) Points

(Choose all correct answers)

myproc(40);

IF NOT mypack.myfunc(SYSDATE) THEN

DBMS_OUTPUT.PUT_LINE('Message');

END IF;

(*)
mypack.myproc(35);

(*)

v_num := mypack.myproc(22);

mypack.myfunc('22-Jan-2007');

Incorrect Incorrect. Refer to Section 10 Lesson 1.

3. Which of the following can be included in a package? Mark for Review

(1) Points

All of these. (*)

procedures

variables
Exceptions

PL/SQL types

Incorrect Incorrect. Refer to Section 10 Lesson 1.

4. Package EMP_PACK contains two procedures, DEL_EMP and SHOW_EMP.


You want to write an anonymous block which invokes these procedures but you have forgotten
which parameters they use. Which of the following will give you this information? Mark for
Review

(1) Points

DESCRIBE emp_pack(del_emp, show_emp)

DESCRIBE del_emp

DESCRIBE show_emp

DESCRIBE emp_pack.del_emp

DESCRIBE emp_pack.show_emp
None of these.

DESCRIBE emp_pack

(*)

Incorrect Incorrect. Refer to Section 10 Lesson 1.

5. A number variable declared in a package is initialized to NULL unless


assigned another value. True or False? Mark for Review

(1) Points

True (*)

False

Correct Correct

Page 1 of 3 Next Summary


Test: Section 10 Quiz

Review your answers, feedback, and question scores below. An asterisk (*) indicates a correct
answer.

Section 10 Quiz

(Answer all questions in this section)

6. Suppose you want to automatically execute some code every time you make
the first call to a package in your session? For example, you want to automatically load a tax rate
into a package variable.

Which of the following should you use? Mark for Review

(1) Points

package initialization block (*)

forward declaration

None of these.

bodiless package
Incorrect Incorrect. Refer to Section 10 Lesson 3.

7. The following example package specification is valid to create a data type


ed_type that can be used in other subprograms. True or False?

CREATE OR REPLACE PACKAGE emp_dept_pkg

IS

TYPE ed_type IS RECORD (f_name employees.first_name%TYPE,

l_name employees.last_name%TYPE,

d_name departments.department_name%TYPE);

PROCEDURE sel_emp_dept

(p_emp_id IN employees.employee_id%TYPE,

p_emp_dept_rec OUT ed_type);

END emp_dept_pkg;

Mark for Review

(1) Points

True (*)

False

Correct Correct
8. What is the correct format to declare a variable using the following
emp_pkg package composite data type? TYPE emprec_type IS TABLE OF employees%ROWTYPE
INDEX BY BINARY_INTEGER; Mark for Review

(1) Points

v_emp_table emprec_type.emp_pkg;

None of these.

emprec_type.emp_pkg;

emp_pkg.emprec_type;

v_emp_table emp_pkg.emprec_type; (*)

Incorrect Incorrect. Refer to Section 10 Lesson 3.

9. How would you invoke the constant km_to_mile from the global_consts
bodiless package at VARIABLE A?
SELECT trail_name, distance_in_km * VARIABLE A

FROM trails

WHERE park_name = 'YOSEMITE';

Mark for Review

(1) Points

global_consts.km_to_mile (*)

km_to_mile.global_consts

global_consts (km_to_mile)

km_to_mile (global_consts)

Incorrect Incorrect. Refer to Section 10 Lesson 3.

10. When using a package function in DML statements, which rules must you
follow? (Choose three) Mark for Review

(1) Points

(Choose all correct answers)


Cannot execute a DML statement or modify the database (*)

Changes to a package variable could have an impact on another stored function (*)

Must not end the current transaction (*)

Can read or modify the table being changed by that DML statement

Incorrect Incorrect. Refer to Section 10 Lesson 3.

Previous Page 2 of 3 Next Summary

Test: Section 10 Quiz

Review your answers, feedback, and question scores below. An asterisk (*) indicates a correct
answer.

Section 10 Quiz

(Answer all questions in this section)


11. When a change is made to the detailed code of a public procedure in a
package (but not to the procedure's name or parameters), both the specification and the body must
be recompiled. True or False? Mark for Review

(1) Points

True

False (*)

Correct Correct

12. When one component of a package is called, all the package's components
are loaded into memory. True or False? Mark for Review

(1) Points

True (*)

False
Correct Correct

13. SCOTT's schema contains a package EMP_PKG which contains a public


procedure EMP_SAL which accepts a NUMBER parameter. Which of the following will invoke the
procedure successfully? Mark for Review

(0) Points

All of these.

emp_sal(101);

None of these.

scott.emp_pkg.emp_sal(101): (*)

emp_pkg.emp_sal(101);

Correct Correct
14. Your schema contains a package called EMP_PKG. You want to remove the
package body but not the specification. The correct syntax to do this is: DROP BODY emp_pkg; True
or False? Mark for Review

(1) Points

True

False (*)

Incorrect Incorrect. Refer to Section 10 Lesson 2.

15. A local variable declared within a procedure in a package can be referenced


by any other component of that package. True or False? Mark for Review

(1) Points

True

False (*)

Incorrect Incorrect. Refer to Section 10 Lesson 2.


Previous Page 3 of 3 Summary

Test: Section 10 Quiz

Review your answers, feedback, and question scores below. An asterisk (*) indicates a correct
answer.

Section 10 Quiz

(Answer all questions in this section)

1. Suppose you want to automatically execute some code every time you make
the first call to a package in your session? For example, you want to automatically load a tax rate
into a package variable.

Which of the following should you use? Mark for Review

(1) Points

None of these.

forward declaration

package initialization block (*)

bodiless package
Correct Correct

2. Which two of these declarations cannot be in the same package


specification?

PROCEDURE myproc (p1 NUMBER, p2 VARCHAR2);

PROCEDURE myproc (p1 VARCHAR2, p2 NUMBER);

PROCEDURE myproc (p1 NUMBER, p2 CHAR);

PROCEDURE myproc (p1 NUMBER);

Mark for Review

(1) Points

1 and 4

3 and 4

1 and 3 (*)

2 and 3
1 and 2

Correct Correct

3. Examine the following code:

CREATE OR REPLACE PACKAGE emppack IS

PROCEDURE upd_emp (p_empno IN NUMBER, p_salary IN NUMBER);

END emppack;

CREATE OR REPLACE PACKAGE BODY emppack IS

-- Line A

PROCEDURE upd_emp (p_empno IN NUMBER, p_salary IN NUMBER) IS

BEGIN

IF NOT sal_ok(p_salary) THEN

RAISE_APPLICATION_ERROR(-20201,'Invalid salary');

END IF;

END upd_emp;

FUNCTION sal_ok(pf_salary NUMBER) RETURN BOOLEAN IS

BEGIN

IF pf_salary > 50000 THEN RETURN FALSE;

ELSE RETURN TRUE;

END IF;

END sal_ok;

END emppack;
What must be coded at Line A for this package to compile successfully?

Mark for Review

(1) Points

FUNCTION sal_ok(pf_salary NUMBER) RETURN BOOLEAN; (*)

FUNCTION sal_ok(pf_salary NUMBER);

PROCEDURE upd_emp (p_empno IN NUMBER, p_salary IN NUMBER);

Nothing is needed at Line A

FUNCTION sal_ok;

Correct Correct

4. A package initialization block is executed automatically every time a user


invokes any procedure or function in the package. True or False? Mark for Review

(1) Points
True

False (*)

Correct Correct

5. Which of the following best describes a package initialization block?


Mark for Review

(1) Points

It is an anonymous block at the end of a package body which executes automatically the first
time each user session invokes a subprogram in the package. (*)

It is a named procedure in a package which must be invoked by a user before any other part
of the package can be invoked.

It is a private function within the package body.

It is an anonymous block in the package specification.


Because it is an anonymous block, it cannot be invoked and therefore will never execute. It is
treated as a set of comments.

Correct Correct

Page 1 of 3 Next Summary

Test: Section 10 Quiz

Review your answers, feedback, and question scores below. An asterisk (*) indicates a correct
answer.

Section 10 Quiz

(Answer all questions in this section)

6. Package EMP_PACK contains two procedures, DEL_EMP and SHOW_EMP.


You want to write an anonymous block which invokes these procedures but you have forgotten
which parameters they use. Which of the following will give you this information? Mark for
Review

(1) Points

None of these.
DESCRIBE emp_pack

(*)

DESCRIBE emp_pack(del_emp, show_emp)

DESCRIBE emp_pack.del_emp

DESCRIBE emp_pack.show_emp

DESCRIBE del_emp

DESCRIBE show_emp

Correct Correct

7. Which of the following statements about packages is NOT true ? Mark for
Review

(1) Points

The body contains the detailed code of the subprograms.


The specification must be created before the body.

Cursors can be declared in the specification.

All procedures and functions must be declared in the specification. (*)

Variables can be declared in the body.

Correct Correct

8. Package Specification DEPT_PACK was created by the following code:

CREATE OR REPLACE PACKAGE dept_pack IS

PROCEDURE ins_dept(p_deptno IN NUMBER);

FUNCTION get_dept(p_deptno IN NUMBER) RETURN VARCHAR2;

END dept_pack;

Which of the following are correct syntax for invoking the package subprograms? (Choose two.)

Mark for Review


(1) Points

(Choose all correct answers)

DECLARE

v_deptname VARCHAR2(20);

BEGIN

v_deptname := get_dept(50);

END;

BEGIN

dept_pack.get_dept(20);

END;

CREATE PROCEDURE dept_proc IS

v_deptname VARCHAR2(20);

BEGIN

v_deptname := dept_pack.get_dept(40);

END;

(*)

BEGIN
dept_pack(30);

END;

BEGIN

dept_pack.ins_dept(20);

END;

(*)

Correct Correct

9. To be able to invoke a package subprogram from outside the package, it


must be declared in the package: Mark for Review

(1) Points

Specification

Body and the specification (*)

Body
None of these.

Correct Correct

10. The two parts of a package are stored as separate objects in the database.
True or False? Mark for Review

(1) Points

True (*)

False

Correct Correct

Previous Page 2 of 3 Next Summary

Test: Section 10 Quiz


Review your answers, feedback, and question scores below. An asterisk (*) indicates a correct
answer.

Section 10 Quiz

(Answer all questions in this section)

11. A package contains both public and private subprograms. Which one of the
following statements is true? Mark for Review

(1) Points

The whole package is loaded into memory when the first call is made to any subprogram in
the package. (*)

The public subprograms are all loaded into memory at the same time, but the private
subprograms are loaded into memory one at a time as they are invoked.

Each subprogram is loaded into memory when it is first invoked.

If three users invoke three different subprograms in the package, there will be three copies
of the code in memory.

Correct Correct
12. Your schema contains a package called EMP_PKG. You want to remove the
package body but not the specification. The correct syntax to do this is: DROP BODY emp_pkg; True
or False? Mark for Review

(1) Points

True

False (*)

Correct Correct

13. SCOTT's schema contains a package EMP_PKG which contains a public


procedure EMP_SAL which accepts a NUMBER parameter. Which of the following will invoke the
procedure successfully? Mark for Review

(0) Points

scott.emp_pkg.emp_sal(101): (*)

None of these.
emp_pkg.emp_sal(101);

All of these.

emp_sal(101);

Correct Correct

14. Your schema contains four packages, each having a specification and a body.
You have also been granted privileges to access three packages (and their bodies) in other users'
schemas. What will be displayed by the following query?

SELECT COUNT(*) FROM ALL_OBJECTS

WHERE object_type LIKE 'PACK%'

AND owner <> USER;

Mark for Review

(1) Points

6 (*)

14
7

Correct Correct

15. Package OLDPACK is in your schema. What will happen when the following
statement is executed?

DROP PACKAGE oldpack;

Mark for Review

(1) Points

The body will be dropped but the specification will be retained.

Both the specification and the body will be dropped. (*)


The statement will fail because you must drop the body before you can drop the
specification.

The specification will be dropped but the body will be retained.

Correct Correct

Previous Page 3 of 3 Summary

Вам также может понравиться

  • Sql Plsql Oracle
    Sql Plsql Oracle
    От Everand
    Sql Plsql Oracle
    Оценок пока нет
  • Quiz 10
    Quiz 10
    Документ7 страниц
    Quiz 10
    Andriy
    Оценок пока нет
  • Fin Ex s1
    Fin Ex s1
    Документ22 страницы
    Fin Ex s1
    Marin Florina
    Оценок пока нет
  • Final
    Final
    Документ85 страниц
    Final
    Mohanned Ali
    0% (1)
  • PLSQL Mid Term Semester II - Part 1
    PLSQL Mid Term Semester II - Part 1
    Документ21 страница
    PLSQL Mid Term Semester II - Part 1
    Boeru Marius
    Оценок пока нет
  • PL SQL Midterm Sem 2
    PL SQL Midterm Sem 2
    Документ16 страниц
    PL SQL Midterm Sem 2
    ignatanna
    0% (1)
  • 2 Midterm
    2 Midterm
    Документ18 страниц
    2 Midterm
    Alexandra Lajtrik
    Оценок пока нет
  • Section 10 13 PLSQL
    Section 10 13 PLSQL
    Документ45 страниц
    Section 10 13 PLSQL
    draufy
    Оценок пока нет
  • Section 11
    Section 11
    Документ44 страницы
    Section 11
    lemi teknik
    50% (4)
  • PL/SQL Raspunsuri Test Final
    PL/SQL Raspunsuri Test Final
    Документ27 страниц
    PL/SQL Raspunsuri Test Final
    Cristina Dinu
    50% (2)
  • Section 10-13 PLSQL
    Section 10-13 PLSQL
    Документ45 страниц
    Section 10-13 PLSQL
    jane027
    73% (22)
  • Advanced Package Concepts
    Advanced Package Concepts
    Документ7 страниц
    Advanced Package Concepts
    Catalina Achim
    Оценок пока нет
  • PLSQL Semester 2 Mid Term Exam
    PLSQL Semester 2 Mid Term Exam
    Документ75 страниц
    PLSQL Semester 2 Mid Term Exam
    DYAH
    Оценок пока нет
  • Final Exam 2 PLSQL
    Final Exam 2 PLSQL
    Документ10 страниц
    Final Exam 2 PLSQL
    jane027
    Оценок пока нет
  • Section 1
    Section 1
    Документ7 страниц
    Section 1
    Rania Tawfeek
    Оценок пока нет
  • Final2 Sem1
    Final2 Sem1
    Документ21 страница
    Final2 Sem1
    Ioana Toader
    0% (1)
  • Semester 1 - Final PDF
    Semester 1 - Final PDF
    Документ12 страниц
    Semester 1 - Final PDF
    RaduľkoMiruľkinVandžura
    Оценок пока нет
  • Section 12 Improving PL-SQL Performance
    Section 12 Improving PL-SQL Performance
    Документ3 страницы
    Section 12 Improving PL-SQL Performance
    scribdfatih
    Оценок пока нет
  • Quiz s9
    Quiz s9
    Документ14 страниц
    Quiz s9
    a23mer1439
    Оценок пока нет
  • PLSQL
    PLSQL
    Документ49 страниц
    PLSQL
    jane027
    43% (7)
  • Quiz 2 PL - SQL
    Quiz 2 PL - SQL
    Документ6 страниц
    Quiz 2 PL - SQL
    Jajang Mochamad Mimbar
    Оценок пока нет
  • Using Cursors For Update
    Using Cursors For Update
    Документ4 страницы
    Using Cursors For Update
    Catalina Achim
    100% (2)
  • Semester 1 Final Exam Oracle PL SQL 2 PDF
    Semester 1 Final Exam Oracle PL SQL 2 PDF
    Документ23 страницы
    Semester 1 Final Exam Oracle PL SQL 2 PDF
    Aziz Fikri
    Оценок пока нет
  • Section 8
    Section 8
    Документ8 страниц
    Section 8
    Ovie Widiyastuti
    Оценок пока нет
  • 1 Final
    1 Final
    Документ17 страниц
    1 Final
    Alexandra Lajtrik
    Оценок пока нет
  • Section 3 (Quiz)
    Section 3 (Quiz)
    Документ6 страниц
    Section 3 (Quiz)
    ashishishu
    Оценок пока нет
  • Chapter 8
    Chapter 8
    Документ6 страниц
    Chapter 8
    Fajar Pamungkas
    Оценок пока нет
  • Final Exam Semester 1
    Final Exam Semester 1
    Документ21 страница
    Final Exam Semester 1
    Alexandra Paparusca
    Оценок пока нет
  • Quiz 6 PL - SQL
    Quiz 6 PL - SQL
    Документ6 страниц
    Quiz 6 PL - SQL
    Reza Fae
    Оценок пока нет
  • PLSQL Feedback Midterm Semister 1 Part2
    PLSQL Feedback Midterm Semister 1 Part2
    Документ378 страниц
    PLSQL Feedback Midterm Semister 1 Part2
    Behind TheseHazel BlueEyes
    Оценок пока нет
  • Section 14-15 PLSQL
    Section 14-15 PLSQL
    Документ17 страниц
    Section 14-15 PLSQL
    jane027
    Оценок пока нет
  • Final Exam Semester 1
    Final Exam Semester 1
    Документ19 страниц
    Final Exam Semester 1
    Madalina Marcu
    100% (1)
  • Section 9
    Section 9
    Документ22 страницы
    Section 9
    Moh Nur Alifani
    Оценок пока нет
  • Section 6
    Section 6
    Документ3 страницы
    Section 6
    Sebassssd
    0% (2)
  • 005 - Semester 2 Final Exam
    005 - Semester 2 Final Exam
    Документ9 страниц
    005 - Semester 2 Final Exam
    Daniel Serea
    Оценок пока нет
  • PLSQL Mid2
    PLSQL Mid2
    Документ21 страница
    PLSQL Mid2
    Instrumarc
    Оценок пока нет
  • Mid Exam Semester 1 Part 1
    Mid Exam Semester 1 Part 1
    Документ16 страниц
    Mid Exam Semester 1 Part 1
    Madalina Marcu
    100% (1)
  • Section 1 (Quiz)
    Section 1 (Quiz)
    Документ4 страницы
    Section 1 (Quiz)
    ashishishu
    Оценок пока нет
  • Semester 2 Final Exam PL SQL
    Semester 2 Final Exam PL SQL
    Документ10 страниц
    Semester 2 Final Exam PL SQL
    Catalina Achim
    Оценок пока нет
  • Final Exams em 1
    Final Exams em 1
    Документ19 страниц
    Final Exams em 1
    Marius Iulian
    Оценок пока нет
  • PLSQL Oracle Teste Copie
    PLSQL Oracle Teste Copie
    Документ143 страницы
    PLSQL Oracle Teste Copie
    draufy
    Оценок пока нет
  • Semester 2 Final Exam PL SQL
    Semester 2 Final Exam PL SQL
    Документ9 страниц
    Semester 2 Final Exam PL SQL
    Catalina Achim
    100% (1)
  • Oracle
    Oracle
    Документ15 страниц
    Oracle
    Bomboana Cu Indulcitor
    Оценок пока нет
  • Final Exam
    Final Exam
    Документ14 страниц
    Final Exam
    a23mer1439
    0% (3)
  • Database Programmrner English Merged
    Database Programmrner English Merged
    Документ8 страниц
    Database Programmrner English Merged
    Sebastian SAMANIEGO TORREBLANCA
    Оценок пока нет
  • Section 10 Quiz
    Section 10 Quiz
    Документ7 страниц
    Section 10 Quiz
    Dorin Chioibas
    Оценок пока нет
  • Semester 2 Mid Term Exam 2 PDF
    Semester 2 Mid Term Exam 2 PDF
    Документ23 страницы
    Semester 2 Mid Term Exam 2 PDF
    Aziz Fikri
    Оценок пока нет
  • Mid 2
    Mid 2
    Документ172 страницы
    Mid 2
    Madalina Giurca
    Оценок пока нет
  • Midterm Exam
    Midterm Exam
    Документ19 страниц
    Midterm Exam
    Andriy
    Оценок пока нет
  • Midterm Sem II Eu
    Midterm Sem II Eu
    Документ13 страниц
    Midterm Sem II Eu
    Ioana Loredana Teodorescu
    Оценок пока нет
  • Semester 2 Midterm Exam
    Semester 2 Midterm Exam
    Документ15 страниц
    Semester 2 Midterm Exam
    i.maxian2003
    Оценок пока нет
  • Mid Term Exam Semester 2 Var 2
    Mid Term Exam Semester 2 Var 2
    Документ20 страниц
    Mid Term Exam Semester 2 Var 2
    Cristian Ștefănescu
    Оценок пока нет
  • MD S2
    MD S2
    Документ143 страницы
    MD S2
    Mohanned Ali
    Оценок пока нет
  • Mid Semester 2
    Mid Semester 2
    Документ20 страниц
    Mid Semester 2
    Abdelbaset Abdalla
    Оценок пока нет
  • Mid Term Exam Semester 2 Var 2
    Mid Term Exam Semester 2 Var 2
    Документ19 страниц
    Mid Term Exam Semester 2 Var 2
    deeaionutz
    Оценок пока нет
  • ORACLE - Solutions Midterm Sem2
    ORACLE - Solutions Midterm Sem2
    Документ29 страниц
    ORACLE - Solutions Midterm Sem2
    crispy_joy
    Оценок пока нет
  • Semester 2 Mid Term Exam
    Semester 2 Mid Term Exam
    Документ23 страницы
    Semester 2 Mid Term Exam
    Catalina Achim
    Оценок пока нет
  • Mid Term 2 PLSQL
    Mid Term 2 PLSQL
    Документ22 страницы
    Mid Term 2 PLSQL
    jane027
    100% (1)
  • Semester 2 Midterm Exam
    Semester 2 Midterm Exam
    Документ18 страниц
    Semester 2 Midterm Exam
    daemon29
    Оценок пока нет
  • Dokumen - Tips - Quiz PL SQL 10 15
    Dokumen - Tips - Quiz PL SQL 10 15
    Документ48 страниц
    Dokumen - Tips - Quiz PL SQL 10 15
    Therealastutik
    Оценок пока нет
  • Section 12
    Section 12
    Документ45 страниц
    Section 12
    lemi teknik
    Оценок пока нет
  • Section 11
    Section 11
    Документ44 страницы
    Section 11
    lemi teknik
    50% (4)
  • Section 10
    Section 10
    Документ43 страницы
    Section 10
    lemi teknik
    0% (2)
  • Section 9
    Section 9
    Документ46 страниц
    Section 9
    lemi teknik
    40% (5)
  • P6000 Oscilloscope Probe 1X & 10X - User's Guide
    P6000 Oscilloscope Probe 1X & 10X - User's Guide
    Документ2 страницы
    P6000 Oscilloscope Probe 1X & 10X - User's Guide
    Bly
    Оценок пока нет
  • LC 5296 at
    LC 5296 at
    Документ2 страницы
    LC 5296 at
    Rohit Berwal
    Оценок пока нет
  • Article 1659623624
    Article 1659623624
    Документ4 страницы
    Article 1659623624
    VƯỢNG ĐỨC
    Оценок пока нет
  • CSEIT1726208 A
    CSEIT1726208 A
    Документ9 страниц
    CSEIT1726208 A
    2048-VISHNU SUDHARSUN
    Оценок пока нет
  • Brochure X13 Servers
    Brochure X13 Servers
    Документ48 страниц
    Brochure X13 Servers
    Tsuroerusu
    Оценок пока нет
  • Sun2000 40KTL M3
    Sun2000 40KTL M3
    Документ2 страницы
    Sun2000 40KTL M3
    Imam Tyo
    Оценок пока нет
  • Brocade Commands: Hemant Hemant
    Brocade Commands: Hemant Hemant
    Документ9 страниц
    Brocade Commands: Hemant Hemant
    Suresh Darisi
    Оценок пока нет
  • Cpe Wi Zyxel Ex3220 150422
    Cpe Wi Zyxel Ex3220 150422
    Документ88 страниц
    Cpe Wi Zyxel Ex3220 150422
    Haris Yusof
    Оценок пока нет
  • FE Csi
    FE Csi
    Документ12 страниц
    FE Csi
    Thanh Huyền Cao
    Оценок пока нет
  • Classless Inter-Domain Routing (CIDR) (192.168.100.0/29)
    Classless Inter-Domain Routing (CIDR) (192.168.100.0/29)
    Документ2 страницы
    Classless Inter-Domain Routing (CIDR) (192.168.100.0/29)
    MCTCOLTD
    Оценок пока нет
  • Unit-3 Overview of Javascript
    Unit-3 Overview of Javascript
    Документ31 страница
    Unit-3 Overview of Javascript
    اریب صديقي
    Оценок пока нет
  • Rtu2020 Specs
    Rtu2020 Specs
    Документ16 страниц
    Rtu2020 Specs
    Yuri Caleb Gonzales Sanchez
    Оценок пока нет
  • Irf6775mpbf PDF
    Irf6775mpbf PDF
    Документ10 страниц
    Irf6775mpbf PDF
    Márcio Ferreira
    Оценок пока нет
  • Section 16E Fire Alarm and Interactive Detection System
    Section 16E Fire Alarm and Interactive Detection System
    Документ25 страниц
    Section 16E Fire Alarm and Interactive Detection System
    Mark Roger II Huberit
    Оценок пока нет
  • OTGv 4
    OTGv 4
    Документ222 страницы
    OTGv 4
    Joshua Brodie
    Оценок пока нет
  • Remote Production For Live Holographic Teleportation Applications in 5G Networks
    Remote Production For Live Holographic Teleportation Applications in 5G Networks
    Документ13 страниц
    Remote Production For Live Holographic Teleportation Applications in 5G Networks
    shiva
    Оценок пока нет
  • Manual Sony HCD-SH2000 (88 Páginas)
    Manual Sony HCD-SH2000 (88 Páginas)
    Документ2 страницы
    Manual Sony HCD-SH2000 (88 Páginas)
    Alberto Casero
    Оценок пока нет
  • Computer Hardware Short
    Computer Hardware Short
    Документ2 страницы
    Computer Hardware Short
    Sukanta Bhattacharjee
    Оценок пока нет
  • Xshield Solution Sheet 1
    Xshield Solution Sheet 1
    Документ4 страницы
    Xshield Solution Sheet 1
    Bala
    Оценок пока нет
  • Intoduction To Computing
    Intoduction To Computing
    Документ292 страницы
    Intoduction To Computing
    Nem Kumar
    Оценок пока нет
  • Labview 3d Control Simulation Using Solidworks 3d Models 4
    Labview 3d Control Simulation Using Solidworks 3d Models 4
    Документ4 страницы
    Labview 3d Control Simulation Using Solidworks 3d Models 4
    Andony Castillo
    100% (1)
  • Acn Sample Report Acn Microproject 5th Sem
    Acn Sample Report Acn Microproject 5th Sem
    Документ16 страниц
    Acn Sample Report Acn Microproject 5th Sem
    shreyasbhoge123
    Оценок пока нет
  • KEPServer Enterprise v5.30 and v4.50 Release Notes
    KEPServer Enterprise v5.30 and v4.50 Release Notes
    Документ8 страниц
    KEPServer Enterprise v5.30 and v4.50 Release Notes
    ZaaCk Arano
    Оценок пока нет
  • Adsp 21469
    Adsp 21469
    Документ72 страницы
    Adsp 21469
    nd_lng
    Оценок пока нет
  • B01-SOP-HC-E-003 - HC-E Controller Basic Installation Instructions - ENG
    B01-SOP-HC-E-003 - HC-E Controller Basic Installation Instructions - ENG
    Документ2 страницы
    B01-SOP-HC-E-003 - HC-E Controller Basic Installation Instructions - ENG
    Kien Nguyen Trung
    Оценок пока нет
  • Development of Arduino-Based Panic Alarm With GPS and GSM Modules
    Development of Arduino-Based Panic Alarm With GPS and GSM Modules
    Документ11 страниц
    Development of Arduino-Based Panic Alarm With GPS and GSM Modules
    International Journal of Innovative Science and Research Technology
    Оценок пока нет
  • Narda IDA 3106
    Narda IDA 3106
    Документ13 страниц
    Narda IDA 3106
    ParvezRana1
    Оценок пока нет
  • LTE Planning Optimization Features
    LTE Planning Optimization Features
    Документ6 страниц
    LTE Planning Optimization Features
    sgraj
    Оценок пока нет
  • RRM TN NTN
    RRM TN NTN
    Документ6 страниц
    RRM TN NTN
    Ali Arsal
    Оценок пока нет