All Practice Exams

100+ Free Oracle 1Z0-182 Practice Questions

Pass your Oracle AI Database Administration Associate (1Z0-182, Oracle Database 23ai) exam on the first try — instant access, no signup required.

✓ No registration✓ No credit card✓ No hidden fees✓ Start practicing immediately
100+ Questions
100% Free

Loading practice questions...

2026 Statistics

Key Facts: Oracle 1Z0-182 Exam

120 minutes

Time limit for the Oracle 1Z0-182 proctored exam

Oracle - 1Z0-182 exam page

65%

Passing score Oracle lists for the 1Z0-182 exam

Oracle - 1Z0-182 exam page

55-65 questions

Approximate number of multiple-choice questions on 1Z0-182

Oracle - 1Z0-182 exam page

Oracle Database 23ai

Database release the 1Z0-182 administration exam is based on

Oracle Database 23ai Administration learning path

USD 245

Typical exam fee, varying by country and currency

Oracle / Pearson VUE registration

Pearson VUE

Delivery provider for the proctored 1Z0-182 exam (test center or OnVUE)

Oracle Certification

Associate

Certification level earned by passing 1Z0-182

Oracle Certification

100

Free original practice questions in this OpenExamPrep bank

OpenExamPrep

The Oracle AI Database Administration Associate exam (1Z0-182) is the associate-level certification for administering Oracle Database 23ai. It is a 120-minute proctored multiple-choice exam of roughly 55-65 questions with a 65% passing score, delivered through Pearson VUE for about USD 245. It tests Oracle Database architecture, instance and parameter management, Oracle Net, storage and tablespaces, Automatic Undo Management, users, privileges, roles, profiles and Unified Auditing, multitenant CDB/PDB management, redo, instance recovery and RMAN backup basics, plus new 23ai features such as AI Vector Search. This 100-question bank gives original practice across all of those objective areas with explanations for every option.

Sample Oracle 1Z0-182 Practice Questions

Try these sample questions to test your Oracle 1Z0-182 exam readiness. Each question includes a detailed explanation. Start the interactive quiz above for the full 100+ question experience with AI tutoring.

1In an Oracle Database 23ai instance, which memory area holds copies of data blocks read from datafiles so that multiple sessions can share them?
A.Redo log buffer
B.Database buffer cache
C.Program Global Area (PGA)
D.Large pool
Explanation: The database buffer cache, part of the System Global Area (SGA), holds copies of data blocks read from datafiles. Because it is in the shared SGA, many sessions can access the same cached blocks, reducing physical I/O.
2Which Oracle background process writes the contents of the redo log buffer to the online redo log files?
A.DBWn
B.LGWR
C.CKPT
D.SMON
Explanation: LGWR (Log Writer) flushes the redo log buffer to the online redo log files, on commit, when the buffer is one-third full, every three seconds, and before DBWn writes. This protects committed changes.
3Which background process performs instance recovery automatically when a crashed instance is restarted?
A.PMON
B.SMON
C.ARCn
D.MMON
Explanation: SMON (System Monitor) performs instance/crash recovery at startup by rolling forward changes in the online redo logs and then rolling back uncommitted transactions. It also coalesces free space and cleans temporary segments.
4Which list correctly orders Oracle logical storage structures from largest to smallest?
A.Block, extent, segment, tablespace
B.Tablespace, segment, extent, block
C.Segment, tablespace, block, extent
D.Extent, block, segment, tablespace
Explanation: A tablespace contains segments, a segment is made of extents, an extent is a set of contiguous Oracle data blocks, and the data block is the smallest unit of logical storage. So the order is tablespace > segment > extent > block.
5What does the Program Global Area (PGA) primarily store for a dedicated server session?
A.Shared SQL execution plans for all sessions
B.Session-specific data such as sort areas, cursor state and session variables
C.Cached data blocks from datafiles
D.The data dictionary cache
Explanation: The PGA is private (non-shared) memory allocated for a single server process. It holds session-specific data including the sort/work areas, session variables and private SQL cursor state.
6Which SGA component caches parsed SQL statements and their execution plans so they can be reused?
A.Buffer cache
B.Shared pool (library cache)
C.Redo log buffer
D.Java pool
Explanation: The shared pool contains the library cache, which stores parsed SQL and PL/SQL, execution plans and the data dictionary cache. Reusing cached statements avoids hard parsing and improves performance.
7Which three file types are the physical files that make up an Oracle database?
A.Datafiles, control files and online redo log files
B.Parameter file, listener.ora and tnsnames.ora
C.Alert log, trace files and audit files
D.Password file, wallet and export dump files
Explanation: The three required physical file types that constitute the database are datafiles (user and system data), control files (database metadata) and online redo log files (change records). The instance reads the parameter file and control file to mount and open the database.
8In the Oracle multitenant architecture, what is CDB$ROOT?
A.A pluggable database that stores user application data
B.The root container that holds Oracle-supplied metadata and common objects shared by all PDBs
C.A temporary tablespace used during PDB creation
D.The seed used to clone new pluggable databases
Explanation: CDB$ROOT is the root container of a container database (CDB). It stores Oracle-supplied metadata and common users/objects that are shared across all pluggable databases. User application data is stored in PDBs, not the root.
9Which tool is the lightweight, browser-based interface for managing a single Oracle Database 23ai instance, replacing the older Database Express?
A.SQL*Plus
B.Oracle Enterprise Manager Database Express (EM Express)
C.Recovery Manager (RMAN)
D.Data Pump
Explanation: Oracle Enterprise Manager Database Express (EM Express) is the lightweight, browser-based management tool built into the database for a single database/instance. SQL*Plus and RMAN are command-line tools and Data Pump moves data.
10Which background process is responsible for updating datafile headers and the control file with checkpoint information?
A.DBWn
B.CKPT
C.LGWR
D.RECO
Explanation: CKPT (Checkpoint) signals DBWn to write dirty buffers and updates the control file and datafile headers with the checkpoint position. This reduces the amount of redo needed during instance recovery.

About the Oracle 1Z0-182 Exam

The Oracle AI Database Administration Associate exam (1Z0-182) is the associate-level Oracle Database 23ai administration certification exam. It validates that a candidate can install, configure and administer an Oracle Database 23ai environment, including the multitenant architecture. The exam covers Oracle Database architecture and memory/process structures, managing instances with initialization parameters, Oracle Net connectivity, storage and tablespace management, Automatic Undo Management, users, privileges, roles, profiles and Unified Auditing, multitenant container and pluggable database management, redo, checkpoints, instance recovery and RMAN backup fundamentals, automated maintenance and data movement, and new Oracle Database 23ai capabilities such as AI Vector Search and the VECTOR data type. It is delivered as a proctored multiple-choice exam.

Assessment

Multiple-choice and multiple-select questions covering Oracle Database 23ai administration. Oracle lists the exam at roughly 55-65 questions in a single proctored session.

Time Limit

120 minutes.

Passing Score

65%. Oracle publishes the passing score on the exam page; scores are reported as pass or fail after delivery.

Exam Fee

USD 245 (local price varies by country and currency; confirm at registration through Oracle CertView and Pearson VUE). (Oracle University (delivered through Pearson VUE at a test center or via OnVUE online proctoring))

Oracle 1Z0-182 Exam Content Outline

14%

Oracle Database Architecture and Tools

Covers the Oracle instance and database, SGA components (shared pool, buffer cache, redo log buffer, large pool), PGA, background processes (DBWn, LGWR, CKPT, SMON, PMON, ARCn, MMON), logical storage (tablespace, segment, extent, block) and physical files, the multitenant container architecture, and tools such as SQL*Plus, SQL Developer and Enterprise Manager.

12%

Managing Database Instances

Covers STARTUP NOMOUNT/MOUNT/OPEN and SHUTDOWN modes, managing initialization parameters with SPFILE and PFILE and ALTER SYSTEM, static and dynamic parameters, the data dictionary and V$ dynamic performance views, and diagnosing problems with the alert log and trace files in the Automatic Diagnostic Repository.

8%

Oracle Net and Connectivity

Covers configuring and controlling the Oracle Net listener with lsnrctl, the listener.ora and tnsnames.ora files, dynamic service registration by PMON/LREG, easy connect and local naming, services and the DB service mapping to PDBs, and basic client-to-server connection troubleshooting.

18%

Storage, Tablespaces and Undo

Covers creating and altering tablespaces and datafiles, bigfile vs smallfile tablespaces, Oracle Managed Files, automatic segment space management, temporary tablespaces and temp groups, the SYSAUX tablespace, and Automatic Undo Management including the undo tablespace, UNDO_RETENTION and guaranteed retention.

16%

Users, Privileges, Auditing and Security

Covers creating local and common users, system and object privileges, the difference between roles and privileges, predefined roles, profiles for password and resource limits, schema-only (no-authentication) accounts, the principle of least privilege, and Unified Auditing with audit policies in Oracle Database 23ai.

16%

Multitenant CDB and PDB Management

Covers the CDB root (CDB$ROOT), the seed (PDB$SEED) and pluggable databases, creating PDBs from the seed and by cloning, plugging and unplugging PDBs with XML or PDB archive files, opening and closing PDBs and saving their state, switching containers with ALTER SESSION SET CONTAINER, and common vs local objects and users.

12%

Backup, Recovery and Redo

Covers redo log groups and members and log switches, checkpoints, ARCHIVELOG vs NOARCHIVELOG mode and the archiver process, instance recovery using online redo logs, the Fast Recovery Area, control files, and RMAN fundamentals including full and incremental backups, image copies and restore/recover concepts.

4%

Maintenance, Data Movement and 23ai AI Features

Covers automated maintenance tasks, the Automatic Workload Repository (AWR), ADDM and advisors, moving data with Data Pump (expdp/impdp) and SQL*Loader, external tables, and new Oracle Database 23ai features such as AI Vector Search, the VECTOR data type, vector indexes and similarity search.

How to Pass the Oracle 1Z0-182 Exam

What You Need to Know

  • Passing score: 65%. Oracle publishes the passing score on the exam page; scores are reported as pass or fail after delivery.
  • Assessment: Multiple-choice and multiple-select questions covering Oracle Database 23ai administration. Oracle lists the exam at roughly 55-65 questions in a single proctored session.
  • Time limit: 120 minutes.
  • Exam fee: USD 245 (local price varies by country and currency; confirm at registration through Oracle CertView and Pearson VUE).

Keys to Passing

  • Complete 500+ practice questions
  • Score 80%+ consistently before scheduling
  • Focus on highest-weighted sections
  • Use our AI tutor for tough concepts

Oracle 1Z0-182 Study Tips from Top Performers

1Practice on a real Oracle Database 23ai instance (the free Oracle Database 23ai Free release works well) so commands like STARTUP, ALTER PLUGGABLE DATABASE and ALTER SYSTEM become second nature.
2Memorize the startup sequence (NOMOUNT reads the parameter file, MOUNT reads the control file, OPEN opens the datafiles and redo logs) because many architecture and recovery questions depend on it.
3Drill the multitenant model: know CDB$ROOT, PDB$SEED, how to create, open, close, save state, clone, plug and unplug PDBs, and the difference between common and local users and privileges.
4Be precise about undo vs redo: undo provides read consistency and rollback, while redo (online redo logs) provides instance and media recovery. Confusing the two is a common exam trap.
5Understand ARCHIVELOG mode, the Fast Recovery Area and the basics of RMAN backups, because backup and recovery questions reward knowing which files protect what.
6Review the new Oracle Database 23ai features lightly, especially AI Vector Search, the VECTOR data type, schema-only accounts and Unified Auditing, since the exam expects awareness of what is new in 23ai.

Frequently Asked Questions

What certification does the Oracle 1Z0-182 exam lead to?

Passing 1Z0-182 earns the Oracle Database 23ai Administration Associate certification (also branded as Oracle AI Database Administration Associate). It validates associate-level skills for administering Oracle Database 23ai, including the multitenant architecture.

How many questions are on the 1Z0-182 exam and how long is it?

Oracle lists 1Z0-182 at roughly 55 to 65 multiple-choice and multiple-select questions with a 120-minute time limit. Always check the official Oracle exam page for the exact current question count and duration before you book.

What is the passing score for 1Z0-182?

Oracle lists a passing score of about 65% for 1Z0-182. Oracle reports results as pass or fail and may adjust the passing standard through statistical analysis of exam performance.

Is the 1Z0-182 exam only about AI features?

No. Despite the 'AI Database Administration' branding, 1Z0-182 is mainly a core Oracle Database 23ai administration exam covering architecture, instances, storage, undo, security, multitenant and backup. Only a small portion covers new 23ai AI features such as AI Vector Search.

How is 1Z0-182 different from the AI Vector Search exam 1Z0-184?

1Z0-182 is a general Oracle Database 23ai administration (DBA) exam. 1Z0-184-25, the Oracle AI Vector Search Professional exam, focuses specifically on vectors, embeddings, vector indexes, similarity search and RAG, and is a separate certification.

Are these official Oracle exam questions?

No. These are original OpenExamPrep practice questions written to match the published 1Z0-182 objectives. Oracle's real exam questions are confidential. Use Oracle University training and the Oracle Database 23ai documentation as your primary study resources.