You create a new database by using the CREATE DATABASE command in SQL *Plus, with the ENABLE
PLUGGABLE DATABASE clause specified.
Which statement is true about the database that is created?
A.
It is created as a container database (CDB) with CDB$ROOT, PDB$SEED, and a pluggable database (PDB).
B.
It is created as a non-CDB that becomes a CDB after the first PDB is plugged in.
C.
It is created as a PDB that must be plugged into an existing CDB.
D.
It is created as a CDB with the CDB$ROOT and PDB$SEED databases.
Explanation:
is being created. The CDB will contain a root (CDB$ROOT) and a seed (PDB$SEED).
References: https://docs.oracle.com/database/121/SQLRF/statements_5005.htm
D