Databricks Certified Data Engineer Associate — Question 66
A data engineer wants to create a data entity from a couple of tables. The data entity must be used by other data engineers in other sessions. It also must be saved to a physical location.
Which of the following data entities should the data engineer create?
Answer options
- A. Table
- B. Function
- C. View
- D. Temporary view
Correct answer: A
Explanation
The correct answer is A, Table, because a table is a permanent data entity that can be accessed across sessions and stored physically. Options B (Function) and C (View) do not meet the criteria of being saved as a physical entity, while D (Temporary view) is not persistent and only exists for the duration of the session.