teamwork Online Quiz - 2

teamwork Online Quiz - 2

15 Questions Published

Questions

Question 1 True/False

Sorted Input in aggregator transformation improves the session performance

  1. True
  2. False
Question 2 True/False

When we enable the dynamic lookup cache then the designer adds port "NewLookupRow"

  1. True
  2. False
Question 3 Multiple Choice (Single Answer)

what are the $,$$,$$$ symbols in informatica?

  1. Session Parameter,mapping Parameter,System variable
  2. System variable,Session Parameter,mapping Parameter
  3. System variable,mapping Parameter,Session Parameter
  4. None of above
Question 4 Multiple Choice (Single Answer)

what are the two modes of data movement in infomatica?

  1. Normal,Large
  2. Simple,Large
  3. Normal,Bulk
  4. none of above
Question 5 Multiple Choice (Multiple Answers)

what are the lookup caches?

  1. Static Cache
  2. Dynamic Cache
  3. Persistant Cache
  4. Shared Cache
  5. All the Above
Question 6 Multiple Choice (Single Answer)

when the source is file where can we set the file properties.

  1. session level
  2. mapping level
  3. worlflow level
  4. none of the above
Question 7 True/False

we can call the stored procedure in ports like :SP.Identifier(arguments)

  1. True
  2. False
Question 8 Multiple Choice (Multiple Answers)

Examine the description of the STUDENTS table: STD_ID NUMBER(4) COURSE_ID VARCHAR2(10) START_DATE DATE END_DATE DATE Which two aggregate functions are valid on the START_DATE column? (Choose two.)

  1. SUM(start_date)
  2. AVG(start_date)
  3. COUNT(start_date)
  4. AVG(start_date, end_date)
  5. MIN(start_date)
  6. MAXIMUM(start_date)
Question 9 Multiple Choice (Single Answer)

You would like to display the system date in the format "Monday, 01 June, 2001". Which SELECT statement should you use?

  1. SELECT TO_DATE (SYSDATE, 'FMDAY, DD Month, YYYY') FROM dual;
  2. SELECT TO_CHAR (SYSDATE, 'FMDD, DY Month, YYYY') FROM dual;
  3. SELECT TO_CHAR (SYSDATE, 'FMDay, DD Month, YYYY') FROM dual;
  4. SELECT TO_CHAR (SYSDATE, 'FMDY, DDD Month, YYYY') FROM dual;
  5. SELECT TO_DATE (SYSDATE, 'FMDY, DDD Month, YYYY') FROM dual;
Question 10 Multiple Choice (Multiple Answers)

Which four are valid Oracle constraint types? (Choose four.)

  1. CASCADE
  2. UNIQUE
  3. NONUNIQUE
  4. CHECK
  5. PRIMARY KEY
  6. NOT NULL
Question 11 Multiple Choice (Single Answer)

Which SQL statement would you use to remove a view called EMP_DEPT_VU from your schema?

  1. DROP emp_dept_vu;
  2. DELETE emp_dept_vu;
  3. REMOVE emp_dept_vu;
  4. DROP VIEW emp_dept_vu;
  5. DELETE VIEW emp_dept_vu;
  6. REMOVE VIEW emp_dept_vu;
Question 12 Multiple Choice (Single Answer)

Which is an iSQL*Plus command?

  1. INSERT
  2. UPDATE
  3. SELECT
  4. DESCRIBE
  5. DELETE
  6. RENAME
Question 13 Multiple Choice (Multiple Answers)

Which are DML statements? (Choose all that apply.)

  1. COMMIT
  2. MERGE
  3. UPDATE
  4. DELETE
  5. CREATE
  6. DROP
Question 14 Multiple Choice (Single Answer)

You need to modify the STUDENTS table to add a primary key on the STUDENT_ID column. The table is currently empty. Which statement accomplishes this task?

  1. ALTER TABLE students ADD PRIMARY KEY student_id;
  2. ALTER TABLE students ADD CONSTRAINT PRIMARY KEY (student_id);
  3. ALTER TABLE students ADD CONSTRAINT stud_id_pk PRIMARY KEY student_id;
  4. ALTER TABLE students ADD CONSTRAINT stud_id_pk PRIMARY KEY
  5. ALTER TABLE studentsMODIFY CONSTRAINT stud_id_pk PRIMARY KEY
Question 15 Multiple Choice (Multiple Answers)

Which two statements complete a transaction? (Choose two.)

  1. DELETE employees;
  2. DESCRIBE employees;
  3. ROLLBACK TO SAVEPOINT C;
  4. GRANT SELECT ON employees TO SCOTT;
  5. ALTER TABLE employeesSET UNUSED COLUMN sal;
  6. SELECT MAX(sal) FROM employees WHERE department_id = 20;