Question 56

A junior data engineer has configured a workload that posts the following JSON to the Databricks REST API endpoint 2.0/jobs/create.

Assuming that all configurations and referenced resources are available, which statement describes the result of executing this workload three times?
  • Question 57

    The downstream consumers of a Delta Lake table have been complaining about data quality issues impacting performance in their applications. Specifically, they have complained that invalidlatitudeandlongitudevalues in theactivity_detailstable have been breaking their ability to use other geolocation processes.
    A junior engineer has written the following code to addCHECKconstraints to the Delta Lake table:

    A senior engineer has confirmed the above logic is correct and the valid ranges for latitude and longitude are provided, but the code fails when executed.
    Which statement explains the cause of this failure?
  • Question 58

    A data engineer has ingested a JSON file into a table raw_table with the following schema:
    1.transaction_id STRING,
    2.payload ARRAY<customer_id:STRING, date:TIMESTAMP, store_id:STRING>
    The data engineer wants to efficiently extract the date of each transaction into a table with the fol-lowing
    schema:
    1.transaction_id STRING,
    2.date TIMESTAMP
    Which of the following commands should the data engineer run to complete this task?
  • Question 59

    An engineering manager uses a Databricks SQL query to monitor their team's progress on fixes related to
    customer-reported bugs. The manager checks the results of the query every day, but they are manually
    rerunning the query each day and waiting for the results.
    Which of the following approaches can the manager use to ensure the results of the query are up-dated each
    day?
  • Question 60

    The data governance team has instituted a requirement that all tables containing Personal Identifiable Information (PH) must be clearly annotated. This includes adding column comments, table comments, and setting the custom table property"contains_pii" = true.
    The following SQL DDL statement is executed to create a new table:

    Which command allows manual confirmation that these three requirements have been met?