Question 1
Which of the following correctly describes an Oracle database instance?
Show answer & explanation
Correct answer: A - The System Global Area together with the background processes
10 exam-style questions with answers and explanations, straight from our 1,030-question bank. Tap an answer to check yourself. When you're ready, take the scored version in the free practice test.
The OCA exam has 72 questions and runs 2 hours.
These 10 free OCA questions are organized by exam domain, so you can see how each part of the Oracle Database Administration I (1Z0-082) blueprint is tested. Reveal the answer and explanation under each question.
Which of the following correctly describes an Oracle database instance?
Correct answer: A - The System Global Area together with the background processes
A DBA must place the database into ARCHIVELOG mode. In which state must the database be when the ALTER DATABASE ARCHIVELOG command is issued?
Correct answer: C - MOUNT, because the control file is read but the datafiles are not yet open
An instance was started using a text initialization parameter file (PFILE). The DBA then executes: ALTER SYSTEM SET open_cursors=500 SCOPE=BOTH; What is the result?
Correct answer: D - The statement fails and the parameter is unchanged
User SCOTT grants the SELECT privilege on his EMPLOYEES table to user ANNA using WITH GRANT OPTION. ANNA then grants SELECT on that same table to user BEN. SCOTT now revokes SELECT from ANNA. What happens to BEN's privilege?
Correct answer: B - BEN loses the privilege automatically as well
An instance terminates unexpectedly and is then restarted. Which statement describes the recovery Oracle performs automatically?
Correct answer: A - Redo is applied to roll the database forward, then undo reverses uncommitted transactions
Examine this query: SELECT last_name, salary FROM employees WHERE ROWNUM <= 5 ORDER BY salary DESC; Which statement best describes the rows returned?
Correct answer: C - Five arbitrary rows, then sorted by salary
The current year is 2026. Examine this statement: SELECT TO_DATE('15-MAR-95','DD-MON-RR') FROM dual; In which year does the returned date fall?
Correct answer: D - 1995
Examine this query: SELECT department_id, COUNT(*) FROM employees WHERE COUNT(*) > 5 GROUP BY department_id; What is the result?
Correct answer: D - An error, because a group function cannot appear in WHERE
Examine this query: SELECT e.employee_id, d.department_id, d.department_name FROM employees e JOIN departments d USING (department_id); What is the result?
Correct answer: C - It fails, because a column named in a USING clause cannot be qualified
Examine this statement: SELECT e.last_name FROM employees e WHERE e.department_id NOT IN (SELECT d.department_id FROM departments d); The DEPARTMENTS table contains one row in which DEPARTMENT_ID is null. What is the result?
Correct answer: B - No rows are returned, whatever the EMPLOYEES table contains
The OCA exam also covers these domains. Drill them in the full free practice test:
The full bank has 1,020 more OCA questions with explanations.
Continue in the free practice test →
View plans