Databricks-Certified-Data-Engineer-Professional Exam Question 56

A member of the data engineering team has submitted a short notebook that they wish to schedule as part of a larger data pipeline. Assume that the commands provided below produce the logically correct results when run as presented.

Which command should be removed from the notebook before scheduling it as a job?
  • Databricks-Certified-Data-Engineer-Professional Exam Question 57

    A Databricks job has been configured with 3 tasks, each of which is a Databricks notebook. Task A does not depend on other tasks. Tasks B and C run in parallel, with each having a serial dependency on Task A.
    If task A fails during a scheduled run, which statement describes the results of this run?
  • Databricks-Certified-Data-Engineer-Professional Exam Question 58

    Review the following error traceback:

    Which statement describes the error being raised?
  • Databricks-Certified-Data-Engineer-Professional Exam Question 59

    A data engineer is building a Lakeflow Declarative Pipelines pipeline to process healthcare claims data. A metadata JSON file defines data quality rules for multiple tables, including:
    {
    "claims": [
    {"name": "valid_patient_id", "constraint": "patient_id IS NOT NULL"},
    {"name": "non_negative_amount", "constraint": "claim_amount >= 0"}
    ]
    }
    The pipeline must dynamically apply these rules to the claims table without hardcoding the rules.
    How should the data engineer achieve this?
  • Databricks-Certified-Data-Engineer-Professional Exam Question 60

    A data engineer created a daily batch ingestion pipeline using a cluster with the latest DBR version to store banking transaction data, and persisted it in a MANAGED DELTA table called prod.gold.all_banking_transactions_daily. The data engineer is constantly receiving complaints from business users who query this table ad hoc through a SQL Serverless Warehouse about poor query performance. Upon analysis, the data engineer identified that these users frequently use high- cardinality columns as filters. The engineer now seeks to implement a data layout optimization technique that is incremental, easy to maintain, and can evolve over time. Which command should the data engineer implement?