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

Although the Databricks Utilities Secrets module provides tools to store sensitive credentials and avoid accidentally displaying them in plain text users should still be careful with which credentials are stored here and which users have access to using these secrets.
Which statement describes a limitation of Databricks Secrets?
  • Databricks-Certified-Data-Engineer-Professional Exam Question 37

    A Delta Lake table representing metadata about content from user 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-Data-Engineer-Professional Exam Question 38

    Two of the most common data locations on Databricks are the DBFS root storage and external object storage mounted with dbutils.fs.mount().
    Which of the following statements is correct?
  • Databricks-Certified-Data-Engineer-Professional Exam Question 39

    A workspace admin has created a new catalog called finance_data and wants to delegate permission management to a finance team lead without giving them full admin rights. Which privilege should be granted to the finance team lead?
  • Databricks-Certified-Data-Engineer-Professional Exam Question 40

    Given the following PySpark code snippet in a Databricks notebook:
    filtered_df = spark.read.format("delta").load("/mnt/data/large_table")
    \
    .filter("event_date > '2024-01-01'")
    filtered_df.count()
    The data engineer notices from the Query Profiler that the scan operator for filtered_df is reading almost all files, despite the filter being applied.
    What is the probable reason for poor data skipping?