Databricks-Certified-Data-Engineer-Associate Exam Question 16

A Data Engineer is building a simple data pipeline using Lakeflow Declarative Pipelines (LDP) in Databricks to ingest customer data. The raw customer data is stored in a cloud storage location in JSON format. The task is to create Lakeflow Declarative Pipelines that read the raw JSON data and write it into a Delta table for further processing.
Which code snippet will correctly ingest the raw JSON data and create a Delta table using LDP?
  • Databricks-Certified-Data-Engineer-Associate Exam Question 17

    A data engineer needs to create a table in Databricks using data from their organization's existing SQLite database. They run the following command:
    CREATE TABLE jdbc_customer360
    USING
    OPTIONS (
    url "jdbc:sqlite:/customers.db", dbtable "customer360"
    )
    Which line of code fills in the above blank to successfully complete the task?
  • Databricks-Certified-Data-Engineer-Associate Exam Question 18

    A data engineer has a Python variable table_name that they would like to use in a SQL query. They want to construct a Python code block that will run the query using table_name.
    They have the following incomplete code block:
    ____(f"SELECT customer_id, spend FROM {table_name}")
    Which of the following can be used to fill in the blank to successfully complete the task?
  • Databricks-Certified-Data-Engineer-Associate Exam Question 19

    A data engineer has a single-task Job that runs each morning before they begin working. After identifying an upstream data issue, they need to set up another task to run a new notebook prior to the original task.
    Which of the following approaches can the data engineer use to set up the new task?
  • Databricks-Certified-Data-Engineer-Associate Exam Question 20

    A data engineer needs to create a table in Databricks using data from their organization's existing SQLite database.
    They run the following command:

    Which of the following lines of code fills in the above blank to successfully complete the task?