DATABRICKS-CERTIFIED-DATA-ENGINEER-ASSOCIATE · Question #5
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 correct answer is E. Table. The two requirements are: (1) accessible by other data engineers in other sessions, and (2) saved to a physical location. A Table satisfies both - it persists across sessions and stores data physically. A Temporary View is session-scoped and disappears when the session ends…
Question
Options
- ADatabase
- BFunction
- CView
- DTemporary view
- ETable
How the community answered
(27 responses)- B7% (2)
- D4% (1)
- E89% (24)
Explanation
The two requirements are: (1) accessible by other data engineers in other sessions, and (2) saved to a physical location. A Table satisfies both - it persists across sessions and stores data physically. A Temporary View is session-scoped and disappears when the session ends, failing requirement 1. A regular View is session-persistent but is virtual (no physical storage), failing requirement 2. A Database is a namespace container, not a data entity. A Function is a callable routine, not a data storage entity. Only a Table meets both criteria.
Topics
Community Discussion
No community discussion yet for this question.