1.
In PL/SQL, which of the following queries is an example of the view trigger?
2.
In PL/SQL, which of the following statements is correct about the with check option defined in a view?
3.
In PL/SQL, wich of the following options is used to specify that the integers are not to be stored?
4.
In PL/SQL, which of the following operators is used to return rows that are retrieved by multiple queries?
5.
Which of the following statements about the REGR_R2(y, x) function is correct?
6.
In PL/SQL, which of the following operators is used to match the positions at the beginning of a string?
7.
To which of these joins does the following PL/SQL query belong:
select e.ename as employee
m.ename as manager
from employees m
JOIN
employees e
ON e.mgr = m.empno
where e.bdate > date '2015-05-05'
order by employee;
8.
In PL/SQL, which of the following queries is used to calculate the variance of columns?
9.
In PL/SQL, which of the following operators is used to include records in a specific query?
10.
In PL/SQL, which of the following statements about the occurrence of the ORA-04098 error is correct?