Oracle Database SQL — Question 3

You own table DEPARTMENTS, referenced by views, indexes, and synonyms.
Examine this command which executes successfully:
DROP TABLE departments PURGE;
Which three statements are true? (Choose three.)

Answer options

Correct answer: A, B, E

Explanation

The correct answer A is true because the DROP TABLE command does indeed remove the specified table from the database. Option B is also correct since dropping the table automatically removes all indexes associated with it. Option E is valid because using PURGE means that the operation cannot be rolled back, and the table cannot be recovered. Options C, D, and F are incorrect because dropping the table does not directly affect views or synonyms, nor does it retain an empty table.