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

Exam Certified Data Engineer Associate All Questions

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

Exam Certified Data Engineer Associate topic 1 question 24 discussion

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

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?

  • A. Database
  • B. Function
  • C. View
  • D. Temporary view
  • E. Table
Show Suggested Answer Hide Answer
Suggested Answer: E 🗳️

Comments

Chosen Answer:
This is a voting comment (?) , you can switch to a simple comment.
Switch to a voting comment New
Bob123456
Highly Voted 1 year, 6 months ago
Questions says : 1. The data entity must be used by other data engineers in other sessions. 2. It also must be saved to a physical location. Here View doesn't store data in physical location , from the options only table stores data in physical location So answer should be 'E' which is Table.
upvoted 29 times
...
Nika12
Highly Voted 10 months ago
Selected Answer: E
Just got 100% in the exam. Table was a correct answer.
upvoted 8 times
ADVIT
10 months ago
Wow! Congratz!
upvoted 1 times
...
...
80370eb
Most Recent 3 months, 2 weeks ago
Selected Answer: E
E. Table Creating a table ensures that the data entity is saved to a physical location and can be used by other data engineers in different sessions. Tables persist data and metadata, making them suitable for long-term storage and sharing across sessions.
upvoted 1 times
...
3fbc31b
4 months, 2 weeks ago
Selected Answer: E
The correct answer is "E". A view does not save to a physical location; only caching a SELECT statement.
upvoted 1 times
...
benni_ale
7 months ago
Selected Answer: E
physical location means table
upvoted 2 times
...
agAshish
9 months, 4 weeks ago
E. as view doesnt has any location
upvoted 1 times
...
SerGrey
10 months, 3 weeks ago
Selected Answer: E
E is correct
upvoted 1 times
...
Garyn
11 months ago
Selected Answer: E
E. Table Usage by Other Sessions: Tables in a database are persistent data structures that can be accessed by multiple users and sessions concurrently. Saved to a Physical Location: Tables store data physically in a structured manner on disk or in a storage system, making them suitable for long-term storage. Usage by Other Data Engineers: Other data engineers can query, access, and work with the data within the table, making it a feasible choice for shared access among multiple users or sessions. While other entities like views or temporary views can provide different ways to represent or filter data, a table fits the criteria best when the data engineer requires a persistent physical storage entity accessible by other sessions and users for data manipulation, retrieval, and storage.
upvoted 1 times
...
RafaelCFC
11 months, 2 weeks ago
Selected Answer: C
I think the key to the answer is that it refers to the Data Entinty, and not to the data itself, when it mentions "the Data Entity must be used by other Data Engineers", and "It must be saved to a physical location". From this PoV, both C and E would be correct, however, creating a new table would incur in processing to a static state the relationship from "a couple of tables". While this make sense to many use cases, this would require either a Workflow or a DLT to make it work, which goes over the requested scope. C is the best answer for the requested scenario.
upvoted 3 times
...
Vikram1710
12 months ago
Key point to remember during answering this question: " It also must be saved to a physical location" So answer should be 'E' which is Table.
upvoted 2 times
...
rbeeraka
12 months ago
C is the right answer. View is a data entity and its definition is physically saved so other users can consume view
upvoted 1 times
...
Huroye
1 year ago
The correct answer is E because it has to be physically saved. View is in memory.
upvoted 1 times
...
awofalus
1 year ago
Selected Answer: E
Correct : E
upvoted 1 times
...
vctrhugo
1 year, 2 months ago
Selected Answer: E
E. Table To create a data entity that can be used by other data engineers in other sessions and must be saved to a physical location, you should create a table. Tables in a database are physical storage structures that hold data, and they can be accessed and shared by multiple users and sessions. By creating a table, you provide a permanent and structured storage location for the data entity that can be used across different sessions and by other users as needed. Options like databases (A) can be used to organize tables, views (C) can provide virtual representations of data, and temporary views (D) are temporary in nature and don't save data to a physical location. Functions (B) are typically used for processing data or performing calculations, not for storing data.
upvoted 2 times
...
[Removed]
1 year, 2 months ago
Selected Answer: E
View does not have a physical location so answer has to be E
upvoted 1 times
...
Kartz130789
1 year, 3 months ago
Selected Answer: E
View Doesn't physical location
upvoted 2 times
...
ehsanmor18
1 year, 4 months ago
The answer is E: "Table" In the context described, creating a "Table" is the most suitable choice. Tables in SQL are data entities that exist independently of any session and are saved in a physical location. They can be accessed and manipulated by other data engineers in different sessions, which aligns with the requirements stated. A "Database" is a collection of tables, views, and other database objects. A "Function" is a stored procedure that performs an operation. A "View" is a virtual table based on the result-set of an SQL statement, but it is not stored physically. A "Temporary view" is a feature that allows you to store the result of a query as a view that disappears once your session with the database is closed.
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 ...