ClearCase Version Control Quiz

Test your knowledge of IBM ClearCase version control concepts including branching, merging, VOBs, views, check-in/out operations, and configuration specifications.

5 Questions Published

Questions

Question 1 Multiple Choice (Single Answer)

I am working on manager number field on some table. which is correct usage of nvl function usage....?

  1. nvl(mgrno,0)
  2. nvl(mgrno,'none')
  3. nvl('mgrno',0)
  4. nvl(mgrno,'0')
Question 2 Multiple Choice (Single Answer)

Where do I need to configure to tell how oracle operates while it is running...?

  1. control files
  2. password files
  3. parameter files
  4. redo logs
Question 3 Multiple Choice (Single Answer)

find the SGA components

  1. buffer cache
  2. large pool
  3. java pool
  4. all the above
Question 4 True/False

Distinct keyword must appear directly after the select keyword in SQL Query....

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

Which statements excute without error(select all)

  1. select ename||',is the'||job from emp
  2. select ename,||'is the||job from emp
  3. select 'ename'||'is the'||'job' from from emp
  4. select ename||concat('is the',job) from emp