Questions and Answers

Question 2o6NH0MHvNPsfsoZHcpn

Question

A data engineer is using the following code block as part of a batch ingestion pipeline to read from a composable table:

//IMG//

Which of the following changes needs to be made so this code block will work when the transactions table is a stream source?

Choices

  • A: Replace predict with a stream-friendly prediction function
  • B: Replace schema(schema) with option (“maxFilesPerTrigger”, 1)
  • C: Replace “transactions” with the path to the location of the Delta table
  • D: Replace format(“delta”) with format(“stream”)
  • E: Replace spark.read with spark.readStream

Question yQC9PZHxOUVrea9Jxt7X

Question

Which of the following queries is performing a streaming hop from raw data to a Bronze table?

Choices

  • A:
  • B:
  • C:
  • D:
  • E:

Question FrR59kSDWjqPw8LYP5lc

Question

Which of the following Git operations must be performed outside of Databricks Repos?

Choices

  • A: Commit
  • B: Pull
  • C: Push
  • D: Clone
  • E: Merge

Question 7F5ka1vah4isfsQVpQLz

Question

A dataset has been defined using Delta Live Tables and includes an expectations clause:

CONSTRAINT valid_timestamp EXPECT (timestamp > ‘2020-01-01’) ON VIOLATION FAIL UPDATE

What is the expected behavior when a batch of data containing data that violates these constraints is processed?

Choices

  • A: Records that violate the expectation are dropped from the target dataset and recorded as invalid in the event log.
  • B: Records that violate the expectation cause the job to fail.
  • C: Records that violate the expectation are dropped from the target dataset and loaded into a quarantine table.
  • D: Records that violate the expectation are added to the target dataset and recorded as invalid in the event log.
  • E: Records that violate the expectation are added to the target dataset and flagged as invalid in a field added to the target dataset.

Question C8IDYeCMeQrnzfxljjrT

Question

Which of the following statements regarding the relationship between Silver tables and Bronze tables is always true?

Choices

  • A: Silver tables contain a less refined, less clean view of data than Bronze data.
  • B: Silver tables contain aggregates while Bronze data is unaggregated.
  • C: Silver tables contain more data than Bronze tables.
  • D: Silver tables contain a more refined and cleaner view of data than Bronze tables.
  • E: Silver tables contain less data than Bronze tables.