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?The CREATE DATABASE command with the ENABLE PLUGGABLE DATABASE clause indicates that a CDB 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
Question:
Which statement is true about the database that is created?
Options:
It is created as a container database (CDB) with CDB$ROOT, PDB$SEED, and a pluggable database (PDB).
It is created as a non-CDB that becomes a CDB after the first PDB is plugged in.
It is created as a PDB that must be plugged into an existing CDB.
It is created as a CDB with the CDB$ROOT and PDB$SEED databases.
Correct Answer
The Correct Answer for this Question is
It is created as a CDB with the CDB$ROOT and PDB$SEED databases.