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.
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....?
- nvl(mgrno,0)
- nvl(mgrno,'none')
- nvl('mgrno',0)
- nvl(mgrno,'0')
Question 2 Multiple Choice (Single Answer)
Where do I need to configure to tell how oracle operates while it is running...?
- control files
- password files
- parameter files
- redo logs
Question 3 Multiple Choice (Single Answer)
find the SGA components
- buffer cache
- large pool
- java pool
- all the above
Question 4 True/False
Distinct keyword must appear directly after the select keyword in SQL Query....
- True
- False
Question 5 Multiple Choice (Multiple Answers)
Which statements excute without error(select all)
- select ename||',is the'||job from emp
- select ename,||'is the||job from emp
- select 'ename'||'is the'||'job' from from emp
- select ename||concat('is the',job) from emp