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

A data engineer is designing a system leveraging Lakeflow Declarative Pipeline technology to process real-time truck telemetry data ingested from JSON files in S3 using Auto Loader. The data includes truck_id, timestamp, location, speed, and fuel_level. The system must support two use cases:
- Near-real-time monitoring of the latest location, speed, and
fuel_level per truck_id for the operations team.
- Daily aggregated reports of total distance traveled and average fuel
efficiency per truck_id for the management team.
Which approach should the data engineer use for streaming tables and materialized views in the Lakeflow Declarative Pipeline to meet these requirements?
  • Databricks-Certified-Data-Engineer-Professional Exam Question 112

    A table named user_ltv is being used to create a view that will be used by data analysts on various teams. Users in the workspace are configured into groups, which are used for setting up data access using ACLs.
    The user_ltv table has the following schema:
    email STRING, age INT, ltv INT
    The following view definition is executed:

    An analyst who is not a member of the marketing group executes the following query:
    SELECT * FROM email_ltv
    Which statement describes the results returned by this query?
  • Databricks-Certified-Data-Engineer-Professional Exam Question 113

    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-Professional Exam Question 114

    Predictive Optimization is an automated Databricks service enabled by default for Unity Catalog Managed tables. It helps maintain Delta tables by continuously optimizing them to ensure optimal performance and costs. Which two operations does Predictive Optimization run to maintain the Delta tables? (Choose two.)
  • Databricks-Certified-Data-Engineer-Professional Exam Question 115

    A data engineer is using Lakeflow Declarative Pipeline to propagate row deletions from a source bronze table (user_bronze) to a target silver table (user_silver). The engineer wants deletions in user_bronze to automatically delete corresponding rows in user_silver during pipeline execution.
    Which configuration ensures deletions in the bronze table are propagated to the silver table?