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

The data engineer team is configuring environment for development testing, and production before beginning migration on a new data pipeline. The team requires extensive testing on both the code and data resulting from code execution, and the team want to develop and test against similar production data as possible.
A junior data engineer suggests that production data can be mounted to the development testing environments, allowing pre production code to execute against production dat a. Because all users have Admin privileges in the development environment, the junior data engineer has offered to configure permissions and mount this data for the team.
Which statement captures best practices for this situation?
  • Databricks-Certified-Professional-Data-Engineer Exam Question 32

    To reduce storage and compute costs, the data engineering team has been tasked with curating a series of aggregate tables leveraged by business intelligence dashboards, customer-facing applications, production machine learning models, and ad hoc analytical queries.
    The data engineering team has been made aware of new requirements from a customer-facing application, which is the only downstream workload they manage entirely. As a result, an aggregate table used by numerous teams across the organization will need to have a number of fields renamed, and additional fields will also be added.
    Which of the solutions addresses the situation while minimally interrupting other teams in the organization without increasing the number of tables that need to be managed?
  • Databricks-Certified-Professional-Data-Engineer Exam Question 33

    The data engineer is using Spark's MEMORY_ONLY storage level.
    Which indicators should the data engineer look for in the spark UI's Storage tab to signal that a cached table is not performing optimally?
  • Databricks-Certified-Professional-Data-Engineer Exam Question 34

    A Delta Lake table representing metadata about content posts from users has the following schema:
    user_id LONG
    post_text STRING
    post_id STRING
    longitude FLOAT
    latitude FLOAT
    post_time TIMESTAMP
    date DATE
    Based on the above schema, which column is a good candidate for partitioning the Delta Table?
  • Databricks-Certified-Professional-Data-Engineer Exam Question 35

    A facilities-monitoring team is building a near-real-time PowerBI dashboard off the Delta table device_readings:
    Columns:
    device_id (STRING, unique sensor ID)
    event_ts (TIMESTAMP, ingestion timestamp UTC)
    temperature_c (DOUBLE, temperature in °C)
    Requirement:
    For each sensor, generate one row per non-overlapping 5-minute interval, offset by 2 minutes (e.g., 00:02-00:07, 00:07-00:12, ...).
    Each row must include interval start, interval end, and average temperature in that slice.
    Downstream BI tools (e.g., Power BI) must use the interval timestamps to plot time-series bars.
    Options: