You are on page 1of 21

Search Tech Interviews

TechInterviews Search
Prepare for job interviews with the questions and answers asked by high-tech employers

.NET C++ Database General Hardware Jav a Networking Puzzles SAP ABAP Testing Unix/Linux VB Web dev Windows

Database >> PL/SQL interview qiuestions

PL/SQL interview qiuestions


By admin | May 8, 2004

1. Which of the following statements is true about implicit cursors?


A. Implicit cursors are used for SQL statements that are not named.

B. Developers should use implicit cursors with great care.


C. Implicit cursors are used in cursor for loops to handle data processing.
D. Implicit cursors are no longer a feature in Oracle.

2. Which of the following is not a feature of a cursor FOR loop?


A. Record ty pe declaration.

B. Opening and parsing of SQL statements.


C. Fetches records from cursor.
Ads by Google
D. Requires exit condition to be defined.
3. A developer would like to use referential datatype declaration on a variable. Oracle 9i Database Tuning
The variable name is EMPLOYEE_LASTNAME, and the corresponding table Tune Oracle 9i Database Performance Immediate
and column is EMPLOYEE, and LNAME, respectively. How would the ROI, Free Trial Download!
developer define this variable using referential datatypes? www.Confio.com/Oracle9i
A. Use employ ee.lname%ty pe.
Oracle Database Upgrade
B. Use employ ee.lname%rowty pe. Cintra - Premier Oracle Partner Offers Free
C. Look up dataty pe for EMPLOYEE column on LASTNAME table and use that. Upgrade Assessment
D. Declare it to be ty pe LONG. www.cintra.com
4. Which three of the following are implicit cursor attributes?
A. %found Interview Answer Guide
Increase y our chance of being hired With easy to
B. %too_many _rows
follow answer guide.
C. %notfound www.JobInterv iewTools.com
D. %rowcount
E. %rowty pe
5. If left out, which of the following would cause an infinite loop to occur in a
simple loop? Job Interview Question Articles
A. LOOP C# Interview Questions and Answers
QTP Interview Questions and Answers
B. END LOOP C++ Interview Questions and Answers
C. IF-THEN PHP Interview Questions and Answers
D. EXIT XML Interview Questions and Answers
6. Which line in the following statement will produce an error? JavaScript Interview Questions and Answers
A. cursor action_cursor is Asp.Net Interview Questions and Answers
J2EE Interview Questions and Answers
B. select name, rate, action ABAP Interview Questions and Answers
C. into action_record Perl Interview Questions and Answers
D. from action_table; Java Interview Questions and Answers
E. There are no errors in this statement.
7. The command used to open a CURSOR FOR loop is
A. open Resources
Technology Question and Answer Website
B. fetch How to dance around the salary -expectation
C. parse question
D. None, cursor for loops handle cursor opening implicitly . 10 mistakes managers make during job interviews
8. What happens when rows are found using a FETCH statement ID Maker
A. It causes the cursor to close Stupid interview questions
How to Answer These Tricky Interview Questions
B. It causes the cursor to open Seven tips for writing an online profile for LinkedIn,
C. It loads the current row values into variables My Space or Facebook
D. It creates the variables to hold the current row values Video surveillance

converted by Web2PDFConvert.com
9. Read the following code: Ink cartridges
CREATE OR REPLACE PROCEDURE find_cpt Laptop computers
(v_movie_id {Argument Mode} NUMBER, v_cost_per_ticket {argument mode} NUMBER) Affordable life insurance
IS Ink cartridges
BEGIN
IF v_cost_per_ticket > 8.5 THEN
SELECT cost_per_ticket Tutorials
INTO v_cost_per_ticket AJAX Tutorials
FROM gross_receipt Dealing with y our job
WHERE movie_id = v_movie_id; Getting a job
END IF; JavaScript tutorials
END; Job interview tips from Yahoo! HotJobs
My SQL tutorials
Which mode should be used for V_COST_PER_TICKET? Retiring from y our job
Ruby on Rails tutorials
A. IN Salary guide for IT jobs
B. OUT Self-employ ment
C. RETURN TechInterviews guides in PDF
D. IN OUT Understanding pointers
10. Read the following code: XML Tutorials
CREATE OR REPLACE TRIGGER update_show_gross XUL tutorials
{trigger information}
BEGIN
{additional code} RSS Feeds
END; All posts
All comments
The trigger code should only execute when the column, COST_PER_TICKET, is greater
than $3. Which trigger information will you add?

A. WHEN (new.cost_per_ticket > 3.75)

B. WHEN (:new.cost_per_ticket > 3.75


C. WHERE (new.cost_per_ticket > 3.75)
D. WHERE (:new.cost_per_ticket > 3.75)
11. What is the maximum number of handlers processed before the PL/SQL block
is exited when an exception occurs?
A. Only one

B. All that apply


C. All referenced
D. None
12. For which trigger timing can you reference the NEW and OLD qualifiers?
A. Statement and Row

B. Statement only
C. Row only
D. Oracle Forms trigger
13. Read the following code:
CREATE OR REPLACE FUNCTION get_budget(v_studio_id IN NUMBER)
RETURN number IS

v_yearly_budget NUMBER;

BEGIN
SELECT yearly_budget
INTO v_yearly_budget
FROM studio
WHERE id = v_studio_id;

RETURN v_yearly_budget;
END;

Which set of statements will successfully invoke this function within


SQL*Plus?

A. VARIABLE g_y early _budget NUMBER


EXECUTE g_y early _budget := GET_BUDGET(11);

B. VARIABLE g_y early _budget NUMBER


EXECUTE :g_y early _budget := GET_BUDGET(11);

C. VARIABLE :g_y early _budget NUMBER


EXECUTE :g_y early _budget := GET_BUDGET(11);

D. VARIABLE g_y early _budget NUMBER


:g_y early _budget := GET_BUDGET(11);
14.

converted by Web2PDFConvert.com
CREATE OR REPLACE PROCEDURE update_theater
(v_name IN VARCHAR v_theater_id IN NUMBER) IS
BEGIN
UPDATE theater
SET name = v_name
WHERE id = v_theater_id;
END update_theater;

When invoking this procedure, you encounter the error:

ORA-000: Unique constraint(SCOTT.THEATER_NAME_UK) violated.

How should you modify the function to handle this error?

A. An user defined exception must be declared and associated with the error code
and handled in the EXCEPTION section.

B. Handle the error in EXCEPTION section by referencing the error code directly .
C. Handle the error in the EXCEPTION section by referencing the UNIQUE_ERROR
predefined exception.
D. Check for success by checking the value of SQL%FOUND immediately after the
UPDATE statement.
15. Read the following code:
CREATE OR REPLACE PROCEDURE calculate_budget IS
v_budget studio.yearly_budget%TYPE;
BEGIN
v_budget := get_budget(11);
IF v_budget < 30000
THEN
set_budget(11,30000000);
END IF;
END;

You are about to add an argument to CALCULATE_BUDGET. What effect will


this have?

A. The GET_BUDGET function will be marked invalid and must be recompiled


before the next execution.

B. The SET_BUDGET function will be marked invalid and must be recompiled


before the next execution.
C. Only the CALCULATE_BUDGET procedure needs to be recompiled.
D. All three procedures are marked invalid and must be recompiled.
16. Which procedure can be used to create a customized error message?
A. RAISE_ERROR

B. SQLERRM
C. RAISE_APPLICATION_ERROR
D. RAISE_SERVER_ERROR
17. The CHECK_THEATER trigger of the THEATER table has been disabled.
Which command can you issue to enable this trigger?
A. ALTER TRIGGER check_theater ENABLE;

B. ENABLE TRIGGER check_theater;


C. ALTER TABLE check_theater ENABLE check_theater;
D. ENABLE check_theater;
18. Examine this database trigger
CREATE OR REPLACE TRIGGER prevent_gross_modification
{additional trigger information}
BEGIN
IF TO_CHAR(sysdate, DY) = MON
THEN
RAISE_APPLICATION_ERROR(-20000,Gross receipts cannot be deleted on Monday);
END IF;
END;

This trigger must fire before each DELETE of the GROSS_RECEIPT table. It
should fire only once for the entire DELETE statement. What additional
information must you add?

A. BEFORE DELETE ON gross_receipt

B. AFTER DELETE ON gross_receipt


C. BEFORE (gross_receipt DELETE)
D. FOR EACH ROW DELETED FROM gross_receipt
19. Examine this function:
CREATE OR REPLACE FUNCTION set_budget
(v_studio_id IN NUMBER, v_new_budget IN NUMBER) IS

converted by Web2PDFConvert.com
BEGIN
UPDATE studio
SET yearly_budget = v_new_budget
WHERE id = v_studio_id;

IF SQL%FOUND THEN
RETURN TRUEl;
ELSE
RETURN FALSE;
END IF;

COMMIT;
END;

Which code must be added to successfully compile this function?

A. Add RETURN right before the IS key word.

B. Add RETURN number right before the IS key word.


C. Add RETURN boolean right after the IS key word.
D. Add RETURN boolean right before the IS key word.
20. Under which circumstance must you recompile the package body after
recompiling the package specification?
A. Altering the argument list of one of the package constructs

B. Any change made to one of the package constructs


C. Any SQL statement change made to one of the package constructs
D. Removing a local variable from the DECLARE section of one of the package
constructs
21. Procedure and Functions are explicitly executed. This is different from a
database trigger. When is a database trigger executed?
A. When the transaction is committed

B. During the data manipulation statement


C. When an Oracle supplied package references the trigger
D. During a data manipulation statement and when the transaction is committed
22. Which Oracle supplied package can you use to output values and messages
from database triggers, stored procedures and functions within SQL*Plus?
A. DBMS_DISPLAY

B. DBMS_OUTPUT
C. DBMS_LIST
D. DBMS_DESCRIBE
23. What occurs if a procedure or function terminates with failure without being
handled?
A. Any DML statements issued by the construct are still pending and can be
committed or rolled back.

B. Any DML statements issued by the construct are committed


C. Unless a GOTO statement is used to continue processing within the BEGIN
section, the construct terminates.
D. The construct rolls back any DML statements issued and returns the unhandled
exception to the calling environment.
24. Examine this code
BEGIN
theater_pck.v_total_seats_sold_overall := theater_pck.get_total_for_year;
END;

For this code to be successful, what must be true?

A. Both the V_TOTAL_SEATS_SOLD_OVERALL variable and the


GET_TOTAL_FOR_YEAR function must exist only in the body of the
THEATER_PCK package.

B. Only the GET_TOTAL_FOR_YEAR variable must exist in the specification of the


THEATER_PCK package.
C. Only the V_TOTAL_SEATS_SOLD_OVERALL variable must exist in the
specification of the THEATER_PCK package.
D. Both the V_TOTAL_SEATS_SOLD_OVERALL variable and the
GET_TOTAL_FOR_YEAR function must exist in the specification of the
THEATER_PCK package.
25. A stored function must return a value based on conditions that are
determined at runtime. Therefore, the SELECT statement cannot be hard-
coded and must be created dynamically when the function is executed. Which
Oracle supplied package will enable this feature?
A. DBMS_DDL

converted by Web2PDFConvert.com
B. DBMS_DML
C. DBMS_SYN
D. DBMS_SQL

This entry was posted in Database. Bookmark the permalink. Post a comment or leav e a
trackback: Trackback URL.

« C interview questions Software tester interview questions »

Ads by Google

ETL Open Source Encrypt Data/Files


Download 1 centralized encry ption
Fast, Powerful, Affordable, program-- for all
Easy Migration Tools. Free DBs/apps/files. See how.
Download! Vormetric.com/Database-
www.Talend.com/Open_Source_ETL
Encry ption

5 0C O M M E N T S O N P L / S Q L I N T E R V I E W Q I U E S T I O N S

Sachin Rastogi (rsachin@krify.com)


Posted 5/9/2004 at 11:27 pm | Permalink

Thanks again for publishing my questions.

Sudhir
Posted 5/14/2004 at 10:49 am | Permalink

1.1
2.2
3.1
4.(1,3,4)
5.2
6.3
7.4
8.2
9.2
10.(3,4)
11.1
12.4
13.1
14.1
15.3
16.3
17.1
18.(1,4)
19.4
20.3
21.4
22.2
23.4
24.3
25.4

please let me know how many answers are right. in this pl/sql test.

Thanks & Regards,


Sudhir Rao.

Unnamed
Posted 9/20/2004 at 6:27 am | Permalink

Answer to question-2 is 4

converted by Web2PDFConvert.com
dcz
Posted 9/25/2004 at 2:52 am | Permalink

24 IS 4

Stephen Jacob
Posted 9/27/2004 at 9:30 pm | Permalink

The answer to the question 8 is wrong; should be 3.

Stephen Jacob
Posted 9/27/2004 at 9:37 pm | Permalink

Answer to number 9 should be 4.


How can y ou check for the initial value, if there is no user input?

Ahamed Tharik.N
Posted 10/18/2004 at 2:32 am | Permalink

The Answer to the question 8 is 3rd Choice.

Ahamed Tharik.N
Posted 10/18/2004 at 2:51 am | Permalink

Question 13 all the four answers are wrong , the function executed like this

SQL> select get_budget(11) into :g_y early _budget from dual;

GET_BUDGET(11)
————–

Let me know, if y ou have any Suggestions.

Francisco J. Banda
Posted 10/25/2004 at 3:20 pm | Permalink

The Answer to the question 5 is 4rd Choice.


If y ou are missing the END LOOP (2), the loop do not work, procedure does not
compile.

Francisco J. Banda
Posted 10/25/2004 at 3:39 pm | Permalink

The Answer to the question 5 is 1rd Choice.


Iti’s imposible that both 3 and 4 are correct. We do not need location (where) we
need time (when).

Francisco J. Banda
Posted 10/25/2004 at 3:44 pm | Permalink

The Answer to the question 5 is 3rd Choice.


The 4rd (Oracle Forms trigger) is in some way correct, but oracle triggers and
Forms triggers are not the same. This question is about Oracle triggers (not

converted by Web2PDFConvert.com
Forms).

Francisco J. Banda
Posted 10/25/2004 at 3:54 pm | Permalink

Hi Ahamed Tharik.N y our answer is correct, but also answer number 2 works
to be able to see the result uses SQL>print g_y early _budget.

Pranav Vora
Posted 6/14/2005 at 1:25 am | Permalink

The answer to the question 13 should be 2.

I fully agree with Francisco J. Banda. For Francisco, y our answers are right,
just match question numbers.

I tried to do and here is the revised answer list. (T means correct answer choice)

1.)1 : T
2.)2 - 4 : 4 - T
3.)1 : T
4.)(1,3,4) - T
5.)2 - 4 : 4 - T
6.)3 - T
7.)4 - T
8.)2 - 3 - 3 : 3 - T
9.)2 - 4 : 4 - T
10.)(3,4) - 1
11.)1 - [I dont know correct answer]
12.)4 - 3 : 3 - T
13.)1 - ? : 2 - T

Thanks.

Arti Shah
Posted 9/29/2005 at 7:33 am | Permalink

1.1
2.4
3.2
4.1,3,5
5.2
6.2,3
7.1
8.3
9.4
10.4
11.4
12.1
13.2
14.4
15.3
16.2
17.2
18.1
19.4
20.3
21.4
22.2
23.4
24.4
25.4

vijay
Posted 12/15/2005 at 7:04 am | Permalink

converted by Web2PDFConvert.com
The answer to the 23 is 4

vijay
Posted 12/15/2005 at 7:06 am | Permalink

answer for 22 is 2

oraguru
Posted 12/15/2005 at 7:11 am | Permalink

answer for 18 is 1

cobra
Posted 3/29/2006 at 12:51 am | Permalink

Right answer to QUS.5 is 4th option coz if end loop is missed in programming it
wud through error while compiling , but if u missed EXIT , the program wud
not know where to exit the loop …and loop wud go on

aa
Posted 6/13/2006 at 3:46 pm | Permalink

1. 1
2. 4
3. 1
4. 1,3,4
5. 2
6. 2,3
7. 4
8. 3
9. 4
10. 1
11. 2
12. 3
13. 2
14.4
15. 3
16. 3
17.2
18. 1
19. 3
20.3
21. 4
22. 2

Pr@shant
Posted 8/17/2006 at 5:48 pm | Permalink

This is what I think the answers should be:


1.1
2.4
3.1
4.1,3,4
5.4
6.3
7.4
8.3
9.4
10.1
11. Not certain but if I have to pick, I would pick 1
12.3
13.2

converted by Web2PDFConvert.com
14.2 (In When Others clause of Exception Handler, we can trap the SQLCODE
and display user friendly message.)
15.3
16.3
17.1
18.1
19.4
20.1 (Both the package spec and the package body must be compiled only when
the global function definition changes)
21.2
22.2
23.4
24.4
25.4

Goodluck!!

Ram Pratap Singh


Posted 9/23/2006 at 1:20 pm | Permalink

The Correct answers are:


1: 1
2: 4
3: 1
4: 1 3 4
5: 4
6: 3
7: 4
8: 3
9: 4
10: 1
11: 1
12: 3
13: 2
14: 2
15: 3
16: 3
17: 1
18: 1 2
19 None Of Them
20: 2
21: 2
22: 2
23: 4
24: 4
25: 4

Gab O'layomi
Posted 11/1/2006 at 10:29 am | Permalink

Think all my answers are correct

1. 1
2. 4
3. 1
4. (1,3,5)
5. 4
6. 3
7. 4
8. 3
9. 4
10. 1
11. 1
12. 3
13. 2
14. 1 (I’m sure this is correct but may be 4 can also)
15. 3
16. 3
17. 1
18. 1
19. 4
20. 3

converted by Web2PDFConvert.com
21. 4
22. 2
23. 4
24. 4
25. 4

praveen
Posted 11/18/2006 at 10:00 am | Permalink

can somebody explain 20th question:i feel that all the 4 answers are correct
and for 21st question i feel that 2 and 3 are correct answers.Please support y our
ans by some examples,so that it can be understood by one and all.Thanks in
advance.

sachin Gondale
Posted 12/4/2006 at 5:29 am | Permalink

These are Correct answers:

1 -1
2 -4
3 -1
4 - 1,3,4
5 -4
6 -3
7 -4
8 -3
9 -4
10 - 1
11 - 1
12 - 3
13 - 2
14 - 1
15 - 3
16 - 3
17 - 1
18 - 1
19 - 4
20 - 1
21 - 2
22 - 2
23 - 4
24 - 4
25 - 4

Prashant Sinha
Posted 1/17/2007 at 5:25 am | Permalink

1.1
2.4
3.1
4.1,3,4
5.1
6.3
7.4
8.3
9.4
10.1
11.2
12.3
13.4
16.3
17.1
18.1

converted by Web2PDFConvert.com
Potkin Nemat
Posted 1/25/2007 at 12:41 pm | Permalink

I get:

1) 1,2 [2 must be true - any thing should be handled with great care :)]

2)1,2
3)1
4)1,3,4
5)4
6)3
7)4
8)3
9)1
10)4
11)1
12)3
13)4
14)1
15)3
16)3
17)1
18)1
19)4
20)1,2
21)4
22)2
23)4
24)4
25)4

GK
Posted 1/26/2007 at 9:57 am | Permalink

Why do most people feel that y ou need to delcare a record ty pe for a cursor for
loop as in q 2? I have NEVER created a record ty pe for a cursor for loop. I think
such a basic question not being answered correctly is strange.

number 1 and number 4 are both correct.

Good job Potkin Namat, y ou’re the million dollar winner because y ou didn’t
listen to the masses.

Avneesh
Posted 1/28/2007 at 6:22 am | Permalink

Well I guess the answers are :

1 -1
2- 1
3- 1
4- 1,3,4
5- 4
6- 3
7- 4
8- 3
9- 2
10- 4
11- 1
12- 3
13- 2
14- 1
15- 3
16- 3
17- 1
18- 1
19- 4
20- 1
21- 2
22- 2
23- 4

converted by Web2PDFConvert.com
23- 4
24- 4
25- 4

NAGURTILAK
Posted 3/15/2007 at 1:24 pm | Permalink

1)3
2)4
3)1
4)1,3,4
5)2
6)3
7)4
8)3
9)4
10)2
11)1
12)3
13)2
14)1
15)4
16)3
17)1
18)1
19)4
20)2
21)2
22)2
23)4
24)4
25)4

THIS IS TILAK OK

sdp
Posted 4/9/2007 at 1:12 am | Permalink

I think these r the right answers


1)1
2)1
3)1
4)1,3,4
5)4
6)3
7)4
8)3
9)4
10)2
11)1
12)1
13)2
14)3
15)3
16)3
17)1
18)1
19)4
20)1
21)4
22)2
23)4
24)4
25)4

Diva
Posted 4/17/2007 at 8:11 am | Permalink

My Answers are:-

converted by Web2PDFConvert.com
1.1,2
3.1
4.1,3,4
5.4
6.3
7.4
8.3
9.4
10.1
11.1
12.3
13.2
15.3
16.3
17.3
18.1
19.4
21.2
22.2
23.4
25.4

skk
Posted 4/18/2007 at 6:40 am | Permalink

Tell me how many answers are right.


This is my first try .
1)3
2)4
3)1
4)3,4,5
5)4
6)3
7)1
8)4
9)2
10)4
11)2
12)3
13)1
14)1
15)3
16)2
17)2
18)4
19)3
20)4
21)2
22)2
23)4
24)4
25)4

Devi
Posted 5/15/2007 at 1:48 am | Permalink

1-1
2- 1
3- 1
4- 1
5- 4
6- 3
7- 4
8- 3
9- 2
10- 4
11- 1
12- 3
13- 2
14- 1
15- 3
16- 3

converted by Web2PDFConvert.com
17- 1
18- 1
19- 4
20- 1
21- 2
22- 2
23- 4
24- 4
25- 4

Aravinda
Posted 6/12/2007 at 3:53 am | Permalink

Hi guy s,

I gave this test, and would like to know how much I score. Ofcourse, every one
has posted what they think are the “right” answers…but, do we have some
expert here, who can be nice enough to compile a list of the correct answers to
all questions?! Here are my answers, I am not sy aing they right, so kindly DO
NOT use to check. I only want to know my score.

Thanks in advance!

Arvinda.

1-1
2-4
3-1
4-1,2,3
5-4
6-3
7-4
8-3
9-4
10-2
11-1
12-3
13-4
14-1
15-3
16-3
17-1
18-1
19-4
20-2
21-2
22-2
23-4
24-4
25-4

johnny
Posted 6/12/2007 at 8:08 am | Permalink

Hi frnds, ths johnny ….

Hre’s d key 4 d ??? stated –> ^

1.1
2.1
3.1
4.1,3,4
5.4
6.3
7.4
8.3
9.4
10.1
11.1
12.3
13.2

converted by Web2PDFConvert.com
14.1
15.3
16.3
17.1
18.1
19.4
20.1
21.2
22.2
23.4
24.4
25.4

samarendra mishra
Posted 7/6/2007 at 5:29 am | Permalink

1-1
2- 4
3- 1
4- 1,3,4
5- 4
6- 3
7- 4
8- 3
9- 4
10- 1
11- 1
12- 3
13- 2
14- 1
15- 3
16- 3
17- 1
18- 1
19- 4
20- 2
21- 2
22- 2
23- 4
24- 4
25- 4

mahendra rane
Posted 8/3/2007 at 8:46 am | Permalink

1-1
2- 4
3- 1
4- 1,3,4
5- 4
6- 3
7- 4
8- 3
9- 4
10- 1
11- 1
12- 3
13- 2
14- 1
15- 3
16- 3
17- 1
18- 1
19- 4
20- 2
21- 2
22- 2
23- 4
24- 4
25- 4

converted by Web2PDFConvert.com
Suman Bej
Posted 8/14/2007 at 2:00 am | Permalink

Hi,
I think the answer should be :
1-1
2- 4
3- 1
4- 3,4,5
5- 4
6- 3
7- 4
8- 3
9- 4
10- 1
11- 1
12- 3
13- 2
14- 1
15- 3
16- 3
17- 1
18- 1
19- 4
20- 2
21- 2
22- 2
23- 4
24- 4
25- 4

swarna
Posted 8/17/2007 at 3:42 am | Permalink

In the above implicit cursor attributes are only to_many _rows

Anil kapil
Posted 11/14/2007 at 7:20 am | Permalink

1)1
2)4
3)1
4)2,3,4
5)
6)3
7)4
8)3
9)4
10)2
11)1
12)3
13)4
14)3
15)3
16)3
17)2
18)1
19)4
20)
21)4
22)2
23)4
24)4
25)4

sdp

converted by Web2PDFConvert.com
Posted 11/28/2007 at 1:33 am | Permalink

1)1
2)4
3)1
4)1,3,4
5)4
6)3
7)4
8)3
9)4
10)1
11)1
12)3
13)2
14)3
15)3
16)3
17)1
18)1
19)4
20)1
21)4
22)2
23)4
24)4
25)4

Soanli
Posted 2/22/2008 at 12:46 am | Permalink

Hi
These are my ans’s can u plz tell me my score how many r right & wrong
qtn ans
11
21
33
4 1,3,4
54
63
74
83
94
10 4
11 1
12 3
13 2
14 1
15 3
16 3
17 3
18 1
19 3
20 2
21 2
22 2
23 4
24 4
25 4

banvari lal maurya


Posted 3/27/2008 at 3:05 am | Permalink

hi here is my answer could y ou tell how many answers are correct. Thank y ou.

1. 1
2. 4
3. 1
4. 1 , 3 , 4
5. 4
6. 3
7. 4

converted by Web2PDFConvert.com
8. 3
9. 4
10. 1
11. 1
12. 3
13. 2
14. 3
15. 1
16. 3
17. 1
18. 1
19. 3
20. 2
21. 2
22. 2
23. 1
24. 4
25. 4

Deepika S Verma
Posted 4/3/2008 at 4:37 am | Permalink

1. 1
2. 4
3. 1
4. 1,3,4
5. 4
6. 3
7. 4
8. 3
9. 4
10. 1
11. 1 only one for which exception is raised
12. 3
13. 2
14. 1 befor updating check whether data exist and if y es then handle in
exception with user defined exception else update the data.
15. all the procedures / packages depend on altered procedure / package
needs to be compiled again.
16. 3
17. 1
18. 1
19. 4
20. If any of the change is made either in spec or body , we need to compile both
spec and body of package and all the depending packages.
21. 3
22. 2
23. 4
24. 4
25. 4

tahir
Posted 4/30/2008 at 12:25 am | Permalink

11
22
31
4134
54
65
74
83
9 4*
10 1
11 1
12 3
13 4
14 1*
15 3
16 2
17 1*

converted by Web2PDFConvert.com
18 1
19 1
20 1234*
21 2
22 2
23 4
24 4
25 4

ALEX.C
Posted 8/13/2008 at 9:34 am | Permalink

My answers are:

1) 1;
2) 2;
3) 1;
4) 1,3,4;
5) 2;
6) 3;
7) 4;
8) 3;
9) 4;
10)2;
11)4;
12)3;
13)1;
14)1;
15)1;
16)3;
17)3;
18)1;
19)2;
20)1,4;
21)2;
22)2;
23)4;
24)4;
25)1.

Kanvik
Posted 9/20/2008 at 3:43 am | Permalink

Hii
If any expert can go through my answers and tell my result then i would bbe
thankful to him.

My Answers
———
1. 1
2. 1
3. 2
4. 1,3,4
5. 3
6. 3
7. 4
8. 3
9. 4
10. 1
11. 2
12. 3
13. 2
14. 2
15. 3
16. 3
17. 3
18. 4
19. 4
20. 2
21. 2
22. 2
23. 4

converted by Web2PDFConvert.com
24. 4
25. 1

seenu
Posted 11/10/2008 at 6:00 am | Permalink

1)3
2)4
3)1
4)1,3,4
5)2
6)3
7)4
8)3
9)4
10)2
11)1
12)3
13)2
14)1
15)4
16)3
17)1
18)1
19)4
20)2
21)2
22)2
23)4
24)4
25)4

Salil
Posted 12/1/2008 at 6:13 am | Permalink

1. 1
2. 1
3. 1
4. 1,3,4
5. 4
6. 3
7. 4
8. 4
9. 1
10. 2
11. 1
12. 3
13. 2
14. 1
15. 1
16. 2
17. 3
18. 4
19. 1
20. 4
21. 3
22. 2
23. 4
24. 4
25. 1

compilation #1
Posted 1/19/2009 at 2:18 pm | Permalink

I meant to say (spaces not tabs!)

1)* 3 1 1 1,2 1 1
2)* 4 4 1 1,2 4 4

converted by Web2PDFConvert.com
3)* 1 1 1 1 1 2
4)* 1,3,4 1,3,4 1,3,4 1,3,4 (1,3,5) 1,3,5
5)* 2 4 4 4 4 2
6)* 3 3 3 3 3 2,3
7)* 4 4 4 4 4 1
8) 3 3 3 3 3 3
9)** 4 4 2 1 4 4
10)** 2 1 4 4 1 4
11)* 1 1 1 1 1 4
12)* 3 3 3 3 3 1
13) 2 2 2 4 2 2
14)* 1 1 1 1 1 4
15)* 4 3 3 3 3 3
16)* 3 3 3 3 3 2
17) 1 1 1 1 1 2
18) 1 1 1 1 1 1
19) 4 4 4 4 4 4
20)* 2 2 1 1,2 3 3
21)* 2 2 2 4 4 4
22) 2 2 2 2 2 2
23) 4 4 4 4 4 4
24) 4 4 4 4 4 4
25) 4 4 4 4 4 4

P O S T A C O M M E N T

Your email is never published nor shared. Required fields are marked *

Name * Email *

Website

Comment

Post Comment

Powered by WordPress. Built on the Thematic Theme Framework.

converted by Web2PDFConvert.com

You might also like