Questions and Answers
Question htXHZxV1yfJ1FcdNrKUl
Question
A data engineer needs to use a Delta table as part of a data pipeline, but they do not know if they have the appropriate permissions.
In which location can the data engineer review their permissions on the table?
Choices
- A: Jobs
- B: Dashboards
- C: Catalog Explorer
- D: Repos
answer?
Answer: C Answer_ET: C Community answer C (100%) Discussion
Comment 1286847 by Stefan94
- Upvotes: 1
Selected Answer: C C is correct
Comment 1264165 by 80370eb
- Upvotes: 1
Selected Answer: C Catalog Explorer (also known as Data Explorer in Databricks) is where users can explore data assets like tables and databases and view permissions and metadata associated with those assets.
Question 20rAZMEqW8Bd9px8tsBQ
Question
A data engineer is running code in a Databricks Repo that is cloned from a central Git repository. A colleague of the data engineer informs them that changes have been made and synced to the central Git repository. The data engineer now needs to sync their Databricks Repo to get the changes from the central Git repository.
Which Git operation does the data engineer need to run to accomplish this task?
Choices
- A: Clone
- B: Pull
- C: Merge
- D: Push
answer?
Answer: B Answer_ET: B Community answer B (100%) Discussion
Comment 1282244 by CommanderBigMac
- Upvotes: 1
Selected Answer: B Have to pull the updated repo from Git
Comment 1218486 by MDWPartners
- Upvotes: 1
Repeated, also correct.
Question 3wbJwwj2APLxcIAzotV1
Question
Which file format is used for storing Delta Lake Table?
Choices
- A: CSV
- B: Parquet
- C: JSON
- D: Delta
answer?
Answer: B Answer_ET: B Community answer B (100%) Discussion
Comment 1360689 by Soori567
- Upvotes: 1
Selected Answer: B File format under Delta is parquet, answer is B
Comment 1306919 by LukeWroc
- Upvotes: 1
File format under Delta is parquet, answer is B
Comment 1218004 by SannPro
- Upvotes: 2
B is correct
Comment 1214221 by aspix82
- Upvotes: 1
The answer is D
Question 0OMppcxydhjH3iel5pt8
Question
A data architect has determined that a table of the following format is necessary:
//IMG//
Which code block is used by SQL DDL command to create an empty Delta table in the above format regardless of whether a table already exists with this name?
Choices
- A: CREATE OR REPLACE TABLE table_name ( employeeId STRING, startDate DATE, avgRating FLOAT )
- B: CREATE OR REPLACE TABLE table_name WITH COLUMNS ( employeeId STRING, startDate DATE, avgRating FLOAT ) USING DELTA
- C: CREATE TABLE IF NOT EXISTS table_name ( employeeId STRING, startDate DATE, avgRating FLOAT )
- D: CREATE TABLE table_name AS SELECT employeeId STRING, startDate DATE, avgRating FLOAT
answer?
Answer: A Answer_ET: A Community answer A (100%) Discussion
Comment 1286848 by Stefan94
- Upvotes: 1
Selected Answer: A Repeated, correct A
Comment 1282245 by CommanderBigMac
- Upvotes: 1
Selected Answer: A Answer is A
Comment 1218487 by MDWPartners
- Upvotes: 2
Repeated, correct.