English Русский Contacts Site map Add to favorites
Registration
Login
Master braindump list
New braindumps
Submit a dump
Get latest dump
braindumps.com.ua
flame
3COM (7)
Adobe (1)
BEA (1)
Checkpoint (22)
Cisco (20)
Citrix (17)
CIW (15)
Compaq (0)
CompTIA (51)
CWNA (2)
EMC (2)
Exin (4)
GEJOS (4)
HDI (1)
HP (4)
IBM (13)
Juniper (1)
Linux Prof Institute (LPI) (2)
Lotus (11)
Microsoft (2461)
Network Appliance (2)
Novell (16)
Oracle (412)
PLSQL (1)
PMI (4)
SAS (1)
Sun (87)
Teradata (4)
Login:
Password:
RSS feed

Contacts
Certification links
Links
Authorized user can see question and answers.
Please log in or sign up.

Exam question list:
Show all comments
Oracle 1z0-001: Ineroduction to oracle:sql and pl/sql
#71. The EMPLOYEE table contains these columns:
 ID                NUMBER(9)     PK 
 LAST_NAME         VARCHAR2(25)  NN 
 DEPT ID           NUMBER(9) 
Evaluate this SQL script
  1. DEFINE id_2 = 93004
  2. SELECT *
  3. FROMemployee
  4. WHEREid = (&id_2)
Which change should you make to the script so that it will execute?

Show comments for this question (0)
Add comments
Link to this question

#72. Evaluate this SQL statement
  1. SELECTe.id, (.15 * e.salary) + (.25 * e.bonus) +
  2. (s.sale_amount * (.15 * e.commission_pct))
  3. FROMemployee e, sale s
  4. WHEPEe.id = s.emp_id;
What would happen if you removed all the parentheses from the calculation?

Show comments for this question (0)
Add comments
Link to this question

#73. Which is NOT an SQL*PIus command?

Show comments for this question (0)
Add comments
Link to this question

#74. When selecting data, which statement is valid about projection?

Show comments for this question (0)
Add comments
Link to this question

#75. Click on the EXHIBIT button and examine the table instance chart for the employee table.

You want to display each employee’s hire date from earliest to latest, Which SQL statement would you use?

Show comments for this question (0)
Add comments
Link to this question

#76. The EMPLOYEE table contains these columns:
 ID              NUMBER(9) 
 LAST_NAME       VARCHAR2(25) 
 FIRST_NAME      VARCHAR2(25) 
 COMMISSION      NUMBER(7,2)
You need to display the current commission for all employees. These are the desired results:
1.Display the commission multiplied by 1.5.
2.Exclude employees with a zero commission.
3.Display a zero for employees with a null commission value.
Evaluate this SQL command:
  1. SELECT id, last_name, first_name, commission * 1.5
  2. FROM employee
  3. WHEREcommission <> 0;
What does the statement provide?

Show comments for this question (0)
Add comments
Link to this question

#77. Which statement is true about nesting blocks?

Show comments for this question (0)
Add comments
Link to this question

#78. Examine the code:
  1. 1 DECLARE
  2. 2 iNUMBER:=0;
  3. 3 v_date DATE;
  4. 4 BEGIN
  5. 5 i := i+1;
  6. 6 LOOP
  7. 7 v_date := v_date + 5;
  8. B i := i+1;
  9. 9 EXIT WHEN i = 5;
  10. 10 END LOOP;
  11. 11 END;
You have encountered unexpected results when the above block of code is executed. How can you trace the values of the counter variable I and date variable V_DATE in the SQL*Plus environment?

Show comments for this question (0)
Add comments
Link to this question

#79. Examine the code:
  1. SET SERVEROUTPUT ON
  2. DECLARE
  3. v_name emp.ename%TYPE;
  4. v_num NUMBER;
  5. v_sal NUMBER(8,2);
  6. BEGIN
-- This code displays salaries if larger than 10000
  1. SELECT ename, sal
  2. INTO v_name, v_sal
  3. FROM emp
  4. WHERE empno = 101;
  5. IF (v_sal .GT. 10000) THEN
  6. DBMS_OUTPUT PUT_LINE (‘Salary IS ‘|| v_sal
  7. || ‘FOR employee ‘|| v_name);
  8. END IF;
  9. END;
  10. SET SERVEROUTPUT OFF
Which statement causes a compilation error when the above PLJSQL block is executed?

Show comments for this question (0)
Add comments
Link to this question

#80. The EMPLOYEE table has ten columns. Since you often query the table with conditions based on four or more columns, you created an index on all the columns in the table. Which result will occur?

Show comments for this question (0)
Add comments
Link to this question


 [1] [2] [3] [4] [5] [6] [7] [8] [9] [10] [11] ... [18 
Up ^ gen. 0.396 Server date 06:52 22-11-2008 Developed by Zip © 2006 Up ^
Forum
Start online exam simulation
Master braindump
User braindumps