Welcome to ExamTopics
ExamTopics Logo
- Expert Verified, Online, Free.
exam questions

Exam Certified Data Analyst Associate All Questions

View all questions & answers for the Certified Data Analyst Associate exam

Exam Certified Data Analyst Associate topic 1 question 12 discussion

Actual exam question from Databricks's Certified Data Analyst Associate
Question #: 12
Topic #: 1
[All Certified Data Analyst Associate Questions]

After running DESCRIBE EXTENDED accounts.customers;, the following was returned:

Now, a data analyst runs the following command:
DROP accounts.customers;
Which of the following describes the result of running this command?

  • A. Running SELECT * FROM delta. `dbfs:/stakeholders/customers` results in an error.
  • B. Running SELECT * FROM accounts.customers will return all rows in the table.
  • C. All files with the .customers extension are deleted.
  • D. The accounts.customers table is removed from the metastore, and the underlying data files are deleted.
  • E. The accounts.customers table is removed from the metastore, but the underlying data files are untouched.
Show Suggested Answer Hide Answer
Suggested Answer: E 🗳️

Comments

Chosen Answer:
This is a voting comment (?). It is better to Upvote an existing comment if you don't have anything to add.
Switch to a voting comment New
THC1138
7 months ago
Selected Answer: E
Since this is an external aka unmanaged table, dropping the table only deletes the metadata. The data itself is untouched. This is assuming that "table" is missing from "drop table" due to a transcription error. Now, if the question is written on the test as it is here, then the answer would be B, since the DROP TABLE statement is incorrect and the table would not have been dropped.
upvoted 1 times
...
markiz
8 months ago
Answer: B The drop statement is missing "table" so it will not drop the table will still be valid
upvoted 1 times
...
ADVIT
9 months, 2 weeks ago
Selected Answer: E
Answer E
upvoted 2 times
...
Community vote distribution
A (35%)
C (25%)
B (20%)
Other
Most Voted
A voting comment increases the vote count for the chosen answer by one.

Upvoting a comment with a selected answer will also increase the vote count towards that answer by one. So if you see a comment that you already agree with, you can upvote it instead of posting a new comment.

SaveCancel
Loading ...