Oracle Database 12c: SQL Fundamentals (1z1-061) Free Practice Test
Question 1
View the Exhibit to examine the description for the SALES table. Which views can have all DML operations performed on it? (Choose all that apply.)


Correct Answer: A,B
Explanation: Only visible for TestSimulate members. You can sign-up / login (it's free).
Question 2
Examine the data in the PROMO_BEGIN_DATE column of the promotions table:

You want to display the number of promotions started in 1999 and 2000.
Which query gives the correct output?


You want to display the number of promotions started in 1999 and 2000.
Which query gives the correct output?

Correct Answer: C
Question 3
View the Exhibit and examine the structure of the PROMOTIONS table.

Examine the following two SQL statements:

Which statement is true regarding the above two SQL statements?

Examine the following two SQL statements:

Which statement is true regarding the above two SQL statements?
Correct Answer: B
Question 4
Evaluate the SQL statement
DROP TABLE DEPT:
Which four statements are true of the SQL statement? (Choose four.)
DROP TABLE DEPT:
Which four statements are true of the SQL statement? (Choose four.)
Correct Answer: A,B,E,G
Explanation: Only visible for TestSimulate members. You can sign-up / login (it's free).
Question 5
What is true regarding sub queries?
Correct Answer: A
Explanation: Only visible for TestSimulate members. You can sign-up / login (it's free).
Question 6
Which three statements/commands would cause a transaction to end? (Choose three.)
Correct Answer: B,C,E
Question 7
You issue the following command to drop the products table:
SQL> DROP TABLE products;
Which three statements are true about the implication of this command? (Choose three.)
SQL> DROP TABLE products;
Which three statements are true about the implication of this command? (Choose three.)
Correct Answer: A,B,E
Explanation: Only visible for TestSimulate members. You can sign-up / login (it's free).
Question 8
Which are iSQL*Plus commands? (Choose all that apply.)
Correct Answer: A
Explanation: Only visible for TestSimulate members. You can sign-up / login (it's free).
Question 9
There is a simple view SCOTT.DEPT_VIEW on the table SCOTT.DEPT.
This insert fails with an error:
SQL> insert into dept_view values('SUPPORT','OXFORD'); insert into dept_view values('SUPPORT','OXFORD')
* ERROR at line 1:
ORA-01400: cannot insert NULL into ("SCOTT"."DEPT"."DEPTNO")
What might be the problem?
This insert fails with an error:
SQL> insert into dept_view values('SUPPORT','OXFORD'); insert into dept_view values('SUPPORT','OXFORD')
* ERROR at line 1:
ORA-01400: cannot insert NULL into ("SCOTT"."DEPT"."DEPTNO")
What might be the problem?
Correct Answer: D
Explanation: Only visible for TestSimulate members. You can sign-up / login (it's free).
Question 10
View the Exhibit and examine the structure of the CUSTOMERS table.

Which two tasks would require subqueries or joins to be executed in a single statement?
(Choose two.)

Which two tasks would require subqueries or joins to be executed in a single statement?
(Choose two.)
Correct Answer: B,C
Explanation: Only visible for TestSimulate members. You can sign-up / login (it's free).
Question 11
The STUDENT_GRADES table has these columns:
STUDENT_ID NUMBER(12)
SEMESTER_END DATE
GPA NUMBER(4, 3)
Which statement finds the highest grade point average (GPA) per semester?
STUDENT_ID NUMBER(12)
SEMESTER_END DATE
GPA NUMBER(4, 3)
Which statement finds the highest grade point average (GPA) per semester?
Correct Answer: E
Explanation: Only visible for TestSimulate members. You can sign-up / login (it's free).
Question 12
Which statements are correct regarding indexes? (Choose all that apply.)
Correct Answer: A,C,D