Search Tech Interviews

Embed Size (px)

Citation preview

  • 7/31/2019 Search Tech Interviews

    1/20

    Search Tech Interviews

    Tech InterviewsPrepare for job interviews with the questions and answers asked by high-tech employers

    .NET

    C++

    Database

    General

    Hardware

    Java

    Networking

    Puzzles

    SAP ABAP

    Testing

    Unix/Linux

    VB

    Web dev

    Windows

    Database>> PL/SQL interview qiuestions

    PL/SQL interview qiuestionsByadmin| 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 type declaration.

    B. Opening and parsing of SQL statements.

    C. Fetches records from cursor.

    D. Requires exit condition to be defined.

    3. A developer would like to use referential datatype declaration on a variable. The variable name is EMPLOYEE_LASTNAME, and the corresponding table and column is

    EMPLOYEE, and LNAME, respectively. How would the developer define this variable using referential datatypes?

    A. Use employee.lname%type.

    B. Use employee.lname%rowtype.

    C. Look up datatype for EMPLOYEE column on LASTNAME table and use that.

    D. Declare it to be type LONG.

    4. Which three of the following are implicit cursor attributes?

    A. %found

    B. %too_many_rows

    C. %notfound

    D. %rowcount

    E. %rowtype

    5. If left out, which of the following would cause an infinite loop to occur in a simple loop?

    A. LOOP

    B. END LOOP

    C. IF-THEN

    D. EXIT

    6. Which line in the following statement will produce an error?

    A. cursor action_cursor is

    B . s el ect n ame, ra te , act ion

    C . i nto ac tio n_re co rd

    D . f rom ac ti on _ta ble ;

    E. There are no errors in this statement.

    7. The command used to open a CURSOR FOR loop is

    A. open

    B. fetch

    C. parse

    D. None, cursor for loops handle cursor opening implicitly.

    8. What happens when rows are found using a FETCH statement

    A. It causes the cursor to close

    B. I t causes t he curs or to open

    C. It loads the current row values into variables

    D. It creates the variables to hold the current row values

    9 . R ead t he fo ll owi ng code:

    10. CREATE OR REPLACE PROCEDURE find_cpt

    11. (v_movie_id {Argument Mode} NUMBER, v_cost_per_ticket {argument mode} NUMBER)

    12. IS

    13. BEGIN

    14. IF v_cost_per_ticket > 8.5 THEN

    15. SELECT cost_per_ticket

    16. INTO v_cost_per_ticket

    17. FROM gross_receipt

    http://www.techinterviews.com/http://www.techinterviews.com/interview-questions/nethttp://www.techinterviews.com/interview-questions/chttp://www.techinterviews.com/interview-questions/databasehttp://www.techinterviews.com/interview-questions/generalhttp://www.techinterviews.com/interview-questions/hardwarehttp://www.techinterviews.com/interview-questions/javahttp://www.techinterviews.com/interview-questions/networkinghttp://www.techinterviews.com/interview-questions/puzzleshttp://www.techinterviews.com/interview-questions/sap-abaphttp://www.techinterviews.com/interview-questions/testinghttp://www.techinterviews.com/interview-questions/unixlinuxhttp://www.techinterviews.com/interview-questions/vbhttp://www.techinterviews.com/interview-questions/web-devhttp://www.techinterviews.com/interview-questions/windowshttp://www.techinterviews.com/interview-questions/databasehttp://www.techinterviews.com/interview-questions/databasehttp://www.techinterviews.com/author/admin/http://www.techinterviews.com/author/admin/http://www.techinterviews.com/author/admin/http://www.techinterviews.com/http://www.techinterviews.com/interview-questions/nethttp://www.techinterviews.com/interview-questions/chttp://www.techinterviews.com/interview-questions/databasehttp://www.techinterviews.com/interview-questions/generalhttp://www.techinterviews.com/interview-questions/hardwarehttp://www.techinterviews.com/interview-questions/javahttp://www.techinterviews.com/interview-questions/networkinghttp://www.techinterviews.com/interview-questions/puzzleshttp://www.techinterviews.com/interview-questions/sap-abaphttp://www.techinterviews.com/interview-questions/testinghttp://www.techinterviews.com/interview-questions/unixlinuxhttp://www.techinterviews.com/interview-questions/vbhttp://www.techinterviews.com/interview-questions/web-devhttp://www.techinterviews.com/interview-questions/windowshttp://www.techinterviews.com/interview-questions/databasehttp://www.techinterviews.com/author/admin/
  • 7/31/2019 Search Tech Interviews

    2/20

    18. WHERE movie_id = v_movie_id;

    19. END IF;

    20. END;

    Which mode should be used for V_COST_PER_TICKET?

    A. IN

    B. OUT

    C. RETURN

    D. IN OUT

    21. Read the fol lowing code:

    22. CREATE OR REPLACE TRIGGER update_show_gross

    23. {trigger information}

    24. BEGIN

    25. {additional code}

    26. END;

    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)

    27. 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

    28. For which trigger timing can you reference the NEW and OLD qualifiers?

    A. Statement and RowB. Statement only

    C. Row only

    D . Or acle Forms tri gg er

    29. Read the following code:

    30. CREATE OR REPLACE FUNCTION get_budget(v_studio_id IN NUMBER)

    31. RETURN number IS

    32.

    33. v_yearly_budget NUMBER;

    34.

    35. BEGIN

    36. SELECT yearly_budget

    37. INTO v_yearly_budget

    38. FROM studio

    39. WHERE id = v_studio_id;

    40.

    41. RETURN v_yearly_budget;

    42. END;

    Which set of statements will successfully invoke this function within SQL*Plus?

    A. VARIABLE g_yearly_budget NUMBER

    EXECUTE g_yearly_budget := GET_BUDGET(11);

    B. VARIABLE g_yearly_budget NUMBER

    EXECUTE :g_yearly_budget := GET_BUDGET(11);

    C. VARIABLE :g_yearly_budget NUMBER

    EXECUTE :g_yearly_budget := GET_BUDGET(11);

    D. VARIABLE g_yearly_budget NUMBER

    :g_yearly_budget := GET_BUDGET(11);43. CREATE OR REPLACE PROCEDURE update_theater

    44. (v_name IN VARCHAR v_theater_id IN NUMBER) IS

    45. BEGIN

    46. UPDATE theater

    47. SET name = v_name

    48. WHERE id = v_theater_id;

    49. END update_theater;

    50. 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.

  • 7/31/2019 Search Tech Interviews

    3/20

    D. Check for success by checking the value of SQL%FOUND immediately after the UPDATE statement.

    51. Read the fol lowing code:

    52. CREATE OR REPLACE PROCEDURE calculate_budget IS

    53. v_budget studio.yearly_budget%TYPE;

    54. BEGIN

    55. v_budget := get_budget(11);

    56. IF v_budget < 30000

    57. THEN

    58. set_budget(11,30000000);

    59. END IF;

    60. 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.

    61. Which procedure can be used to create a customized error message?

    A. RAISE_ERROR

    B. SQLERRM

    C. RAISE_APPLICATION_ERROR

    D. R AISE_S ER VER_ ER ROR

    62. 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. ENA BLE check_t heat er ;

    63. Examine this database trigger

    64. CREATE OR REPLACE TRIGGER prevent_gross_modification

    65. {additional trigger information}

    66. BEGIN

    67. IF TO_CHAR(sysdate, DY) = MON

    68. THEN

    69. RAISE_APPLICATION_ERROR(-20000,Gross receipts cannot be deleted on Monday);

    70. END IF;

    71. 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

    72. Examine this function:

    73. CREATE OR REPLACE FUNCTION set_budget

    74. (v_studio_id IN NUMBER, v_new_budget IN NUMBER) IS

    75. BEGIN

    76. UPDATE studio

    77. SET yearly_budget = v_new_budget

    78. WHERE id = v_studio_id;

    79.

    80. IF SQL%FOUND THEN

    81. RETURN TRUEl;

    82. ELSE

    83. RETURN FALSE;

    84. END IF;

    85.

    86. COMMIT;

    87. END;

  • 7/31/2019 Search Tech Interviews

    4/20

    Which code must be added to successfully compile this function?

    A. Add RETURN right before the IS keyword.

    B. Add RETURN number right before the IS keyword.

    C. Add RETURN boolean right after the IS keyword.

    D. Add RETURN boolean right before the IS keyword.

    88. 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

    89. Procedure and Functions are explicitly executed. This is different from a database trigger. When is a database trigger executed?

    A. When the transaction is committedB. 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

    90. 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

    91. 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.

    92. Examine this code

    93. BEGIN

    94. theater_pck.v_total_seats_sold_overall := theater_pck.get_total_for_year;

    95. 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.

    96. 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

    B. DBMS_DML

    C. DBMS_SYN

    D. DBMS_SQL

    This entry was posted inDatabase. Bookmark thepermalink.Post a commentor leave a trackback:Trackback URL.

    C interview questions

    Software tester interview questions

    Ads by Google

    Graph Your SQL Data

    Turn your SQL database into sleek charts and business graphs for free

    chart.io/sql-charts

    Sr. Jobs in Top Companies

    High Quality, Hand Screened Jobs in Sales/Mktg/Finance/HR/Tech/Telecom

    Headhonchos.com

    Naukri.com - Register Now

    Your Job Search Ends here! Top MNCs, Best Profile, High CTC.

    Naukri.com

    50 COMMENTS ON PL/SQL INTERVIEW QIUESTIONS

    1. Sachin Rastogi ([email protected])Posted 5/9/2004 at 11:27 pm |Permalink

    Thanks again for publishing my questions.

    2. SudhirPosted 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

    http://www.techinterviews.com/interview-questions/databasehttp://www.techinterviews.com/interview-questions/databasehttp://www.techinterviews.com/interview-questions/databasehttp://www.techinterviews.com/plsql-interview-qiuestionshttp://www.techinterviews.com/plsql-interview-qiuestionshttp://www.techinterviews.com/plsql-interview-qiuestionshttp://www.techinterviews.com/plsql-interview-qiuestions#respondhttp://www.techinterviews.com/plsql-interview-qiuestions#respondhttp://www.techinterviews.com/plsql-interview-qiuestions#respondhttp://www.techinterviews.com/plsql-interview-qiuestions/trackbackhttp://www.techinterviews.com/plsql-interview-qiuestions/trackbackhttp://www.techinterviews.com/plsql-interview-qiuestions/trackbackhttp://www.techinterviews.com/c-interview-questionshttp://www.techinterviews.com/software-tester-interview-questionshttp://www.google.com/url?ct=abg&q=https://www.google.com/adsense/support/bin/request.py%3Fcontact%3Dabg_afc%26url%3Dhttp://www.techinterviews.com/plsql-interview-qiuestions%26hl%3Den%26client%3Dca-pub-1894578950532504%26adU%3Dchart.io/sql-charts%26adT%3DGraph%2BYour%2BSQL%2BData%26adU%3DHeadhonchos.com%26adT%3DSr.%2BJobs%2Bin%2BTop%2BCompanies%26adU%3DNaukri.com%26adT%3DNaukri.com%2B-%2BRegister%2BNow%26gl%3DIN&usg=AFQjCNHvIwFpSU0PfB_O-iTYWluv8yFqtAhttp://www.googleadservices.com/pagead/aclk?sa=L&ai=BQajQUi2uT5qSMMnIigeT0tHOB8KVis8C0omlqjDAjbcB4KcSEAEYASDymfQBKAM4AFC-wfr5A2Dl0uaDvA6gAc7P0uQDsgEWd3d3LnRlY2hpbnRlcnZpZXdzLmNvbcgBAdoBOGh0dHA6Ly93d3cudGVjaGludGVydmlld3MuY29tL3Bsc3FsLWludGVydmlldy1xaXVlc3Rpb25zgAIBqAMB6APXAugDH_UDAAAAxPUDAAAAEIgGAQ&num=1&cid=5GioCx70iSSp7uBdKfm-tZjY&sig=AOD64_0kXS3136kmZTlPdYxBmzW8wDRidw&client=ca-pub-1894578950532504&adurl=https://chart.io/sql-chartshttp://www.googleadservices.com/pagead/aclk?sa=L&ai=BQajQUi2uT5qSMMnIigeT0tHOB8KVis8C0omlqjDAjbcB4KcSEAEYASDymfQBKAM4AFC-wfr5A2Dl0uaDvA6gAc7P0uQDsgEWd3d3LnRlY2hpbnRlcnZpZXdzLmNvbcgBAdoBOGh0dHA6Ly93d3cudGVjaGludGVydmlld3MuY29tL3Bsc3FsLWludGVydmlldy1xaXVlc3Rpb25zgAIBqAMB6APXAugDH_UDAAAAxPUDAAAAEIgGAQ&num=1&cid=5GioCx70iSSp7uBdKfm-tZjY&sig=AOD64_0kXS3136kmZTlPdYxBmzW8wDRidw&client=ca-pub-1894578950532504&adurl=https://chart.io/sql-chartshttp://www.googleadservices.com/pagead/aclk?sa=L&ai=BeBp-Ui2uT5qSMMnIigeT0tHOB6aWzNMDvtelkE_AjbcB0Jy0CRACGAIg8pn0ASgDOABQ6Y2Dlfn_____AWDl0uaDvA6gAfKxjtQDsgEWd3d3LnRlY2hpbnRlcnZpZXdzLmNvbcgBAdoBOGh0dHA6Ly93d3cudGVjaGludGVydmlld3MuY29tL3Bsc3FsLWludGVydmlldy1xaXVlc3Rpb25zgAIBqQJDw4GFGw1UPsgC1rGUG6gDAegD1wLoAx_1AwAAAMT1AwAAABCIBgE&num=2&cid=5GioCx70iSSp7uBdKfm-tZjY&sig=AOD64_3jsEh1nCn4sZytggn6CkLNJKrdLQ&client=ca-pub-1894578950532504&adurl=http://www.headhonchos.com/js_home_pages/searchlp%3FSiteid%3DGoogle2C%26Adunit%3DTexthttp://www.googleadservices.com/pagead/aclk?sa=L&ai=BeBp-Ui2uT5qSMMnIigeT0tHOB6aWzNMDvtelkE_AjbcB0Jy0CRACGAIg8pn0ASgDOABQ6Y2Dlfn_____AWDl0uaDvA6gAfKxjtQDsgEWd3d3LnRlY2hpbnRlcnZpZXdzLmNvbcgBAdoBOGh0dHA6Ly93d3cudGVjaGludGVydmlld3MuY29tL3Bsc3FsLWludGVydmlldy1xaXVlc3Rpb25zgAIBqQJDw4GFGw1UPsgC1rGUG6gDAegD1wLoAx_1AwAAAMT1AwAAABCIBgE&num=2&cid=5GioCx70iSSp7uBdKfm-tZjY&sig=AOD64_3jsEh1nCn4sZytggn6CkLNJKrdLQ&client=ca-pub-1894578950532504&adurl=http://www.headhonchos.com/js_home_pages/searchlp%3FSiteid%3DGoogle2C%26Adunit%3DTexthttp://www.googleadservices.com/pagead/aclk?sa=L&ai=BjX5eUi2uT5qSMMnIigeT0tHOB4z3_asCzMjSsRjkqcGMacDtiwUQAxgDIPKZ9AEoAzgAUJm3h5MBYOXS5oO8DqAB2IuB-AOyARZ3d3cudGVjaGludGVydmlld3MuY29tyAEB2gE4aHR0cDovL3d3dy50ZWNoaW50ZXJ2aWV3cy5jb20vcGxzcWwtaW50ZXJ2aWV3LXFpdWVzdGlvbnP4AQGAAgGpAkPDgYUbDVQ-wAIJyAK0zsMiqAMB6APXAugDH_UDAAAAxPUDAAAAEIgGAQ&num=3&cid=5GioCx70iSSp7uBdKfm-tZjY&sig=AOD64_2c_NSpxafnIO0dJQ7o5UHxZduUyQ&client=ca-pub-1894578950532504&adurl=http://www.naukri.com/tieups/tieups.php%3Fothersrcp%3D5055%26adnetwork%3D%22google%22%26account%3D%22naukri%2520content%22%26campaign%3D%22dco%2520-%2520new%22%26adgroup%3D%22dco%2520-%2520naukri.com%22%26keyword%3D%22total%2520-%2520content%2520targeting%22http://www.googleadservices.com/pagead/aclk?sa=L&ai=BjX5eUi2uT5qSMMnIigeT0tHOB4z3_asCzMjSsRjkqcGMacDtiwUQAxgDIPKZ9AEoAzgAUJm3h5MBYOXS5oO8DqAB2IuB-AOyARZ3d3cudGVjaGludGVydmlld3MuY29tyAEB2gE4aHR0cDovL3d3dy50ZWNoaW50ZXJ2aWV3cy5jb20vcGxzcWwtaW50ZXJ2aWV3LXFpdWVzdGlvbnP4AQGAAgGpAkPDgYUbDVQ-wAIJyAK0zsMiqAMB6APXAugDH_UDAAAAxPUDAAAAEIgGAQ&num=3&cid=5GioCx70iSSp7uBdKfm-tZjY&sig=AOD64_2c_NSpxafnIO0dJQ7o5UHxZduUyQ&client=ca-pub-1894578950532504&adurl=http://www.naukri.com/tieups/tieups.php%3Fothersrcp%3D5055%26adnetwork%3D%22google%22%26account%3D%22naukri%2520content%22%26campaign%3D%22dco%2520-%2520new%22%26adgroup%3D%22dco%2520-%2520naukri.com%22%26keyword%3D%22total%2520-%2520content%2520targeting%22http://www.techinterviews.com/wp-trackback.php/97http://www.techinterviews.com/plsql-interview-qiuestions#comment-1188http://www.techinterviews.com/plsql-interview-qiuestions#comment-1188http://www.techinterviews.com/plsql-interview-qiuestions#comment-1231http://www.techinterviews.com/plsql-interview-qiuestions#comment-1231http://www.techinterviews.com/interview-questions/databasehttp://www.techinterviews.com/plsql-interview-qiuestionshttp://www.techinterviews.com/plsql-interview-qiuestions#respondhttp://www.techinterviews.com/plsql-interview-qiuestions/trackbackhttp://www.techinterviews.com/c-interview-questionshttp://www.techinterviews.com/software-tester-interview-questionshttp://www.google.com/url?ct=abg&q=https://www.google.com/adsense/support/bin/request.py%3Fcontact%3Dabg_afc%26url%3Dhttp://www.techinterviews.com/plsql-interview-qiuestions%26hl%3Den%26client%3Dca-pub-1894578950532504%26adU%3Dchart.io/sql-charts%26adT%3DGraph%2BYour%2BSQL%2BData%26adU%3DHeadhonchos.com%26adT%3DSr.%2BJobs%2Bin%2BTop%2BCompanies%26adU%3DNaukri.com%26adT%3DNaukri.com%2B-%2BRegister%2BNow%26gl%3DIN&usg=AFQjCNHvIwFpSU0PfB_O-iTYWluv8yFqtAhttp://www.googleadservices.com/pagead/aclk?sa=L&ai=BQajQUi2uT5qSMMnIigeT0tHOB8KVis8C0omlqjDAjbcB4KcSEAEYASDymfQBKAM4AFC-wfr5A2Dl0uaDvA6gAc7P0uQDsgEWd3d3LnRlY2hpbnRlcnZpZXdzLmNvbcgBAdoBOGh0dHA6Ly93d3cudGVjaGludGVydmlld3MuY29tL3Bsc3FsLWludGVydmlldy1xaXVlc3Rpb25zgAIBqAMB6APXAugDH_UDAAAAxPUDAAAAEIgGAQ&num=1&cid=5GioCx70iSSp7uBdKfm-tZjY&sig=AOD64_0kXS3136kmZTlPdYxBmzW8wDRidw&client=ca-pub-1894578950532504&adurl=https://chart.io/sql-chartshttp://www.googleadservices.com/pagead/aclk?sa=L&ai=BQajQUi2uT5qSMMnIigeT0tHOB8KVis8C0omlqjDAjbcB4KcSEAEYASDymfQBKAM4AFC-wfr5A2Dl0uaDvA6gAc7P0uQDsgEWd3d3LnRlY2hpbnRlcnZpZXdzLmNvbcgBAdoBOGh0dHA6Ly93d3cudGVjaGludGVydmlld3MuY29tL3Bsc3FsLWludGVydmlldy1xaXVlc3Rpb25zgAIBqAMB6APXAugDH_UDAAAAxPUDAAAAEIgGAQ&num=1&cid=5GioCx70iSSp7uBdKfm-tZjY&sig=AOD64_0kXS3136kmZTlPdYxBmzW8wDRidw&client=ca-pub-1894578950532504&adurl=https://chart.io/sql-chartshttp://www.googleadservices.com/pagead/aclk?sa=L&ai=BeBp-Ui2uT5qSMMnIigeT0tHOB6aWzNMDvtelkE_AjbcB0Jy0CRACGAIg8pn0ASgDOABQ6Y2Dlfn_____AWDl0uaDvA6gAfKxjtQDsgEWd3d3LnRlY2hpbnRlcnZpZXdzLmNvbcgBAdoBOGh0dHA6Ly93d3cudGVjaGludGVydmlld3MuY29tL3Bsc3FsLWludGVydmlldy1xaXVlc3Rpb25zgAIBqQJDw4GFGw1UPsgC1rGUG6gDAegD1wLoAx_1AwAAAMT1AwAAABCIBgE&num=2&cid=5GioCx70iSSp7uBdKfm-tZjY&sig=AOD64_3jsEh1nCn4sZytggn6CkLNJKrdLQ&client=ca-pub-1894578950532504&adurl=http://www.headhonchos.com/js_home_pages/searchlp%3FSiteid%3DGoogle2C%26Adunit%3DTexthttp://www.googleadservices.com/pagead/aclk?sa=L&ai=BeBp-Ui2uT5qSMMnIigeT0tHOB6aWzNMDvtelkE_AjbcB0Jy0CRACGAIg8pn0ASgDOABQ6Y2Dlfn_____AWDl0uaDvA6gAfKxjtQDsgEWd3d3LnRlY2hpbnRlcnZpZXdzLmNvbcgBAdoBOGh0dHA6Ly93d3cudGVjaGludGVydmlld3MuY29tL3Bsc3FsLWludGVydmlldy1xaXVlc3Rpb25zgAIBqQJDw4GFGw1UPsgC1rGUG6gDAegD1wLoAx_1AwAAAMT1AwAAABCIBgE&num=2&cid=5GioCx70iSSp7uBdKfm-tZjY&sig=AOD64_3jsEh1nCn4sZytggn6CkLNJKrdLQ&client=ca-pub-1894578950532504&adurl=http://www.headhonchos.com/js_home_pages/searchlp%3FSiteid%3DGoogle2C%26Adunit%3DTexthttp://www.googleadservices.com/pagead/aclk?sa=L&ai=BjX5eUi2uT5qSMMnIigeT0tHOB4z3_asCzMjSsRjkqcGMacDtiwUQAxgDIPKZ9AEoAzgAUJm3h5MBYOXS5oO8DqAB2IuB-AOyARZ3d3cudGVjaGludGVydmlld3MuY29tyAEB2gE4aHR0cDovL3d3dy50ZWNoaW50ZXJ2aWV3cy5jb20vcGxzcWwtaW50ZXJ2aWV3LXFpdWVzdGlvbnP4AQGAAgGpAkPDgYUbDVQ-wAIJyAK0zsMiqAMB6APXAugDH_UDAAAAxPUDAAAAEIgGAQ&num=3&cid=5GioCx70iSSp7uBdKfm-tZjY&sig=AOD64_2c_NSpxafnIO0dJQ7o5UHxZduUyQ&client=ca-pub-1894578950532504&adurl=http://www.naukri.com/tieups/tieups.php%3Fothersrcp%3D5055%26adnetwork%3D%22google%22%26account%3D%22naukri%2520content%22%26campaign%3D%22dco%2520-%2520new%22%26adgroup%3D%22dco%2520-%2520naukri.com%22%26keyword%3D%22total%2520-%2520content%2520targeting%22http://www.googleadservices.com/pagead/aclk?sa=L&ai=BjX5eUi2uT5qSMMnIigeT0tHOB4z3_asCzMjSsRjkqcGMacDtiwUQAxgDIPKZ9AEoAzgAUJm3h5MBYOXS5oO8DqAB2IuB-AOyARZ3d3cudGVjaGludGVydmlld3MuY29tyAEB2gE4aHR0cDovL3d3dy50ZWNoaW50ZXJ2aWV3cy5jb20vcGxzcWwtaW50ZXJ2aWV3LXFpdWVzdGlvbnP4AQGAAgGpAkPDgYUbDVQ-wAIJyAK0zsMiqAMB6APXAugDH_UDAAAAxPUDAAAAEIgGAQ&num=3&cid=5GioCx70iSSp7uBdKfm-tZjY&sig=AOD64_2c_NSpxafnIO0dJQ7o5UHxZduUyQ&client=ca-pub-1894578950532504&adurl=http://www.naukri.com/tieups/tieups.php%3Fothersrcp%3D5055%26adnetwork%3D%22google%22%26account%3D%22naukri%2520content%22%26campaign%3D%22dco%2520-%2520new%22%26adgroup%3D%22dco%2520-%2520naukri.com%22%26keyword%3D%22total%2520-%2520content%2520targeting%22http://www.techinterviews.com/wp-trackback.php/97http://www.techinterviews.com/plsql-interview-qiuestions#comment-1188http://www.techinterviews.com/plsql-interview-qiuestions#comment-1231
  • 7/31/2019 Search Tech Interviews

    5/20

    13.1

    14.1

    15.3

    16.3

    17.1

    18.(1,4)

    19.4

    20.3

    21.4

    22.2

    23.4

    24.325.4

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

    Thanks & Regards,

    Sudhir Rao.

    3. UnnamedPosted 9/20/2004 at 6:27 am |Permalink

    Answer to question-2 is 4

    4. dczPosted 9/25/2004 at 2:52 am |Permalink

    24 IS 4

    5. Stephen JacobPosted 9/27/2004 at 9:30 pm |Permalink

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

    6. Stephen JacobPosted 9/27/2004 at 9:37 pm |Permalink

    Answer to number 9 should be 4.

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

    7. Ahamed Tharik.NPosted 10/18/2004 at 2:32 am |Permalink

    The Answer to the question 8 is 3rd Choice.

    8. Ahamed Tharik.NPosted 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_yearly_budget from dual;

    GET_BUDGET(11)

    Let me know, if you have any Suggestions.

    http://www.techinterviews.com/plsql-interview-qiuestions#comment-1707http://www.techinterviews.com/plsql-interview-qiuestions#comment-1707http://www.techinterviews.com/plsql-interview-qiuestions#comment-1738http://www.techinterviews.com/plsql-interview-qiuestions#comment-1738http://www.techinterviews.com/plsql-interview-qiuestions#comment-1755http://www.techinterviews.com/plsql-interview-qiuestions#comment-1755http://www.techinterviews.com/plsql-interview-qiuestions#comment-1756http://www.techinterviews.com/plsql-interview-qiuestions#comment-1756http://www.techinterviews.com/plsql-interview-qiuestions#comment-2072http://www.techinterviews.com/plsql-interview-qiuestions#comment-2072http://www.techinterviews.com/plsql-interview-qiuestions#comment-2073http://www.techinterviews.com/plsql-interview-qiuestions#comment-2073http://www.techinterviews.com/plsql-interview-qiuestions#comment-1707http://www.techinterviews.com/plsql-interview-qiuestions#comment-1738http://www.techinterviews.com/plsql-interview-qiuestions#comment-1755http://www.techinterviews.com/plsql-interview-qiuestions#comment-1756http://www.techinterviews.com/plsql-interview-qiuestions#comment-2072http://www.techinterviews.com/plsql-interview-qiuestions#comment-2073
  • 7/31/2019 Search Tech Interviews

    6/20

    9. Francisco J. BandaPosted 10/25/2004 at 3:20 pm |Permalink

    The Answer to the question 5 is 4rd Choice.If you are missing the END LOOP (2), the loop do not work, procedure does not compile.

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

    The Answer to the question 5 is 1rd Choice.

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

    11. Francisco J. BandaPosted 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 Forms).

    12. Francisco J. BandaPosted 10/25/2004 at 3:54 pm |Permalink

    Hi Ahamed Tharik.N your answer is correct, but also answer number 2 works to be able to see the result uses SQL>print g_yearly_budget.

    13. Pranav VoraPosted 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, your 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.

    14. Arti ShahPosted 9/29/2005 at 7:33 am |Permalink

    1.1

    2.4

    3.2

    4.1,3,5

    http://www.techinterviews.com/plsql-interview-qiuestions#comment-2146http://www.techinterviews.com/plsql-interview-qiuestions#comment-2146http://www.techinterviews.com/plsql-interview-qiuestions#comment-2147http://www.techinterviews.com/plsql-interview-qiuestions#comment-2147http://www.techinterviews.com/plsql-interview-qiuestions#comment-2148http://www.techinterviews.com/plsql-interview-qiuestions#comment-2148http://www.techinterviews.com/plsql-interview-qiuestions#comment-2149http://www.techinterviews.com/plsql-interview-qiuestions#comment-2149http://www.techinterviews.com/plsql-interview-qiuestions#comment-7276http://www.techinterviews.com/plsql-interview-qiuestions#comment-7276http://www.techinterviews.com/plsql-interview-qiuestions#comment-18187http://www.techinterviews.com/plsql-interview-qiuestions#comment-18187http://www.techinterviews.com/plsql-interview-qiuestions#comment-2146http://www.techinterviews.com/plsql-interview-qiuestions#comment-2147http://www.techinterviews.com/plsql-interview-qiuestions#comment-2148http://www.techinterviews.com/plsql-interview-qiuestions#comment-2149http://www.techinterviews.com/plsql-interview-qiuestions#comment-7276http://www.techinterviews.com/plsql-interview-qiuestions#comment-18187
  • 7/31/2019 Search Tech Interviews

    7/20

    5.2

    6.2,3

    7.1

    8.3

    9.4

    10.4

    11.4

    12.1

    13.2

    14.4

    15.3

    16.217.2

    18.1

    19.4

    20.3

    21.4

    22.2

    23.4

    24.4

    25.4

    15. vijayPosted 12/15/2005 at 7:04 am |Permalink

    The answer to the 23 is 4

    16. vijayPosted 12/15/2005 at 7:06 am |Permalink

    answer for 22 is 2

    17. oraguruPosted 12/15/2005 at 7:11 am |Permalink

    answer for 18 is 1

    18. cobraPosted 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

    19. aaPosted 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

    http://www.techinterviews.com/plsql-interview-qiuestions#comment-20987http://www.techinterviews.com/plsql-interview-qiuestions#comment-20987http://www.techinterviews.com/plsql-interview-qiuestions#comment-20988http://www.techinterviews.com/plsql-interview-qiuestions#comment-20988http://www.techinterviews.com/plsql-interview-qiuestions#comment-20989http://www.techinterviews.com/plsql-interview-qiuestions#comment-20989http://www.techinterviews.com/plsql-interview-qiuestions#comment-23215http://www.techinterviews.com/plsql-interview-qiuestions#comment-23215http://www.techinterviews.com/plsql-interview-qiuestions#comment-28057http://www.techinterviews.com/plsql-interview-qiuestions#comment-28057http://www.techinterviews.com/plsql-interview-qiuestions#comment-20987http://www.techinterviews.com/plsql-interview-qiuestions#comment-20988http://www.techinterviews.com/plsql-interview-qiuestions#comment-20989http://www.techinterviews.com/plsql-interview-qiuestions#comment-23215http://www.techinterviews.com/plsql-interview-qiuestions#comment-28057
  • 7/31/2019 Search Tech Interviews

    8/20

    16. 3

    17.2

    18. 1

    19. 3

    20.3

    21. 4

    22. 2

    20. Pr@shantPosted 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

    14.2 (In When Others clause of Exception Handler, we can trap the SQLCODE and display user friendly message.)

    15.3

    16.317.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!!

    21. Ram Pratap SinghPosted 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: 424: 4

    25: 4

    22. Gab O'layomiPosted 11/1/2006 at 10:29 am |Permalink

    Think all my answers are correct

    http://www.techinterviews.com/plsql-interview-qiuestions#comment-30752http://www.techinterviews.com/plsql-interview-qiuestions#comment-30752http://www.techinterviews.com/plsql-interview-qiuestions#comment-35816http://www.techinterviews.com/plsql-interview-qiuestions#comment-35816http://www.techinterviews.com/plsql-interview-qiuestions#comment-43850http://www.techinterviews.com/plsql-interview-qiuestions#comment-43850http://www.techinterviews.com/plsql-interview-qiuestions#comment-30752http://www.techinterviews.com/plsql-interview-qiuestions#comment-35816http://www.techinterviews.com/plsql-interview-qiuestions#comment-43850
  • 7/31/2019 Search Tech Interviews

    9/20

    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. 313. 2

    14. 1 (Im sure this is correct but may be 4 can also)

    15. 3

    16. 3

    17. 1

    18. 1

    19. 4

    20. 3

    21. 4

    22. 2

    23. 4

    24. 4

    25. 4

    23. praveenPosted 11/18/2006 at 10:00 am |Permalinkcan 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 your ans by some examples,so that it can be understood by one

    and all.Thanks in advance.

    24. sachin GondalePosted 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 - 48 - 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

    25. Prashant SinhaPosted 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

    http://www.techinterviews.com/plsql-interview-qiuestions#comment-47601http://www.techinterviews.com/plsql-interview-qiuestions#comment-47601http://www.techinterviews.com/plsql-interview-qiuestions#comment-51382http://www.techinterviews.com/plsql-interview-qiuestions#comment-51382http://www.techinterviews.com/plsql-interview-qiuestions#comment-58737http://www.techinterviews.com/plsql-interview-qiuestions#comment-58737http://www.techinterviews.com/plsql-interview-qiuestions#comment-47601http://www.techinterviews.com/plsql-interview-qiuestions#comment-51382http://www.techinterviews.com/plsql-interview-qiuestions#comment-58737
  • 7/31/2019 Search Tech Interviews

    10/20

    10.1

    11.2

    12.3

    13.4

    16.3

    17.1

    18.1

    26. Potkin NematPosted 1/25/2007 at 12:41 pm |Permalink

    I get:

    1) 1,2 [2 must be true - anything 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)317)1

    18)1

    19)4

    20)1,2

    21)4

    22)2

    23)4

    24)4

    25)4

    27. GKPosted 1/26/2007 at 9:57 am |Permalink

    Why do most people feel that you need to delcare a record type for a cursor for loop as in q 2? I have NEVER created a record type 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, youre the million dollar winner because you didnt listen to the masses.

    28. AvneeshPosted 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- 210- 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

    http://www.techinterviews.com/plsql-interview-qiuestions#comment-61097http://www.techinterviews.com/plsql-interview-qiuestions#comment-61097http://www.techinterviews.com/plsql-interview-qiuestions#comment-61429http://www.techinterviews.com/plsql-interview-qiuestions#comment-61429http://www.techinterviews.com/plsql-interview-qiuestions#comment-62025http://www.techinterviews.com/plsql-interview-qiuestions#comment-62025http://www.techinterviews.com/plsql-interview-qiuestions#comment-61097http://www.techinterviews.com/plsql-interview-qiuestions#comment-61429http://www.techinterviews.com/plsql-interview-qiuestions#comment-62025
  • 7/31/2019 Search Tech Interviews

    11/20

    24- 4

    25- 4

    29. NAGURTILAKPosted 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)223)4

    24)4

    25)4

    THIS IS TILAK OK

    30. sdpPosted 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)37)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

    31. DivaPosted 4/17/2007 at 8:11 am |Permalink

    My Answers are:-

    1.1,2

    3.1

    4.1,3,4

    5.4

    6.3

    7.4

    8.3

    http://www.techinterviews.com/plsql-interview-qiuestions#comment-74808http://www.techinterviews.com/plsql-interview-qiuestions#comment-74808http://www.techinterviews.com/plsql-interview-qiuestions#comment-82039http://www.techinterviews.com/plsql-interview-qiuestions#comment-82039http://www.techinterviews.com/plsql-interview-qiuestions#comment-84147http://www.techinterviews.com/plsql-interview-qiuestions#comment-84147http://www.techinterviews.com/plsql-interview-qiuestions#comment-74808http://www.techinterviews.com/plsql-interview-qiuestions#comment-82039http://www.techinterviews.com/plsql-interview-qiuestions#comment-84147
  • 7/31/2019 Search Tech Interviews

    12/20

    9.4

    10.1

    11.1

    12.3

    13.2

    15.3

    16.3

    17.3

    18.1

    19.4

    21.2

    22.223.4

    25.4

    32. skkPosted 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)49)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

    33. DeviPosted 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

    17- 118- 1

    19- 4

    20- 1

    21- 2

    22- 2

    23- 4

    24- 4

    25- 4

    http://www.techinterviews.com/plsql-interview-qiuestions#comment-84452http://www.techinterviews.com/plsql-interview-qiuestions#comment-84452http://www.techinterviews.com/plsql-interview-qiuestions#comment-89678http://www.techinterviews.com/plsql-interview-qiuestions#comment-89678http://www.techinterviews.com/plsql-interview-qiuestions#comment-84452http://www.techinterviews.com/plsql-interview-qiuestions#comment-89678
  • 7/31/2019 Search Tech Interviews

    13/20

    34. AravindaPosted 6/12/2007 at 3:53 am | Permalink

    Hi guys,I gave this test, and would like to know how much I score. Ofcourse, everyone has posted what they think are the right answersbut, 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 syaing 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-420-2

    21-2

    22-2

    23-4

    24-4

    25-4

    35. johnnyPosted 6/12/2007 at 8:08 am |Permalink

    Hi frnds, ths johnny.

    Hres d key 4 d ??? stated >

    1.1

    2.1

    3.14.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

    36. samarendra mishraPosted 7/6/2007 at 5:29 am |Permalink

    1-1

    2- 4

    3- 1

    4- 1,3,4

    5- 4

    http://www.techinterviews.com/plsql-interview-qiuestions#comment-96052http://www.techinterviews.com/plsql-interview-qiuestions#comment-96052http://www.techinterviews.com/plsql-interview-qiuestions#comment-96097http://www.techinterviews.com/plsql-interview-qiuestions#comment-96097http://www.techinterviews.com/plsql-interview-qiuestions#comment-108155http://www.techinterviews.com/plsql-interview-qiuestions#comment-108155http://www.techinterviews.com/plsql-interview-qiuestions#comment-96052http://www.techinterviews.com/plsql-interview-qiuestions#comment-96097http://www.techinterviews.com/plsql-interview-qiuestions#comment-108155
  • 7/31/2019 Search Tech Interviews

    14/20

    6- 3

    7- 4

    8- 3

    9- 4

    10- 1

    11- 1

    12- 3

    13- 2

    14- 1

    15- 3

    16- 3

    17- 118- 1

    19- 4

    20- 2

    21- 2

    22- 2

    23- 4

    24- 4

    25- 4

    37. mahendra ranePosted 8/3/2007 at 8:46 am |Permalink

    1-1

    2- 4

    3- 1

    4- 1,3,45- 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

    38. Suman BejPosted 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- 112- 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

    http://www.techinterviews.com/plsql-interview-qiuestions#comment-114432http://www.techinterviews.com/plsql-interview-qiuestions#comment-114432http://www.techinterviews.com/plsql-interview-qiuestions#comment-116070http://www.techinterviews.com/plsql-interview-qiuestions#comment-116070http://www.techinterviews.com/plsql-interview-qiuestions#comment-114432http://www.techinterviews.com/plsql-interview-qiuestions#comment-116070
  • 7/31/2019 Search Tech Interviews

    15/20

    39. swarnaPosted 8/17/2007 at 3:42 am |Permalink

    In the above implicit cursor attributes are only to_many_rows

    40. Anil kapilPosted 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

    41. sdpPosted 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)422)2

    23)4

    24)4

    25)4

    42. SoanliPosted 2/22/2008 at 12:46 am | Permalink

    http://www.techinterviews.com/plsql-interview-qiuestions#comment-116680http://www.techinterviews.com/plsql-interview-qiuestions#comment-116680http://www.techinterviews.com/plsql-interview-qiuestions#comment-141646http://www.techinterviews.com/plsql-interview-qiuestions#comment-141646http://www.techinterviews.com/plsql-interview-qiuestions#comment-147053http://www.techinterviews.com/plsql-interview-qiuestions#comment-147053http://www.techinterviews.com/plsql-interview-qiuestions#comment-168758http://www.techinterviews.com/plsql-interview-qiuestions#comment-168758http://www.techinterviews.com/plsql-interview-qiuestions#comment-116680http://www.techinterviews.com/plsql-interview-qiuestions#comment-141646http://www.techinterviews.com/plsql-interview-qiuestions#comment-147053http://www.techinterviews.com/plsql-interview-qiuestions#comment-168758
  • 7/31/2019 Search Tech Interviews

    16/20

    Hi

    These are my anss can u plz tell me my score how many r right & wrong

    qtn ans

    1 1

    2 1

    3 3

    4 1,3,4

    5 4

    6 3

    7 4

    8 3

    9 410 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

    43. banvari lal mauryaPosted 3/27/2008 at 3:05 am | Permalink

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

    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. 1

    16. 3

    17. 1

    18. 1

    19. 3

    20. 2

    21. 2

    22. 2

    23. 1

    24. 4

    25. 4

    44. Deepika S VermaPosted 4/3/2008 at 4:37 am |Permalink

    1. 1

    2. 4

    3. 1

    4. 1,3,45. 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 yes 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

    http://www.techinterviews.com/plsql-interview-qiuestions#comment-168758http://www.techinterviews.com/plsql-interview-qiuestions#comment-168758http://www.techinterviews.com/plsql-interview-qiuestions#comment-168758http://www.techinterviews.com/plsql-interview-qiuestions#comment-168758http://www.techinterviews.com/plsql-interview-qiuestions#comment-168758http://www.techinterviews.com/plsql-interview-qiuestions#comment-168758http://www.techinterviews.com/plsql-interview-qiuestions#comment-168758http://www.techinterviews.com/plsql-interview-qiuestions#comment-168758http://www.techinterviews.com/plsql-interview-qiuestions#comment-168758http://www.techinterviews.com/plsql-interview-qiuestions#comment-168758http://www.techinterviews.com/plsql-interview-qiuestions#comment-168758http://www.techinterviews.com/plsql-interview-qiuestions#comment-168758http://www.techinterviews.com/plsql-interview-qiuestions#comment-168758http://www.techinterviews.com/plsql-interview-qiuestions#comment-168758http://www.techinterviews.com/plsql-interview-qiuestions#comment-168758http://www.techinterviews.com/plsql-interview-qiuestions#comment-168758http://www.techinterviews.com/plsql-interview-qiuestions#comment-168758http://www.techinterviews.com/plsql-interview-qiuestions#comment-168758http://www.techinterviews.com/plsql-interview-qiuestions#comment-168758http://www.techinterviews.com/plsql-interview-qiuestions#comment-168758http://www.techinterviews.com/plsql-interview-qiuestions#comment-168758http://www.techinterviews.com/plsql-interview-qiuestions#comment-168758http://www.techinterviews.com/plsql-interview-qiuestions#comment-168758http://www.techinterviews.com/plsql-interview-qiuestions#comment-168758http://www.techinterviews.com/plsql-interview-qiuestions#comment-168758http://www.techinterviews.com/plsql-interview-qiuestions#comment-168758http://www.techinterviews.com/plsql-interview-qiuestions#comment-168758http://www.techinterviews.com/plsql-interview-qiuestions#comment-168758http://www.techinterviews.com/plsql-interview-qiuestions#comment-168758http://www.techinterviews.com/plsql-interview-qiuestions#comment-168758http://www.techinterviews.com/plsql-interview-qiuestions#comment-168758http://www.techinterviews.com/plsql-interview-qiuestions#comment-169165http://www.techinterviews.com/plsql-interview-qiuestions#comment-169165http://www.techinterviews.com/plsql-interview-qiuestions#comment-169243http://www.techinterviews.com/plsql-interview-qiuestions#comment-169243http://www.techinterviews.com/plsql-interview-qiuestions#comment-169165http://www.techinterviews.com/plsql-interview-qiuestions#comment-169243
  • 7/31/2019 Search Tech Interviews

    17/20

    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

    45. tahirPosted 4/30/2008 at 12:25 am |Permalink

    1 1

    2 2

    3 1

    4 1 3 4

    5 4

    6 5

    7 4

    8 3

    9 4*

    10 1

    11 1

    12 3

    13 4

    14 1*

    15 3

    16 2

    17 1*

    18 119 1

    20 1234*

    21 2

    22 2

    23 4

    24 4

    25 4

    46. ALEX.CPosted 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.

    47. KanvikPosted 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

    http://www.techinterviews.com/plsql-interview-qiuestions#comment-169531http://www.techinterviews.com/plsql-interview-qiuestions#comment-169531http://www.techinterviews.com/plsql-interview-qiuestions#comment-172810http://www.techinterviews.com/plsql-interview-qiuestions#comment-172810http://www.techinterviews.com/plsql-interview-qiuestions#comment-173960http://www.techinterviews.com/plsql-interview-qiuestions#comment-173960http://www.techinterviews.com/plsql-interview-qiuestions#comment-169531http://www.techinterviews.com/plsql-interview-qiuestions#comment-172810http://www.techinterviews.com/plsql-interview-qiuestions#comment-173960
  • 7/31/2019 Search Tech Interviews

    18/20

    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. 214. 2

    15. 3

    16. 3

    17. 3

    18. 4

    19. 4

    20. 2

    21. 2

    22. 2

    23. 4

    24. 4

    25. 1

    48. seenuPosted 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

    49. SalilPosted 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. 110. 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

    http://www.techinterviews.com/plsql-interview-qiuestions#comment-175042http://www.techinterviews.com/plsql-interview-qiuestions#comment-175042http://www.techinterviews.com/plsql-interview-qiuestions#comment-175539http://www.techinterviews.com/plsql-interview-qiuestions#comment-175539http://www.techinterviews.com/plsql-interview-qiuestions#comment-175042http://www.techinterviews.com/plsql-interview-qiuestions#comment-175539
  • 7/31/2019 Search Tech Interviews

    19/20

    24. 4

    25. 1

    50. compilation #1Posted 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

    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 422) 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

    POST A COMMENT

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

    Name *

    Email *

    Website

    Comment

    Ads by Google

    Apply for Jobs - Freshers

    Apply Online to Find Jobs. Sign up for Free to Apply Now.

    MonsterIndia.com/JobsHDFC Hiring for May'12

    8000+ P.O. Job Openings this May. Upload Resume.Apply to HDFC Now!

    TimesJobs.com/Bank-Openings-2012

    Interview Questions

    Online Tests, Quizzes and Surveys On Various Subjects. Sign Up now!

    www.Facebook.com

    Job Interview Question Articles

    C# Interview Questions and Answers

    QTP Interview Questions and Answers

    C++ Interview Questions and Answers

    PHP Interview Questions and Answers

    XML Interview Questions and Answers

    JavaScript Interview Questions and Answers

    Asp.Net Interview Questions and Answers

    J2EE Interview Questions and Answers

    ABAP Interview Questions and Answers

    Perl Interview Questions and Answers

    Java Interview Questions and Answers

    Resources

    Technology Question and Answer Website

    How to dance around the salary-expectation question

    10 mistakes managers make during job interviews

    ID Maker

    Stupid interview questions

    http://www.genioso.com/http://www.techinterviews.com/plsql-interview-qiuestions#comment-176838http://www.techinterviews.com/plsql-interview-qiuestions#comment-176838http://www.google.com/url?ct=abg&q=https://www.google.com/adsense/support/bin/request.py%3Fcontact%3Dabg_afc%26url%3Dhttp://www.techinterviews.com/plsql-interview-qiuestions%26hl%3Den%26client%3Dca-pub-1894578950532504%26adU%3DMonsterIndia.com/Jobs%26adT%3DApply%2Bfor%2BJobs%2B-%2BFreshers%26adU%3DTimesJobs.com/Bank-Openings-2012%26adT%3DHDFC%2BHiring%2Bfor%2BMay%2526%252339%253B12%26adU%3Dwww.Facebook.com%26adT%3DInterview%2BQuestions%26gl%3DIN&usg=AFQjCNFwFk5AjPBE78Wed0ffrsYDSeo6Dghttp://www.googleadservices.com/pagead/aclk?sa=L&ai=ByJOeUy2uT8LVPOm6igeXzKn6DpmM6KECodrAuzC5jMrjbIDo-wMQARgBIPKZ9AEoAzgAUPrbn-ECYOXS5oO8DqABp7ma_QOyARZ3d3cudGVjaGludGVydmlld3MuY29tyAEB2gE4aHR0cDovL3d3dy50ZWNoaW50ZXJ2aWV3cy5jb20vcGxzcWwtaW50ZXJ2aWV3LXFpdWVzdGlvbnP4AQGAAgGpAkPDgYUbDVQ-wAIJyAKZ9pUfqAMB6APXAugDH_UDAAAAxPUDAAAAEIgGAQ&num=1&cid=5GjDFGDbgi88ELrD_1cdXijF&sig=AOD64_1zEIwUQH2vmbIB7HJlNPMQcSmRzg&client=ca-pub-1894578950532504&adurl=http://my.monsterindia.com/create_account.html%3Fspl%3DG_Pawan_Computerhttp://www.googleadservices.com/pagead/aclk?sa=L&ai=ByJOeUy2uT8LVPOm6igeXzKn6DpmM6KECodrAuzC5jMrjbIDo-wMQARgBIPKZ9AEoAzgAUPrbn-ECYOXS5oO8DqABp7ma_QOyARZ3d3cudGVjaGludGVydmlld3MuY29tyAEB2gE4aHR0cDovL3d3dy50ZWNoaW50ZXJ2aWV3cy5jb20vcGxzcWwtaW50ZXJ2aWV3LXFpdWVzdGlvbnP4AQGAAgGpAkPDgYUbDVQ-wAIJyAKZ9pUfqAMB6APXAugDH_UDAAAAxPUDAAAAEIgGAQ&num=1&cid=5GjDFGDbgi88ELrD_1cdXijF&sig=AOD64_1zEIwUQH2vmbIB7HJlNPMQcSmRzg&client=ca-pub-1894578950532504&adurl=http://my.monsterindia.com/create_account.html%3Fspl%3DG_Pawan_Computerhttp://www.googleadservices.com/pagead/aclk?sa=L&ai=B-N2FUy2uT8LVPOm6igeXzKn6Dp38wO8B5d-E7C_AjbcBoOONAhACGAIg8pn0ASgDOABQ_-bttv______AWDl0uaDvA6gAfPn9PIDsgEWd3d3LnRlY2hpbnRlcnZpZXdzLmNvbcgBAdoBOGh0dHA6Ly93d3cudGVjaGludGVydmlld3MuY29tL3Bsc3FsLWludGVydmlldy1xaXVlc3Rpb25z-AEBqQJDw4GFGw1UPsgCxb2EFagDAegD1wLoAx_1AwAAAMT1AwAAABCIBgE&num=2&cid=5GjDFGDbgi88ELrD_1cdXijF&sig=AOD64_00zExiWJJadcoVcIyByjICH4VDMA&client=ca-pub-1894578950532504&adurl=http://tracking-in.sokrati.com/click/%3Fclient_id%3D60%26tag%3Dau_nht3e2bja9fas1-60-825%26redirect_url%3Dhttp%253A%252F%252Fwww.timesjobs.com%252Fcandidate%252Fregister.html%253Fsiteparams%253D3p9909%2526utm_source%253Dgoogle%2526utm_medium%253Dcpc%2526utm_campaign%253Dcontenthttp://www.googleadservices.com/pagead/aclk?sa=L&ai=B-N2FUy2uT8LVPOm6igeXzKn6Dp38wO8B5d-E7C_AjbcBoOONAhACGAIg8pn0ASgDOABQ_-bttv______AWDl0uaDvA6gAfPn9PIDsgEWd3d3LnRlY2hpbnRlcnZpZXdzLmNvbcgBAdoBOGh0dHA6Ly93d3cudGVjaGludGVydmlld3MuY29tL3Bsc3FsLWludGVydmlldy1xaXVlc3Rpb25z-AEBqQJDw4GFGw1UPsgCxb2EFagDAegD1wLoAx_1AwAAAMT1AwAAABCIBgE&num=2&cid=5GjDFGDbgi88ELrD_1cdXijF&sig=AOD64_00zExiWJJadcoVcIyByjICH4VDMA&client=ca-pub-1894578950532504&adurl=http://tracking-in.sokrati.com/click/%3Fclient_id%3D60%26tag%3Dau_nht3e2bja9fas1-60-825%26redirect_url%3Dhttp%253A%252F%252Fwww.timesjobs.com%252Fcandidate%252Fregister.html%253Fsiteparams%253D3p9909%2526utm_source%253Dgoogle%2526utm_medium%253Dcpc%2526utm_campaign%253Dcontenthttp://googleads.g.doubleclick.net/aclk?sa=L&ai=BKksoUy2uT8LVPOm6igeXzKn6DuSE6JEC7M-anRvAjbcB0IYDEAMYAyDymfQBKAM4AFDWoIn4_v____8BYOXS5oO8DrIBFnd3dy50ZWNoaW50ZXJ2aWV3cy5jb23IAQHaAThodHRwOi8vd3d3LnRlY2hpbnRlcnZpZXdzLmNvbS9wbHNxbC1pbnRlcnZpZXctcWl1ZXN0aW9uc8gClIuBGqgDAegD1wLoAx_1AwAAAMT1AwAAABA&num=3&sig=AOD64_2yKCAye7dX-xt6rz7Mhm8hV_6HJw&client=ca-pub-1894578950532504&adurl=http://118.xg4ken.com/media/redir.php%3Fprof%3D14%26camp%3D414%26affcode%3Dkw16453332%26cid%3D7212232844%26networkType%3Dcontent%26url%5B%5D%3Dhttp%253A%252F%252Fwww.facebook.com%252Fcampaign%252Flanding.php%253Fcampaign_id%253D113968485282957%2526creative%253D7212232844%2526extra_1%253D_kenshoo_clickid_%2526keyword%253Donline%252Binterview%252Bquestions%2526placement%253Dbroadhttp://googleads.g.doubleclick.net/aclk?sa=L&ai=BKksoUy2uT8LVPOm6igeXzKn6DuSE6JEC7M-anRvAjbcB0IYDEAMYAyDymfQBKAM4AFDWoIn4_v____8BYOXS5oO8DrIBFnd3dy50ZWNoaW50ZXJ2aWV3cy5jb23IAQHaAThodHRwOi8vd3d3LnRlY2hpbnRlcnZpZXdzLmNvbS9wbHNxbC1pbnRlcnZpZXctcWl1ZXN0aW9uc8gClIuBGqgDAegD1wLoAx_1AwAAAMT1AwAAABA&num=3&sig=AOD64_2yKCAye7dX-xt6rz7Mhm8hV_6HJw&client=ca-pub-1894578950532504&adurl=http://118.xg4ken.com/media/redir.php%3Fprof%3D14%26camp%3D414%26affcode%3Dkw16453332%26cid%3D7212232844%26networkType%3Dcontent%26url%5B%5D%3Dhttp%253A%252F%252Fwww.facebook.com%252Fcampaign%252Flanding.php%253Fcampaign_id%253D113968485282957%2526creative%253D7212232844%2526extra_1%253D_kenshoo_clickid_%2526keyword%253Donline%252Binterview%252Bquestions%2526placement%253Dbroadhttp://googleads.g.doubleclick.net/aclk?sa=L&ai=BKksoUy2uT8LVPOm6igeXzKn6DuSE6JEC7M-anRvAjbcB0IYDEAMYAyDymfQBKAM4AFDWoIn4_v____8BYOXS5oO8DrIBFnd3dy50ZWNoaW50ZXJ2aWV3cy5jb23IAQHaAThodHRwOi8vd3d3LnRlY2hpbnRlcnZpZXdzLmNvbS9wbHNxbC1pbnRlcnZpZXctcWl1ZXN0aW9uc8gClIuBGqgDAegD1wLoAx_1AwAAAMT1AwAAABA&num=3&sig=AOD64_2yKCAye7dX-xt6rz7Mhm8hV_6HJw&client=ca-pub-1894578950532504&adurl=http://118.xg4ken.com/media/redir.php%3Fprof%3D14%26camp%3D414%26affcode%3Dkw16453332%26cid%3D7212232844%26networkType%3Dcontent%26url%5B%5D%3Dhttp%253A%252F%252Fwww.facebook.com%252Fcampaign%252Flanding.php%253Fcampaign_id%253D113968485282957%2526creative%253D7212232844%2526extra_1%253D_kenshoo_clickid_%2526keyword%253Donline%252Binterview%252Bquestions%2526placement%253Dbroadhttp://www.techinterviews.com/c-sharp-interview-questions-and-answershttp://www.techinterviews.com/qtp-interview-questions-and-answershttp://www.techinterviews.com/c-plus-plus-interview-questions-and-answershttp://www.techinterviews.com/php-interview-questions-and-answershttp://www.techinterviews.com/xml-interview-questions-and-answershttp://www.techinterviews.com/javascript-interview-questions-and-answershttp://www.techinterviews.com/aspnet-interview-questions-and-answershttp://www.techinterviews.com/j2ee-interview-questions-and-answershttp://www.techinterviews.com/abap-interview-questions-and-answershttp://www.techinterviews.com/perl-interview-questions-and-answershttp://www.techinterviews.com/java-interview-questions-and-answershttp://qa.techinterviews.com/http://custom.marketwatch.com/custom/iwon-com/news-story.asp?guid=3A2B59B2-946E-4EAD-BE5F-E176D8E56271http://articles.techrepublic.com.com/5100-10881_11-6179941.htmlhttp://www.alphacard.com/http://www.businessweek.com/careers/content/sep2005/ca20050921_1099_ca009.htm?campaign_id=topStories_ssi_5http://www.genioso.com/http://www.techinterviews.com/plsql-interview-qiuestions#comment-176838http://www.google.com/url?ct=abg&q=https://www.google.com/adsense/support/bin/request.py%3Fcontact%3Dabg_afc%26url%3Dhttp://www.techinterviews.com/plsql-interview-qiuestions%26hl%3Den%26client%3Dca-pub-1894578950532504%26adU%3DMonsterIndia.com/Jobs%26adT%3DApply%2Bfor%2BJobs%2B-%2BFreshers%26adU%3DTimesJobs.com/Bank-Openings-2012%26adT%3DHDFC%2BHiring%2Bfor%2BMay%2526%252339%253B12%26adU%3Dwww.Facebook.com%26adT%3DInterview%2BQuestions%26gl%3DIN&usg=AFQjCNFwFk5AjPBE78Wed0ffrsYDSeo6Dghttp://www.googleadservices.com/pagead/aclk?sa=L&ai=ByJOeUy2uT8LVPOm6igeXzKn6DpmM6KECodrAuzC5jMrjbIDo-wMQARgBIPKZ9AEoAzgAUPrbn-ECYOXS5oO8DqABp7ma_QOyARZ3d3cudGVjaGludGVydmlld3MuY29tyAEB2gE4aHR0cDovL3d3dy50ZWNoaW50ZXJ2aWV3cy5jb20vcGxzcWwtaW50ZXJ2aWV3LXFpdWVzdGlvbnP4AQGAAgGpAkPDgYUbDVQ-wAIJyAKZ9pUfqAMB6APXAugDH_UDAAAAxPUDAAAAEIgGAQ&num=1&cid=5GjDFGDbgi88ELrD_1cdXijF&sig=AOD64_1zEIwUQH2vmbIB7HJlNPMQcSmRzg&client=ca-pub-1894578950532504&adurl=http://my.monsterindia.com/create_account.html%3Fspl%3DG_Pawan_Computerhttp://www.googleadservices.com/pagead/aclk?sa=L&ai=ByJOeUy2uT8LVPOm6igeXzKn6DpmM6KECodrAuzC5jMrjbIDo-wMQARgBIPKZ9AEoAzgAUPrbn-ECYOXS5oO8DqABp7ma_QOyARZ3d3cudGVjaGludGVydmlld3MuY29tyAEB2gE4aHR0cDovL3d3dy50ZWNoaW50ZXJ2aWV3cy5jb20vcGxzcWwtaW50ZXJ2aWV3LXFpdWVzdGlvbnP4AQGAAgGpAkPDgYUbDVQ-wAIJyAKZ9pUfqAMB6APXAugDH_UDAAAAxPUDAAAAEIgGAQ&num=1&cid=5GjDFGDbgi88ELrD_1cdXijF&sig=AOD64_1zEIwUQH2vmbIB7HJlNPMQcSmRzg&client=ca-pub-1894578950532504&adurl=http://my.monsterindia.com/create_account.html%3Fspl%3DG_Pawan_Computerhttp://www.googleadservices.com/pagead/aclk?sa=L&ai=B-N2FUy2uT8LVPOm6igeXzKn6Dp38wO8B5d-E7C_AjbcBoOONAhACGAIg8pn0ASgDOABQ_-bttv______AWDl0uaDvA6gAfPn9PIDsgEWd3d3LnRlY2hpbnRlcnZpZXdzLmNvbcgBAdoBOGh0dHA6Ly93d3cudGVjaGludGVydmlld3MuY29tL3Bsc3FsLWludGVydmlldy1xaXVlc3Rpb25z-AEBqQJDw4GFGw1UPsgCxb2EFagDAegD1wLoAx_1AwAAAMT1AwAAABCIBgE&num=2&cid=5GjDFGDbgi88ELrD_1cdXijF&sig=AOD64_00zExiWJJadcoVcIyByjICH4VDMA&client=ca-pub-1894578950532504&adurl=http://tracking-in.sokrati.com/click/%3Fclient_id%3D60%26tag%3Dau_nht3e2bja9fas1-60-825%26redirect_url%3Dhttp%253A%252F%252Fwww.timesjobs.com%252Fcandidate%252Fregister.html%253Fsiteparams%253D3p9909%2526utm_source%253Dgoogle%2526utm_medium%253Dcpc%2526utm_campaign%253Dcontenthttp://www.googleadservices.com/pagead/aclk?sa=L&ai=B-N2FUy2uT8LVPOm6igeXzKn6Dp38wO8B5d-E7C_AjbcBoOONAhACGAIg8pn0ASgDOABQ_-bttv______AWDl0uaDvA6gAfPn9PIDsgEWd3d3LnRlY2hpbnRlcnZpZXdzLmNvbcgBAdoBOGh0dHA6Ly93d3cudGVjaGludGVydmlld3MuY29tL3Bsc3FsLWludGVydmlldy1xaXVlc3Rpb25z-AEBqQJDw4GFGw1UPsgCxb2EFagDAegD1wLoAx_1AwAAAMT1AwAAABCIBgE&num=2&cid=5GjDFGDbgi88ELrD_1cdXijF&sig=AOD64_00zExiWJJadcoVcIyByjICH4VDMA&client=ca-pub-1894578950532504&adurl=http://tracking-in.sokrati.com/click/%3Fclient_id%3D60%26tag%3Dau_nht3e2bja9fas1-60-825%26redirect_url%3Dhttp%253A%252F%252Fwww.timesjobs.com%252Fcandidate%252Fregister.html%253Fsiteparams%253D3p9909%2526utm_source%253Dgoogle%2526utm_medium%253Dcpc%2526utm_campaign%253Dcontenthttp://googleads.g.doubleclick.net/aclk?sa=L&ai=BKksoUy2uT8LVPOm6igeXzKn6DuSE6JEC7M-anRvAjbcB0IYDEAMYAyDymfQBKAM4AFDWoIn4_v____8BYOXS5oO8DrIBFnd3dy50ZWNoaW50ZXJ2aWV3cy5jb23IAQHaAThodHRwOi8vd3d3LnRlY2hpbnRlcnZpZXdzLmNvbS9wbHNxbC1pbnRlcnZpZXctcWl1ZXN0aW9uc8gClIuBGqgDAegD1wLoAx_1AwAAAMT1AwAAABA&num=3&sig=AOD64_2yKCAye7dX-xt6rz7Mhm8hV_6HJw&client=ca-pub-1894578950532504&adurl=http://118.xg4ken.com/media/redir.php%3Fprof%3D14%26camp%3D414%26affcode%3Dkw16453332%26cid%3D7212232844%26networkType%3Dcontent%26url%5B%5D%3Dhttp%253A%252F%252Fwww.facebook.com%252Fcampaign%252Flanding.php%253Fcampaign_id%253D113968485282957%2526creative%253D7212232844%2526extra_1%253D_kenshoo_clickid_%2526keyword%253Donline%252Binterview%252Bquestions%2526placement%253Dbroadhttp://googleads.g.doubleclick.net/aclk?sa=L&ai=BKksoUy2uT8LVPOm6igeXzKn6DuSE6JEC7M-anRvAjbcB0IYDEAMYAyDymfQBKAM4AFDWoIn4_v____8BYOXS5oO8DrIBFnd3dy50ZWNoaW50ZXJ2aWV3cy5jb23IAQHaAThodHRwOi8vd3d3LnRlY2hpbnRlcnZpZXdzLmNvbS9wbHNxbC1pbnRlcnZpZXctcWl1ZXN0aW9uc8gClIuBGqgDAegD1wLoAx_1AwAAAMT1AwAAABA&num=3&sig=AOD64_2yKCAye7dX-xt6rz7Mhm8hV_6HJw&client=ca-pub-1894578950532504&adurl=http://118.xg4ken.com/media/redir.php%3Fprof%3D14%26camp%3D414%26affcode%3Dkw16453332%26cid%3D7212232844%26networkType%3Dcontent%26url%5B%5D%3Dhttp%253A%252F%252Fwww.facebook.com%252Fcampaign%252Flanding.php%253Fcampaign_id%253D113968485282957%2526creative%253D7212232844%2526extra_1%253D_kenshoo_clickid_%2526keyword%253Donline%252Binterview%252Bquestions%2526placement%253Dbroadhttp://www.techinterviews.com/c-sharp-interview-questions-and-answershttp://www.techinterviews.com/qtp-interview-questions-and-answershttp://www.techinterviews.com/c-plus-plus-interview-questions-and-answershttp://www.techinterviews.com/php-interview-questions-and-answershttp://www.techinterviews.com/xml-interview-questions-and-answershttp://www.techinterviews.com/javascript-interview-questions-and-answershttp://www.techinterviews.com/aspnet-interview-questions-and-answershttp://www.techinterviews.com/j2ee-interview-questions-and-answershttp://www.techinterviews.com/abap-interview-questions-and-answershttp://www.techinterviews.com/perl-interview-questions-and-answershttp://www.techinterviews.com/java-interview-questions-and-answershttp://qa.techinterviews.com/http://custom.marketwatch.com/custom/iwon-com/news-story.asp?guid=3A2B59B2-946E-4EAD-BE5F-E176D8E56271http://articles.techrepublic.com.com/5100-10881_11-6179941.htmlhttp://www.alphacard.com/http://www.businessweek.com/careers/content/sep2005/ca20050921_1099_ca009.htm?campaign_id=topStories_ssi_5
  • 7/31/2019 Search Tech Interviews

    20/20

    How to Answer These Tricky Interview Questions

    Seven tips for writing an online profile for LinkedIn, MySpace or Facebook

    Video surveillance

    Laptop computers

    Affordable life insurance

    Ink cartridges

    Tutorials

    AJAX Tutorials

    Dealing with your job

    Getting a job

    JavaScript tutorials

    Job interview tips from Yahoo! HotJobs

    MySQL tutorials

    Retiring from your job

    Ruby on Rails tutorials

    Salary guide for IT jobs

    Self-employment

    TechInterviews guides in PDF

    Understanding pointers

    XML Tutorials

    XUL tutorials

    RSS Feeds

    All posts

    All comments

    Powered byWordPress. Built on theThematic Theme Framework.

    http://www.businessweek.com/careers/content/sep2005/ca20050921_1099_ca009.htm?campaign_id=topStories_ssi_5http://www.careerbuilder.com/Custom/MSN/CareerAdvice/ViewArticle.aspx?articleid=356&pf=true&cbRecursionCnt=1&cbsid=8037040af8b74b93a8e5a7080037ffac-220467129-RR-4http://www.careerjournal.com/myc/climbing/20060829-needleman.html?mod=RSS_Career_Journal&cjrss=frontpagehttp://www.videosurveillance.com/http://www.toshibadirect.com/http://www.onedollarglobeinsurance.com/affordablelifeinsurance.htmhttp://www.prink.co.uk/http://www.techinterviews.com/ajax-tutorialshttp://www.techinterviews.com/dealing-with-your-jobhttp://www.techinterviews.com/getting-a-jobhttp://www.techinterviews.com/javascript-tutorialshttp://www.techinterviews.com/job-interview-tips-from-yahoo-hotjobshttp://www.techinterviews.com/mysql-tutorialshttp://www.techinterviews.com/retiring-from-your-jobhttp://www.techinterviews.com/ruby-on-rails-tutorialshttp://www.techinterviews.com/salary-guidehttp://www.techinterviews.com/self-employmenthttp://www.techinterviews.com/techinterviews-guides-in-pdfhttp://www.techinterviews.com/understanding-pointershttp://www.techinterviews.com/xml-tutorialshttp://www.techinterviews.com/xul-tutorialshttp://www.techinterviews.com/feedhttp://www.techinterviews.com/comments/feedhttp://wordpress.org/http://wordpress.org/http://wordpress.org/http://themeshaper.com/thematic-for-wordpresshttp://themeshaper.com/thematic-for-wordpresshttp://www.techmedianetwork.com/advertisers.htmlhttp://www.techmedianetwork.com/advertisers.htmlhttp://www.careerbuilder.com/Custom/MSN/CareerAdvice/ViewArticle.aspx?articleid=356&pf=true&cbRecursionCnt=1&cbsid=8037040af8b74b93a8e5a7080037ffac-220467129-RR-4http://www.careerjournal.com/myc/climbing/20060829-needleman.html?mod=RSS_Career_Journal&cjrss=frontpagehttp://www.videosurveillance.com/http://www.toshibadirect.com/http://www.onedollarglobeinsurance.com/affordablelifeinsurance.htmhttp://www.prink.co.uk/http://www.techinterviews.com/ajax-tutorialshttp://www.techinterviews.com/dealing-with-your-jobhttp://www.techinterviews.com/getting-a-jobhttp://www.techinterviews.com/javascript-tutorialshttp://www.techinterviews.com/job-interview-tips-from-yahoo-hotjobshttp://www.techinterviews.com/mysql-tutorialshttp://www.techinterviews.com/retiring-from-your-jobhttp://www.techinterviews.com/ruby-on-rails-tutorialshttp://www.techinterviews.com/salary-guidehttp://www.techinterviews.com/self-employmenthttp://www.techinterviews.com/techinterviews-guides-in-pdfhttp://www.techinterviews.com/understanding-pointershttp://www.techinterviews.com/xml-tutorialshttp://www.techinterviews.com/xul-tutorialshttp://www.techinterviews.com/feedhttp://www.techinterviews.com/comments/feedhttp://wordpress.org/http://themeshaper.com/thematic-for-wordpress