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

The data governance team is reviewing user for deleting records for compliance with GDPR. The following logic has been implemented to propagate deleted requests from the user_lookup table to the user aggregate table.

Assuming that user_id is a unique identifying key and that all users have requested deletion have been removed from the user_lookup table, which statement describes whether successfully executing the above logic guarantees that the records to be deleted from the user_aggregates table are no longer accessible and why?
  • Databricks-Certified-Professional-Data-Engineer Exam Question 37

    The DevOps team has configured a production workload as a collection of notebooks scheduled to run daily using the Jobs UI. A new data engineering hire is onboarding to the team and has requested access to one of these notebooks to review the production logic.
    What are the maximum notebook permissions that can be granted to the user without allowing accidental changes to production code or data?
  • Databricks-Certified-Professional-Data-Engineer Exam Question 38

    A senior data engineer is planning large-scale data workflows. The task is to identify the considerations that form a foundation for creating scalable data models for managing large datasets. The team has listed Delta Lake capabilities and wants to determine which feature should not be considered as a core factor.
    Which key feature can be ignored while evaluating Delta Lake?
  • Databricks-Certified-Professional-Data-Engineer Exam Question 39

    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-Professional-Data-Engineer Exam Question 40

    The data engineering team maintains the following code:

    Assuming that this code produces logically correct results and the data in the source table has been de-duplicated and validated, which statement describes what will occur when this code is executed?