UPDATE 2026
Identify the capabilities of SELECT statement.
A. Projection
B. Selection
C. Data Control
D. Transaction - Answers A & B. The SELECT statement can be used for selection,
projection and joining.
2. Determine the capability of the SELECT statement demonstrated in the given
query.
SELECT e.ename, d.dname
FROM emp e, dept d
WHERE e.deptno = d.deptno
AND e.sal > 1000;
A. Selection
B. Filtering
C. Joining
D. Projection - Answers A, C, D. Projection is including only the required columns in
query, while Selection is selecting only the required data. Joining means combining
two tables together through a connecting column.
Which of the following clause is used to suppress duplicates in a SELECT statement?
A. INTERSECT
B. DUPLICATE
C. DISTINCT
D. UNIQUE - Answers C, D. Duplicate data can be restricted with the use of
DISTINCT or UNIQUE in the SELECT statement.
Determine the output of the below query -
SELECT '5+7'
FROM dual;
A. 12
B. 5+7
C. 5
D. 7 - Answers B, Oracle treats the values within double quotes as string expressions.
Chose the statements which correctly define a NULL value.
A. NULL is a special value with zero bytes
B. NULL is no value or unknown value
C. NULL is represented by a blank space
D. NULL is not same as zero - Answers B & D. NULL is NO VALUE but neither
same as zero nor as blank or space character.
What is true about data types in Oracle DB?
A. They are given to columns for sorting purposes.
B. They are given to columns for a structured representation in a table.
C. They are given to columns to constrain the nature of the data it can store.
, D. They are not mandatory. - Answers C. Data types define the nature of data which
a column can store in a table. A column can store only one type of data. The primary
data types available in Oracle are NUMBER, VARCHAR2, and DATE.
Which of the following data types are appropriate for general functions?
A. VARCHAR2
B. NUMBER
C. DATE
D. All Datatypes - Answers D. General functions are usually compatible with all
primary data types like NUMBER, VARCHAR2 and DATE.
Assuming the SYSDATE is 01-JAN-13, what will be the outcome of the following
query?
SELECT TO_CHAR (SYSDATE, 'DDTH') FROM dual;
A. 1st of January
B. 1st
C. 1 ST
D. 01ST - Answers D. 01ST
Assuming the SYSDATE is 01-JAN-13 and falls on Tuesday, what will be the
outcome of the following query?
SELECT TO_CHAR (SYSDATE, 'fmDay')||'''s Meeting' FROM dual;
A. Tuesday
B. TUESDAY
C. TUESDAY's Meeting
D. Tuesday's Meeting - Answers D. Tuesday's Meeting
What will be the outcome of the following query?
SELECT TO_DATE('01 / JAN / 13','DD-MON-YY') FROM dual;
A. ORA error
B. 01-JAN-2013
C. 01-JANUARY-13
D. 01-JAN-13 - Answers D. 01-JAN-13
What will be the outcome of the following query?
SELECT TO_DATE('01 ## JAN / 13','DD-MON-YY') FROM dual;
A. ORA error
B. 01-JAN-2013
C. 01-JANUARY-13
D. 01-JAN-13 - Answers A. Use a single delimiter between the dates.
Which of the following is an example of a nested function?
A. SELECT lower(last_name) FROM employees;
B. SELECT upper (last_name) FROM employees;
C. SELECT concat (first_name, last_name) FROM employees;
D. SELECT upper (concat(SUBSTR(first_name,1,6),'_UK')) FROM employees; -
Answers D. More than one functions in a function is known as nesting of functions.
Which of the following is not related to a Relational Database?