ExamTopics Flashcards

1
Q

1) A data organization leader is upset about the data analysis team’s reports being different from the data engineering team’s reports. The leader believes the siloed nature of their organization’s data engineering and data analysis architectures is to blame. Which of the following describes how a data lakehouse could alleviate this issue?

  1. Both teams would autoscale their work as data size evolves
  2. Both teams would use the same source of truth for their work
  3. Both teams would reoganize to report to the same department
  4. Both teams would be able to collaborate on projects in real-time
  5. Both teams would repond more quickly to ad-hoc requests
A

Both teams would use the same source of truth for their work

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

2) Which of the following describes a scenario in which a data team will want to utilize cluster pools?

  1. An automated report needs to be refreshed as quickly as possible
  2. An automated report needs to be made reproducible
  3. An automated report needs to be tested to identify errors
  4. An automated report needs to be version-controlled across multiple collaborators
  5. An automated report needs to be runnable by all stakeholders
A

An automated report needs to be refreshed as quickly as possible

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

3) Which of the following is hosted completely in the control plane of the classic Databricks architecture?

  1. Worker node
  2. JDBC data source
  3. Databricks web application
  4. Databricks Filesystem
  5. Driver node
A

Databricks web application

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

4) Which of the following benefits of using the Databricks Lakehouse Platform is provided by Delta Lake?

  1. The ability to manipulate the same data using a variety of languages
  2. The ability to collaborate in real time on a single notebook
  3. The ability to set up alerts for query failures
  4. The ability to support batch and streaming workloads
  5. The ability to distribute complex data operations
A

The ability to support batch and streaming workloads

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

5) Which of the following describes the storage organization of a Delta table?

  1. Delta tables are stored in a single file that contains data, history, metadata, and other attributes
  2. Delta tables store their data in a single file and all metadata in a collection of files in a separate location
  3. Delta tables are stored in a collection of files that contain data, history, metadata, and other attributes
  4. Delta tables are stored in a collection of files that contain only the data stored within the table
  5. Delta tables are stored in a single file that contains only the data stored within the table
A

Delta tables are stored in a collection of files that contain data, history, metadata, and other attributes

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

6) Which of the following code blocks will remove the rows where the value in column age is greater than 25 from the existing Delta table my_table and save the updated table?

1. SELECT * FROM my_table WHERE age > 25;
2. UPDATE my_table WHERE age > 25;
3. DELETE FROM my_table WHERE age > 25;
4. UPDATE my_table WHERE age <= 25;
5. DELETE FROM my_table WHERE age <= 25;
A
DELETE FROM my_table WHERE age > 25;
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

7) A data engineer has realized that they made a mistake when making a daily update to a table. They need to use Delta time travel to restore the table to a version that is 3 days old. However, when the data engineer attempts to time travel to the older version, they are unable to restore the data because the data files have been deleted. Which of the following explains why the data files are no longer present?

  1. The VACUUM command was run on the table
  2. The TIME TRAVEL command was run on the table
  3. The DELETE HISTORY command was run on the table
  4. The OPTIMIZE command was run on the table
  5. The HISTORY command was run on the table
A

The VACUUM command was run on the table

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

8) Which of the following Git operations must be performed outside of Databricks Repos?

  1. commit
  2. pull
  3. push
  4. clone
  5. merge
A

merge

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

9) Which of the following data lakehouse features results in improved data quality over a traditional data lake?

  1. A data lakehouse provides storage solutions for structured and unstructured data
  2. A data lakehouse supports ACID-compliant transactions
  3. A data lakehouse allows the use of SQL queries to examine data
  4. A data lakehouse stores data in open formats
  5. A data lakehouse enables ML and AI workloads
A

A data lakehouse supports ACID-compliant transactions

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

10) A data engineer needs to determine wheter to use the built-in Databricks Notebooks versioning or version their project using Databricks Repos. Which of the following is an advantage of using Databricks Repos over the Databricks Notebooks versioning?

  1. Databricks Repos automatically saves development progress
  2. Databricks Repos supports the use of multiple branches
  3. Databricks Repos allow users to revert to previous versions of a notebook
  4. Databricks Repos provides the ability to comment on specific changes
  5. Databricks Repos is wholly housed within the Databricks Lakehouse Platform
A

Databricks Repos supports the use of multiple branches

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

11) A data engineer has left the organization. The data team needs to transfer ownership of the data engineer’s Delta tables to a new data engineer. The new data engineer is the lead engineer on the data tem.
Assuming the original data engineer no longer has access, which of the folloing individuals must be the one to transfer ownership of hte delta tables in Data Explorer?

  1. Databricks account representative
  2. This transfer is not possible
  3. Workspace administrator
  4. New lead data engineer
  5. Original data engineer
A

Workspace administrator

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

12) A data analyst has created a Delta table sales that is used by the entire data analysis team. They want help from the data engineering team to implement a series of tests to ensure the data is clean. However, the data engineering team uses Python for its tests rather than SQL. Which of the following commands could the data engineering team use to access sales in PySpark?

1. SELECT * FROM sales
2. There is no way to share data between PySpark and SQL
3. spark.sql("sales")
4. spark.delta.table("sales")
5. spark.table( "sales")
A

spark.table('sales')

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

13) Which of the following commands will return the location of database customer360?

1. DESCRIBE LOCATION customer360;
2. DROP DATABASE customer360;
3. DESCRIBE DATABASE customer360;
4. ALTER DATABASE customer360 SET DBPROPERTIES ('location' = '/user');
5. USE DATABASE customer360;
A
DESCRIBE DATABASE customer360;
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

14) A data engineer wants to create a new table containing the names of customers that live in France. They have written the folling command:

CREATE TABLE customersInFrance \_\_\_\_\_ AS
SELECT id, firstName, lastName
FROM customerLocations
WHERE country = 'FRANCE'

A senior data engineer mentions that it is organization policy to include a table property indicating that the new table includes personally identifiable information (PII). Which of the following lines of code fills in the above black to sucessfully complete the task?

1. There is no way to indicate wheter a table contains PII.
2. "COMMENT PII"
3. TBLPROPERTIES PII
4. COMMENT "Contains PII"
5. PII
A
COMMENT "Contains PII"
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

16) Which of the following commands can be used to write data into a Delta table while avoiding the witting of duplicate records?

  1. DROP
  2. IGNORE
  3. MERGE
  4. APPEND
  5. INSERT
A

MERGE

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q

15) Which fo the following benefits is provided by the arrays functions from Spark SQL?

  1. An ability to work with data in a variety of types at once
  2. An ability to work with data within certain partitions and windows
  3. An ability to work with time-related data in specified intervals
  4. An ability to work with complex, nested data ingested from JSON files
  5. An ability to work with an array of tables for procedural automation
A

An ability to work with complex, nested data ingested from JSON files

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
17
Q

17) A data engineer needs to apply custom logic to string column city in table stores for a specific use case. In order to apply this custom logic at scale, the data engineer wants t ocreate a SQL user-defined function (UDF). Which of the following code blocks creates this SQL UDF?

CREATE FUNCTION combine_nyc (city STRING)
RETURNS STRING
RETURN CASE
WHEN city = "brooklyn" THEN "new york"
ELSE city
END;
CREATE UDF combine_nyc (city STRING)
RETURNS STRING
CASE
WHEN city = "brooklyn" THEN "new york"
ELSE city
END;
CREATE UDF combine_nyc (city STRING)
RETURN CASE
WHEN city = "brooklyn" THEN "new york"
ELSE city
END;
CREATE FUNCTION combine_nyc (city STRING)
RETURN CASE
WHEN city = "brooklyn" THEN "new york"
ELSE city
END;
CREATE UDF combine_nyc (city STRING)
RETURNS STRING
RETURN CASE
WHEN city = "brooklyn" THEN "new york"
ELSE city
END;
A
CREATE *FUNCTION* combine_nyc (city STRING)
RETURNS STRING
RETURN CASE
WHEN city = "brooklyn" THEN "new york"
ELSE city
END;
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
18
Q

18) A data analyst has a series of queries in a SQL program. The data analyst wants this program to run every day. They only want the final query in the program to run on Sundays. They ask for help from the data engineering team to complete this task. Which of the following approaches could be used by the data enginering team to complete this task?

  1. They could submit a feature request with Databricks to add this functionality
  2. They could wrap the queries using PySpark and use Python’s control flow system to determine when to run the final query.
  3. They could only run the entire program on Sundays
  4. They could automatically restrict access to the source table in the final query so that it is only accesible on Sundays.
  5. They could redesign the data model to separate the data used in the final query into a new table
A

They could wrap the queries using PySpark and use Python’s control flow system to determine when to run the final query.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
19
Q

19) A data engineer runs a statement every day to copy the previous day’s sales into the table transactions. Each day’s sales are in their own file in the location “/transactions/raw”. Today, the data engineer runs the following command to complete this task:

COPY INTO transactions
FROM "/transactions/raw"
FILEFORMAT = PARQUET;

After running the command today, the data engineer notices that the number of records in table transactions has not changed. Which of the following describes why the statement might not have copied any new records into the table?

A. The format of the files to be copied were not included with the FORMAT_OPTIONS keyword.
B. The names of the files to be copied were not included with the FILES keyword.
C. The previous day’s file has already been copied into the table.
D. The PARQUET file format does not support COPY INTO.
E. The COPY INTO statement requires the table to be refreshed to view the copied rows.

A

The previous day’s file has already been copied into the table

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
20
Q

20) A data engineer needs to create a table in Databricks using data from their organization’s existing SQLite database. They run the following command:

CREATE TABLE jdbc_customer360
USING \_\_\_\_
OPTIONS (
	url "jdbc:sqlite:/customers.db",
	dbtable "customer360"

Which of the following lines of code fills in the above black to successfully complete the task?

  1. org.apache.spark.sql.jdbc
  2. autoloader
  3. DELTA
  4. sqlite
  5. org.apache.spark.sql.sqlite
A

org.apache.spark.sql.jdbc

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
21
Q

21) A data engineering team has two tables. The first table march_transactions is a collection of all retail transactions in the month of March. The second table april transactions is a collection of all retail transactions in the month of April. There are no duplicate records between the tables. Which of the following commands should be run to create a new table all_transactions that contains from march_transactions and april_transactions without duplicate records?

A. CREATE TABLE all_transactions AS
   SELECT * FROM march_transactions
   INNER JOIN SELECT * FROM april_transactions;

B. CREATE TABLE all_transactions AS
   SELECT * FROM march_transactions
   UNION SELECT * FROM april_transactions;

C. CREATE TABLE all_transactions AS
   SELECT * FROM march_transactions
   OUTER JOIN SELECT * FROM april_transactions;

D. CREATE TABLE all_transactions AS
   SELECT * FROM march_transactions
   INTERSECT SELECT * FROM april_transactions;

E. CREATE TABLE all_transactions AS
   SELECT * FROM march_transactions
	 MERGE SELECT * FROM april_transactions;
A
CREATE TABLE all_transactions AS
SELECT * FROM march_transactions
UNION SELECT * FROM april_transactions;
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
22
Q

22) A data engineer only wants to execute the final block of a Python program if the Python variable day_of_week is equal to 1 and the Python variable review_period is True. Which of the following control flow statements should the data engineer use to begin this conditionally executed code block?

A. if day_of_week = 1 and review_period:

B. if day_of_week = 1 and review_period = "True";

C. if day_of_week == 1 and review_period == "True";

D. if day_of_week == 1 and review_period:

E. if day_of_week = 1 & review_period: = "True";
A

if day_of_week == 1 and review_period

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
23
Q

23) A data engineer is attempting to drop a Spark SQL table my_table. The data engineer wnats to delete all table metadata and data. They run the following command:

DROP TABLE IF EXISTS my_table

While the object no longer appears when they run SHOW TABLES, the data files still exist. Which of the following describes why the data files still exist and the metadata files were deteled?

  1. The table’s data was larger than 10 GB
  2. The table’s data was smaller than 10 GB
  3. The table was external
  4. The table did not have a location
  5. The table was managed
A

The table was external

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
24
Q

24) A data engineer wants to create a data entity from a couple of tables. The data entity must be used by other data engineers in other sessions. It also must be saved to a physical location.
Which of the following data entities should the data engineer create?

  1. Database
  2. Function
  3. View
  4. Temporary view
  5. Table
A

Table

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
25
Q

25) A data engineer is maintaining a data pipeline. Upon data ingestion, the data engineer notices that the source data is starting to have a lower level of quality. The data engineer would like to automate the process of monitoring the quality level. Which of the following tools can the data engineer use to solve this problem?

  1. Unity Catalog
  2. Data Explorer
  3. Delta Lake
  4. Delta Live Tables
  5. Auto Loader
A

Delta Live Tables

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
26
Q

26) A Delta Live Table pipeline includes two datasets defined using STREAMING LIVE TABLE. Three datasets are defined against Delta Lake table sources using LIVE TABLE. The table is configured to run in Production mode using the Continuous Pipeline Mode. Assuming previously unprocessed data exists and all definitions are valid, what is the expected outcome after clicking Start to update the pipeline?

  1. All datasets will be updated at set intervals until the pipeline is shut down. The compute resources will persist to allow for additional testing.
  2. All datasets will be updated once and the pipeline will persist without any processing. The compute resources will persist but go unused.
  3. All datasets will be updated at set intervals until the pipeline is shut down. The compute resources will be deployed for the update and terminated when the pipeline is stopped.
  4. All datasets will be updated once and the pipeline will shut down. The compute resources will be terminated.
  5. All datasets will be updated once and the pipeline will shut down. The compute resources will persist to allow for additional testing.
A

All datasets will be updated at set intervals until the pipeline is shut down. The compute resources will be deployed for the update and terminated when the pipeline is stopped

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
27
Q

27) In order for Structured Streaming to reliably track the exact progress of the processing so that it can handle any kind of failure by restaring and/or reprocessing, which of the following two approaches is used by Spark to record the offset range of the data being processed in each trigger?

  1. Checkpointing and Write-ahead Logs
  2. Structured Streaming cannot record the offset range of the data being processed in each trigger.
  3. Recycle/Reuse sources and Idempotent Sinks.
  4. Write-ahead Logs and Idempotent Sinks.
  5. Checkpointing and Idempotent Sinks.
A

Checkpointing and Write-ahead Logs

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
28
Q

28) Which of the following describes the relationship between Gold tables and Silver tables?

  1. Gold tables are more likely to contain aggregations than Silver tables.
  2. Gold tables are more likely to contain valuable data than Silver tables.
  3. Gold tables are more likely to contain a less refined view of data than Silver tables.
  4. Gold tables are more likely to contain more data than Silver tables.
  5. Gold tables are more likely to contain truthful data than Silver tables.
A

Gold tables are more likely to contain aggregations than Silver tables

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
29
Q

29) Which of the following describes the relationship between Bronze tables and raw data?

  1. Bronze tables contain less data than raw data files.
  2. Bronze tables contain more truthful data than raw data.
  3. Bronze tables contain aggregates while raw data is unaggregated.
  4. Bronze tables contain a less refined view of data than raw data.
  5. Bronze tables contain raw data with a schema applied.
A

Bronze tables contain raw data with a schema applied

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
30
Q

30) Which of the following tools is used by Auto Loader to process data incrementally?

  1. Checkpointing.
  2. Spark Structured Streaming.
  3. Data Explorer.
  4. Unity Catalog.
  5. Databricks SQL.
A

Spark Structured Streaming

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
31
Q

31) A data engineer has configured a Structured Streaming job to read from a table, manipulate the data, and then perform a streaming write into a new table. The code block used by the data engineer is below:

spark.table("sales")
	.withColumn("avg_price", col("sales) / col("units"))
	.writeStream
	.option("checkpointLocation", checkpointPath)
	.outputMode("complete")
	.\_\_\_\_\_\_\_\_
	.table("new_sales")
	

If the data engineer only wants the query to execute a micro-batch to process data every 5 seconds, which of the following lines of code should the data engineer use to fill in the blank?

  1. trigger(“5 seconds”)
  2. trigger()
  3. trigger(once=”5 seconds”)
  4. trigger(processingTime=”5 seconds”)
  5. trigger(continous=”5”)
A

trigger(processingTime=”5 seconds”)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
32
Q

32) A dataset has been defined using Delta Live Tables and includes an expectations clause:

CONSTRAINT valid_timestamp EXPECT (timestamp > '2020-01-01') ON VIOLATION DROP ROW

What is the expected behaviour when a batch of data containing data what violates these constraints is processed?

  1. Records that violate the expectation are dropped from the target dataset and loaded into a quarantine table.
  2. Records that violate the expectation are added to the target dataset and flagged as invalid in a field added to the target dataset.
  3. Records that violate the expectation are dropped from the target dataset and recorded as invalid in the event log.
  4. Records that violate the expectation are added to the target dataset and recorded as invalid in the event log.
  5. Records that violate the expectation cause the job to fail.
A

Records that violate the expectation are dropped from the target dataset and recorded as invalid in the event log

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
33
Q

33) Which of the following describes when to use the CREATE STREAMING LIVE TABLE (formerly CREATE INCREMENTAL LIVE TABLE) syntax over the CREATE LIVE TABLE syntax when creating Delta Live Tables (DLT) tables using SQL?

  1. CREATE STREAMING LIVE TABLE should be used when the subsequent step in the DLT pipeline is static.
  2. CREATE STREAMING LIVE TABLE should be used when data needs to be processed incrementally.
  3. CREATE STREAMING LIVE TABLE is redundant for DLT and does not need to be used.
  4. CREATE STREAMING LIVE TABLE should be used when data needs to be processed through complicated aggregations.
  5. CREATE STREAMING LIVE TABLE should be used when the previous step in the DLT pipeline is static.
A

CREATE STREAMING LIVE TABLE should be used when data needs to be processed incrementally

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
34
Q

34) A data engineer is designing a data pipeline. The source system generates files in a shared directory that is also used by other processes. As a result, the files should be kept as is and will accumulate in the directory. The data engineer needs to identify which files are new since the previous run in the pipeline, and set up the pipeline to only ingest those new files with each run. Which of the following tools can the data engineer use to solve this problem?

  1. Unity Catalog
  2. Delta Lake
  3. Databricks SQL
  4. Data Explorer
  5. Auto Loader
A

Auto Loader

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
35
Q

35) Which of the following Structured Streaming queries is performing a hop from a Silver table to a Gold table?

spark.readStream.load(rawSalesLocation)
  .writeStream
  .option("checkpointLocation", checkpointPath)
  .outputMode("append")
  .table("newSales")
spark.read.load(rawSalesLocation)
  .writeStream
  .option("checkpointLocation", checkpointPath)
  .outputMode("append")
  .table("newSales")
spark.table("sales")
  .withColumn("avgPrice", col("sales") / col("units"))
  .writeStream
  .option("checkpointLocation", checkpointPath)
  .outputMode("append")
  .table("newSales")
spark.table("sales")
  .filter(col("units") > 0)
  .writeStream
  .option("checkpointLocation", checkpointPath)
  .outputMode("append")
  .table("newSales")
spark.table("sales")
  .groupBy("store")
  .agg(sum("sales"))
  .writeStream
  .option("checkpointLocation", checkpointPath)
  .outputMode("complete")
  .table("newSales")
A
5. spark.table("sales")
	.groupby("store")
	.agg(sum("sales"))
	.writeStream
	.option("checkpointLocation", checkpointPath)
	.outputMode("complete")
	.table("newSales")
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
36
Q

36) A data engineer has three tables in a Delta Live Tables (DLT) pipeline. They have configured the pipeline to drop invalid records at each table. They notice that some data is being dropped due to a quality concerns at some point in the DLT pipeline. They would like to determine at which table in their pipeline the data is being dropped. Which of the following approaches can the data engineer take to identify the table that is dropping the records?

  1. They can set up separate expectations for each table when developing their DLT pipeline.
  2. They cannot determine which table is dropping the records.
  3. They can set up ETL job retry when all weak records are dropped.
  4. They can navigate to the DLT pipeline page, click on each live table, and view data quality statistics.
  5. They can navigate to the DLT pipeline page, click on the “Error” button, and review the present errors.
A

They can navigate to the DLT pipeline page, click on each table, an view the data quality statistics

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
37
Q

37) A data engineer has a single-task Job that runs each morning before they begin working. After identifying an upstream data issue, they need to set up another task to run a new notebook prior to the original task. Which of the following approaches can the data engineer use to set up the new task?

  1. They can clone the existing task in the existing Job and update it to run the new notebook.
  2. They can create a new task in the existing Job and add it as a dependency of the original task.
  3. They can create a new task in the existing Job and set the original task as a dependency of the new task.
  4. They can create a new job from scratch and add both tasks to run concurrently.
  5. They can clone the existing task to a new Job and then edit it to run the new notebook.
A

They can create a new task in the existing Job and add it as a dependency of the original task.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
38
Q

38) An engineering manager wants to monitor the performance of a recent project using a Databricks SQL query. For the first week following the project’s release, the manager wants the query results to be updated every minute. However, the manager is concerned that the compute resources used for the query will be left running and cost the organization a lot of money beyond the first week of the project’s release. Which of the following approaches can the engineering team use to ensure the query does not cost the organization any money beyond the first week of the project’s release?

  1. They can set a limit to the number of DBUs that are consumed by the SQL Endpoint.
  2. They can set the query’s refresh schedule to end after a certain number of refreshes.
  3. They cannot ensure the query does not cost the organization money beyond the first week of the project’s release.
  4. They can set a limit to the number of individuals that are able to manage the query’s refresh schedule.
  5. They can set the query’s refresh schedule to end on a certain date in the query scheduler
A

They can set the query’s refresh schedule to end on a certain date in the query scheduler

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
39
Q

39) A data analysis team has noticed that their Databricks SQL queries are running too slowly when connected to their always-on SQL endpoint. They claim that this issue is present when many members of the team are running small queries simultaneously. They ask the data engineering team for help. The data engineering team notices that each of the team’s queries uses the same SQL endpoint. Which of the following approaches can the data engineering team use to improve the latency of the team’s queries?

  1. They can increase the cluster size of the SQL endpoint.
  2. They can increase the maximum bound of the SQL endpoint’s scaling range.
  3. They can turn on the Auto Stop feature for the SQL endpoint.
  4. They can turn on the Serverless feature for the SQL endpoint.
  5. They can turn on the Serverless feature for the SQL endpoint and change the Spot Instance Policy to “Reliability Optimized.”
A

They can increase the maximum bound of the SQL endpoint’s scaling range.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
40
Q

40) A data engineer wants to schedule their Databricks SQL dashboard to refresh once per day, but they only want the associated SQL endpoint to be running when it is necessary. Which of the following approaches can the data engineer use to minimize the total running time of the SQL endpoint used in the refresh schedule of their dashboard?

  1. They can ensure the dashboard’s SQL endpoint matches each of the queries’ SQL endpoints.
  2. They can set the dashboard’s SQL endpoint to be serverless.
  3. They can turn on the Auto Stop feature for the SQL endpoint.
  4. They can reduce the cluster size of the SQL endpoint.
  5. They can ensure the dashboard’s SQL endpoint is not one of the included query’s SQL endpoints.
A

They can turn on the Auto Stop Feature for the SQL endpoint

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
41
Q

41) A data engineer has been using a Databricks SQL dashboard to monitor the cleanliness of the input data to an ELT job. The ELT job has its Databricks SQL query that returns the number of input records containing unexpected NULL values. The data engineer wants their entire team to be notified via a messaging webhook whenever this value reaches 100. Which of the following approaches can the data engineer use to notify their entire team via a messaging webhook whenever the number of NULL values reaches 100?

  1. They can set up an Alert with a custom template.
  2. They can set up an Alert with a new email alert destination.
  3. They can set up an Alert with a new webhook alert destination.
  4. They can set up an Alert with one-time notifications.
  5. They can set up an Alert without notifications.
A

They can set up an Alert with a new webhook alert destination.

42
Q

42) A single Job runs two notebooks as two separate tasks. A data engineer has noticed that one of the notebooks is running slowly in the Job’s current run. The data engineer asks a tech lead for help in identifying why this might be the case. Which of the following approaches can the tech lead use to identify why the notebook is running slowly as part of the Job?

  1. They can navigate to the Runs tab in the Jobs UI to immediately review the processing notebook.
  2. They can navigate to the Tasks tab in the Jobs UI and click on the active run to review the processing notebook.
  3. They can navigate to the Runs tab in the Jobs UI and click the active run to review the processing notebook.
  4. There is no way to determine why a Job is running slowly.
  5. They can navigate to the Tasks tab in the Jobs UI to immediately review the processing notebook.
A

They can navigate to the Runs tab in the Jobs UI and click on the active run to review the processing notebook

43
Q

43) A data engineer has a Job with multiple tasks that runs nightly. Each of the tasks runs slowly because the clusters take a long time to start. Which of the following actions can the data engineer perform to improve the start up time for the clusters used for the job?

  1. They can use endpoints available in Databricks SQL.
  2. They can use job clusters instead of all-purpose clusters.
  3. They can configure the clusters to be single-node.
  4. They can use clusters that are from a cluster pool.
  5. They can configure the clusters to autoscale for larger data sizes.
A

They can use clusters that are from a cluster pool

44
Q

44) A new data engineering team has ben assigned to an ELT project. They new data engineering team will need full privileges on the database customers to fully manage the project. Which of the following commands can be used to gran full permissions on the database to the new data engineering team?

1. GRANT USAGE ON DATABASE customers TO team;  
2. GRANT ALL PRIVILEGES ON DATABASE team TO customers;  
3. GRANT SELECT PRIVILEGES ON DATABASE customers TO team;  
4. GRANT SELECT CREATE MODIFY USAGE PRIVILEGES ON DATABASE customers TO team;  
5. GRANT ALL PRIVILEGES ON DATABASE customers TO team;  
A

GRANT ALL PRIVILEGES ON DATABASE customers TO team

45
Q

45) A new data engineering team has been assigned to work on a project. The team will need access to a database customers in order to see what tables already exist. The team has its own group team Which of the following commands can be used to grant the necessary permission on the entire database to the new team?

1. GRANT VIEW ON CATALOG customers TO team;  
2. GRANT CREATE ON DATABASE customers TO team;  
3. GRANT USAGE ON CATALOG TO team;  
4. GRANT CREATE ON DATABASE team TO customers;  
5. GRANT USAGE ON DATABASE customers TO team;  
A

GRANT USAGE ON DATABASE customers TO team

46
Q

46) A data engineer is running code in a Databricks Repo that is cloned from a central Git repository. A colleague of the data engineer informs them that changes have been made and synced to the central Git repository. The data engineer now needs to sync their Databricks Repo to get the changes from the central Git repository. Which of the following Git operations does the data engineer need to run to accomplish this task?

  1. Merge
  2. Push
  3. Pull
  4. Commit
  5. Clone
47
Q

47) Which of the following is a benefit of the Databricks Lakehouse Platform embracing open ource technologies?

  1. Cloud specific integrations
  2. Simplified governance
  3. Ability to store backups
  4. Ability to scale workloads
  5. Avoiding vendor lock-in
A

Avoiding vendor lock-in

48
Q

48) A data engineer needs to use a Delta table as part of a data pipeline, but they do not know if they have the appropriate permissions. In which of the following locaitons can the data engineer, review their permissions on the table?

  1. Databricks Filesystem
  2. Jobs
  3. Dashboards
  4. Repos
  5. Data Explorer
A

Data Explorer

49
Q

49) Which of the following describes a scenario in which a data engineer want to use a single-node cluster?

  1. When they are working interactively with a small amount of data
  2. When they are running automated reports to be refreshed as quickly as possible
  3. When they are working with SQL within Databricks SQL
  4. When they are concerned about the ability to automatically scale with larger data
  5. When they are manually running reports with a large amount of data
A

When they are working interactively with a small amount of data

50
Q

50) A data engineer has been given a new record of data:

id STRING = 'a1'
rank INTEGER = 6
rating FLOAT = 9.4

Which of the following SQL commands can be used to append the new record to an existing Delta table my_table?

1. INSERT INTO my_table VALUES ('a', 6, 9.4);  
2. my_table UNION VALUE ('a', 6, 9.4);  
3. INSERT VALUES ('a', 6, 9.4) INTO my_table  
4. UPDATE my_table VALUES ('a', 6, 9.4);  
5. UPDATE VALUES ('a', 6, 9.4) my_table  
A

INSERT INTO my_table VALUES('a1', 6, 9.4)

51
Q

51) A data engineer has realized that the data files associated with a Delta table are incredible small. They want to compact the small files to form larger files to imprive performance. Which of the following keywords can be used to comapct the small files?

  1. REDUCE
  2. OPTIMIZE
  3. COMPACTION
  4. REPARTITION
  5. VACUUM
52
Q

52) In which of the following file formats is data from Delta Lake tables primarily stored?

  1. Delta
  2. CSV
  3. Parquet
  4. JSON
  5. A proprietary, optimized format specific to Databricks
53
Q

53) Which of the following is stored in the Databricks customer’s cloud account?

  1. Databricks web application
  2. Cluster management metadata
  3. Repos
  4. Data
  5. Notebooks
54
Q

54) Which of the following can be used to simplify and unify siloed data architectures that are specialized for specific use cases?

  1. None of these
  2. Data lake
  3. Data warehouse
  4. All of these
  5. Data lakehouse
A

Data lakehouse

55
Q

55) A data architect has determined that a table of the following format is neccesary

employeeId   startDate   avgRating  
a1           2009-01-06    5.5  
a2           2018-11-21    7.1  

Which of the following code blocks uses SQL DDL commands to create an empty Delta table in the above format regardless of wheter a table already exists with this name?

1. CREATE TABLE IF NOT EXISTS table_name (  
     employeeId STRING,  
     startDate DATE,  
     avgRating FLOAT  
   )  
2. CREATE OR REPLACE TABLE table_name AS  
   SELECT  
     employeeId STRING,  
     startDate DATE,  
     avgRating FLOAT  
   USING DELTA  
3. CREATE OR REPLACE TABLE table_name WITH COLUMNS (  
     employeeId STRING,  
     startDate DATE,  
     avgRating FLOAT  
   ) USING DELTA  
4. CREATE TABLE table_name AS  
   SELECT  
     employeeId STRING,  
     startDate DATE,  
     avgRating FLOAT  
5. CREATE OR REPLACE TABLE table_name (  
     employeeId STRING,  
     startDate DATE,  
     avgRating FLOAT  
   )  
A
CREATE OR REPLACE TABLE table_name (
	employeeId STRING,
	startDate DATE,
	avgRating FLOAT
)
56
Q

56) A data engineer has a Python notebook in Databricks, but they need to use SQL to accomplish a specific task within a cell. They still want all of the other cells to use Python without making any changes to those cells. Which of the following describes how the data engineer can use SQL within a cell of their Python notebook?

  1. It is not possible to use SQL in a Python notebook.
  2. They can attach the cell to a SQL endpoint rather than a Databricks cluster.
  3. They can simply write SQL syntax in the cell.
  4. They can add %sql to the first line of the cell.
  5. They can change the default language of the notebook to SQL.
A

They can add %sql to the first line of the cell

57
Q

57) Which of the following SQL keywords can be used to convert a table from a long format to a wide format?

  1. TRANSFORM
  2. PIVOT
  3. SUM
  4. CONVERT
  5. WHERE
58
Q

58) Which of the following describes a benefit of creating an external table from Parquet rather than CSV when using a CREATE TABLE AS SELECT statement?

  1. Parquet files can be partitioned
  2. CREATE TABLE AS SELECT statements cannot be used on files
  3. Parquet files have a well-defined schema
  4. Parquet files have the ability to be optimized
  5. Parquet files will become Delta tables
A

Parquet files can be partitioned

Yo creo que también puede ser 3

59
Q

59) A data engineer is working with two tables. Each of these tables is displayed below in its entirety.

sales

customer_id    spend    units  
a1            28.94       7  
a3           874.12      23  
a4             8.99       1  

favorite_stores

customer_id    store_id  
a1             s1  
a2             s1  
a4             s2  

The data engineer runs the following query yo join these tables together:

SELECT 
	sales.customer_id
	sales.spend,
	favorite_stores.store_id
FROM sales
LEFT JOIN favorite_stores
ON sales.customer_id = favorite_stores.customer_id

Which of the following will be returned by the above query?

1.  
   customer_id   spend   store_id  
   a1            28.94       s1  
   a4             8.99       s2  

2.  
   customer_id   spend   units   store_id  
   a1            28.94      7       s1  
   a4             8.99      1       s2  

3.  
   customer_id   spend   store_id  
   a1            28.94       s1  
   a3           874.12      NULL  
   a4             8.99       s2  

4.  
   customer_id   spend   store_id  
   a1            28.94       s1  
   a2             NULL       s1  
   a3           874.12      NULL  
   a4             8.99       s2  

5.  
   customer_id   spend   store_id  
   a1            28.94       s1  
   a2             NULL       s1  
   a4             8.99       s2  
A
   customer_id   spend   store_id  
   a1            28.94       s1  
   a3           874.12      NULL  
   a4             8.99       s2  
60
Q

60) A data analyst has developed a query that runs agains Delta table. They want help from the data engineering team to implement a series of tests to ensure the data returned by the query is clean. However, the data engineering team uses Python for its tests rather than SQL.
Which of the following operations could the data engineering team use to run the query and operate with the results in PySpark?

1. SELECT * FROM sales
2. spark.delta.table
3. spark.sql
4. There is no way to share data between PySpark and SQL
5. spark.table
61
Q

61) Which of the following commands will return the number of null values in the member_id column?

1. SELECT count(member_id) FROM my_table;
2. SELECT count(member_id) - count_null(member_id) FROM my_table;
3. SELECT count_if(member_id IS NULL) FROM my_table;
4. SELECT null(member_id) FROM my_table;
5. SELECT count_null(member_id) FROM my_table;
A

SELECT count_if(member_id IS NULL) FROM my_table

62
Q

62) A data engineer needs to apply custom logic to identify employees with more than 5 years of experience in array column employees in table stores. The custom logic should create a new column exp_employees that is an array of all of the employees with more than 5 years of experience for each row. In order to apply this custom logic at scale, the data engineer wants to use the FILTER higher-order function. Which of the following code blocks successfully completes this task?

1. SELECT  
      store_id,  
      employees,  
      FILTER(employees, i -> i.years_exp > 5) AS exp_employees  
   FROM stores;  

2. SELECT  
      store_id,  
      employees,  
      FILTER(exp_employees, years_exp > 5) AS exp_employees  
   FROM stores;  

3. SELECT  
      store_id,  
      employees,  
      FILTER(employees, years_exp > 5) AS exp_employees  
   FROM stores;  

4. SELECT  
      store_id,  
      employees,  
      CASE WHEN employees.years_exp > 5 THEN employees  
           ELSE NULL  
      END AS exp_employees  
   FROM stores;  

5. SELECT  
      store_id,  
      employees,  
      FILTER(exp_employees, i -> i.years_exp > 5) AS exp_employees  
   FROM stores;  
A
SELECT 
	store_id,
	employees,
	FILTER (employees, i -> i.years_exp > 5) AS exp_employees
FROM stores;
63
Q

63) A data engineer has a Python variable table_name that they would like to use in a SQL query. They want to construct a Python code block that will run the query using table_name. They have the following incomplete code block

\_\_\_\_\_(f'SELECT customer_id, spend FROM {table_name}')

Which of the following can be used to fill in the blank to succesfully complete the task?

1. spark.delta.sql  
2. spark.delta.table  
3. spark.table  
4. dbutils.sql  
5. spark.sql  
64
Q

64) A data engineer has created a new database using the following command

CREATE DATABASE IF NOT EXISTS customer360;

In which of the following locations will the customer360 database be located?

1. dbfs:/user/hive/database/customer360  
2. dbfs:/user/hive/warehouse  
3. dbfs:/user/hive/customers360  
4. More information is needed to determine the correct response  
5. dbfs:/user/hive/database  
A
dbfs:/user/hive/warehouse
65
Q

65) A data engineer is attempting to drop a Spark SQL table my_table and runs the following command

DROP TABLE IF EXISTS my_table

After running this command, the engineer notices that the data files and metadata files have been deleted from the file system. Which of the following describes why all of these files were deleted?

  1. The table was managed
  2. The table’s data was smaller than 10 GB
  3. The table’s data was larger than 10 GB
  4. The table was external
  5. The table did not have a location
A

The table was managed

66
Q

66) A data engineer that is new to using Python needs to create a Python function to add rwo integers together and return the sum.
Which of the following code blocks can the data engineer use to complete this task?

1. function add_integers(x, y):  
      return x + y  

2. function add_integers(x, y):  
      x + y  

3. def add_integers(x, y):  
      print(x + y)  

4. def add_integers(x, y):  
      return x + y  

5. def add_integers(x, y):  
      x + y  
A
def add_integers(x, y):
	return x + y
67
Q

67) In which of the following scenarios should a data engineer use the MERGE INTO command instead of the INSERT INTO command?

1. When the location of the data needs to be changed  
2. When the target table is an external table  
3. When the source table can be deleted  
4. When the target table cannot contain duplicate records  
5. When the source is not a Delta table  
A

When the target table cannot contain duplicate records

68
Q

68) Repetida - 58

69
Q

69) A data engineer needs to create a table in Databricks using data from a CSV file at location /path/to/csv. They run the following command

CREATE TABLE new_table
\_\_\_\_\_\_
OPTIONS (
	header = "true",
	delimiter = "|"
)
LOCATION "path/to/csv"

Which of the following lines of code fills in the above blank to successfully complete the task?

1. None of these lines of code are needed to successfully complete the task  
2. USING CSV  
3. FROM CSV  
4. USING DELTA  
5. FROM "path/to/csv"  
70
Q

70) A data engineer has configured a Structured Streaming job to read from a table, manipulate the data, and then perform a streaming write into a new table. The code block used by the data engineer is below

spark.readStream
	.table("sales")
	.withColumn("avg_price", col("sales") / col("units"))
	.writeStream
	.option("checkpointLocation", checkpointPath)
	.outputMode("complete")
	.\_\_\_\_\_\_
	.table("new_sales")

If the data engineer only wants the query to process all the available data in as many batches as required, which of the following lines of code should the data engineer use to fill in the blank?

1. processingTime(1)  
2. trigger(availableNow=True)  
3. trigger(parallelBatch=True)  
4. trigger(processingTime="once")  
5. trigger(continuous="once")  
A

trigger(availableNow=True)

In Spark Structured Streaming, we use trigger(availableNow=True) to run the stream in batch mode where it processes all available data in multiple micro-batches. The trigger will stop on its own once it finishes processing the available data.

71
Q

71) A data engineer has develoepd a data pipeline to ingest data from a JSON source using Auto Loader, but the engineer has not provided any type inference or schema hints in their pipeline. Upon reviewing the data, the data engineer has noticed that all of the columns in the largest table are of the string type despite some of the fields only including float or boolean values.
Which of the following describes why Auto Loader inferred all of the columns to be the string type?

  1. There was a type mismatch between the specific schema and the inferred schema
  2. JSON data is a text-based format
  3. Auto Loader only works with string data
  4. All of the fields had at least one null value
  5. Auto Loader cannot infer the schema of ingested data
A

JSON data is a text-based format

72
Q

72) A Delta Live Table pipeline includes two datasets defined using STREAMING LIVE TABLE. Three datasets are defined againts Delta Lake table sources using LIVE TABLE.
The table is configured to run in Development mode using the Continuous Pipeline Mode.
Assuming previously unprocessed data exists and all definitions are valid, what is the expected outcome after clicking Start to update the pipeline?

  1. All datasets will be updated once and the pipeline will shut down. The compute resources will be terminated.
  2. All datasets will be updated at set intervals until the pipeline is shut down. The compute resources will persist until the pipeline is shut down.
  3. All datasets will be updated once and the pipeline will persist without any processing. The compute resources will persist but go unused.
  4. All datasets will be updated once and the pipeline will shut down. The compute resources will persist to allow for additional testing.
  5. All datasets will be updated at set intervals until the pipeline is shut down. The compute resources will persist to allow for additional testing.
A

All datasets will be updated at set intervals until the pipeline is shut down. The compute resources will persist to allow for additional testing.

73
Q

73) Which of the following data workloads will utilize a Gold table as is source?

  1. A job that enriches data by parsing its timestamps into a human-readable format
  2. A job that aggregates uncleaned data to create standard summary statistics
  3. A job that cleans data by removing malformed records
  4. A job that queries aggregated data designed to feed into a dashboard
  5. A job that ingests raw data from a streaming source into the Lakehouse
A

A job that queries aggregated data designed to feed into a dashboard

74
Q

74) Which of the following must be specified when creating a new Delta Live Tables pipeline?

  1. A key-value pair configuration
  2. The preferred DBU/hour cost
  3. A path to cloud storage location for the written data
  4. A location of a target database for the written data
  5. At least one notebook library to be executed
A

At least one notebook library to be executed

75
Q

75) A data engineer has joined an exsisting project and they see the following query in the project repository:

CREATE STREAMING LIVE TABLE loyal_customers AS
SELECT customer_id
FROM STREAM(LIVE.customers)
WHERE loyalty_level = 'high'

Which of the following describes why the STREAM function is included in the query?

  1. The STREAM function is not needed and will cause an error.
  2. The table being created is a live table.
  3. The customers table is a streaming live table.
  4. The customers table is a reference to a Structured Streaming query on a PySpark DataFrame.
  5. The data in the customers table has been updated since its last run.
A

The customers table is a streaming live table

76
Q

76) Which of the following describes the type of workloads that are always compatible with Auto Loader?

  1. Streaming workloads
  2. Machine learning workloads
  3. Serverless workloads
  4. Batch workloads
  5. Dashboard workloads
A

Streaming workloads

77
Q

77) A data engineer and data analyst are working together on a data pipeline. The data engineer is working on the raw, bronze, and silver layers of the pipeline using Python, and the data analyst is working on the gold layer of the pipeline using SQL. The raw source of the pipeline is a streaming input. They now want to migrate their pipeline to use Delta Live Tables.
Which of the following changes will need to be made to the pipeline when migrating to Delta Live Tables?

  1. None of these changes will need to be made
  2. The pipeline will need to stop using the medallion-based multi-hop architecture
  3. The pipeline will need to be written entirely in SQL
  4. The pipeline will need to use a batch source in place of a streaming source
  5. The pipeline will need to be written entirely in Python
A

None of these changes will need to be made

78
Q

78) A data engineer is using the following code block as part of a batch ingestion pipeline to read from a composable table:

transactions_df = (spark.read
	.schema(schema)
	.format("delta")
	.table("transactions")
)

Which of the following changes needs to be made so this code block will work when the transactions table is a stream source?

  1. Replace predict with a stream-friendly prediction function
  2. Replace schema(schema) with option(“readFilesPerTrigger”, 1)
  3. Replace “transactions” with the path to the location of the Delta table
  4. Format(“delta”) with format(“event”)
  5. Replace spark.read with spark.readStream
A

Replace spark read with spark.readStream

79
Q

79) Which of the following queries is performing a streaming hop from raw data to a Bronze table?

1.  
   spark.table("sales")  
     .groupBy("store")  
     .agg(sum("sales"))  
     .writeStream  
     .option("checkpointLocation", checkpointPath)  
     .outputMode("complete")  
     .table("newSales")  

2.  
   spark.table("sales")  
     .filter(col("units") > 0)  
     .writeStream  
     .option("checkpointLocation", checkpointPath)  
     .outputMode("append")  
     .table("newSales")  

3.  
   spark.table("sales")  
     .withColumn("avgPrice", col("sales") / col("units"))  
     .writeStream  
     .option("checkpointLocation", checkpointPath)  
     .outputMode("append")  
     .table("newSales")  

4.  
   spark.read.load(rawSalesLocation)  
     .write  
     .mode("append")  
     .table("newSales")  

5.  
   spark.readStream.load(rawSalesLocation)  
     .writeStream  
     .option("checkpointLocation", checkpointPath)  
     .outputMode("append")  
     .table("newSales")  
A
(spark.readStream.load(rawSalesLocation)
	.writeStream
	.option("checkpointLocation", checkpointPath)
	.outputMode("append")
	.table("newSales")
)
80
Q

80) A dataset has been defined using Delta Live Tables and includes an expectations clause:

CONSTRAINT valid_timestamp EXPECT (timestamp > '2020-01-01') ON VIOLAITON FAIL UPDATE

What is the expected behaviour when a batch of data containing data that violates these constraints is processed?

  1. Records that violate the expectation are dropped from the target dataset and recorded as invalid in the event log.
  2. Records that violate the expectation cause the job to fail.
  3. Records that violate the expectation are dropped from the target dataset and loaded into a quarantine table.
  4. Records that violate the expectation are added to the target dataset and recorded as invalid in the event log.
  5. Records that violate the expectation are added to the target dataset and flagged as invalid in a field added to the target dataset.
A

Records that violate the expectation cause the job to fail

81
Q

81) Which of the following statements regarding the relationship between Silver tables and Bronze tables si always true?

  1. Silver tables contain a less refined, less clean view of data than Bronze data.
  2. Silver tables contain aggregates while Bronze data is unaggregated.
  3. Silver tables contain more data than Bronze tables.
  4. Silver tables contain a more refined and cleaner view of data than Bronze tables.
  5. Silver tables contain less data than Bronze tables.
A

Silver tables contain a more refined and cleaner view of data than Bronze tables

82
Q

82) A data engineering team has noticed that their Databricks SQL queries are running to slowly when they are submitted to a non-runnning SQL endpoint. The data engineering team wants this issue to be resolved.
Which of the following approaches can the team use to reduce the time it takes to return results in this scenario?

  1. They can turn on the Serverless feature for the SQL endpoint and change the Spot Instance Policy to “Reliability Optimized.”
  2. They can turn on the Auto Stop feature for the SQL endpoint.
  3. They can increase the cluster size of the SQL endpoint.
  4. They can turn on the Serverless feature for the SQL endpoint.
  5. They can increase the maximum bound of the SQL endpoint’s scaling range.
A

They can turn on the Serverless feature for the SQL endpoint

83
Q

83) A data engineer has a Job that has a complex run schedule, and they want to transfer that schedule to other jobs. Rather than manually selecting each value in the scheduling form in Databricks, which of the following tools can the data engineer use to represent and submit the schedule programmatically?

1. pyspark.sql.types.DateType  
2. datetime  
3. pyspark.sql.types.TimestampType  
4. Cron syntax  
5. There is no way to represent and submit this information programmatically  
A

Cron syntax

84
Q

84) Which of the following approaches should be used to send the Databricks Job owner an email in the case that the Job fails?

  1. Manually programming in an alert system in each cell of the Notebook
  2. Setting up an Alert in the Job page
  3. Setting up an Alert in the Notebook
  4. There is no way to notify the Job owner in the case of a Job failure
  5. MLflow Model Registry Webhooks
A

Setting up an Alert in the Job page

85
Q

85) An engineering manager uses a Databricks SQL query to monitor ingestion latency for each data source. The manager checks the results of the query every day, but they are manually rerunning the query each day and waiting for the results.
Which of the following approaches can the manager use to ensure the results of the query are updated each day?

  1. They can schedule the query to refresh every 1 day from the SQL endpoint’s page in Databricks SQL.
  2. They can schedule the query to refresh every 12 hours from the SQL endpoint’s page in Databricks SQL.
  3. They can schedule the query to refresh every 1 day from the query’s page in Databricks SQL.
  4. They can schedule the query to run every 1 day from the Jobs UI.
  5. They can schedule the query to run every 12 hours from the Jobs UI.
A

They can schedule the query to refresh every 1 day from the query’s page in Databricks SQL

In Databricks SQL, you can set a schedule to automatically refresh a query from the querys’ page

86
Q

86) In which of the following scenarios should a data engineer select a Task in the Depends On field of a new Databricks Job Task?

  1. When another task needs to be replaced by the new task
  2. When another task needs to fail before the new task begins
  3. When another task has the same dependency libraries as the new task
  4. When another task has the same data source as the new task
  5. When another task needs to successfully complete before the new task begins
A

When another task needs to successfully complete before the new task begins

87
Q

87) A data engineer has been using a Databricks SQL dashboard to monitor the cleanliness of the input data to a data analytics dashboard for a retail use case. The job has a Databricks SQL query that returns the number of store-level records where sales is equal to zero. The data engineer wants their entire team to be notified via a messaging webhook whenever this value is greater than 0.
Which of the following approaches can the data engineer use to notify their entire team via messaging webhook whenever the number of stores with $0 in sales is greter than zero?

  1. They can set up an Alert with a custom template.
  2. They can set up an Alert with a new email alert destination.
  3. They can set up an Alert with no notifications.
  4. They can set up an Alert with a new webhook alert destination.
  5. They can set up an Alert without notifications.
A

They can set up an Alert with a new webhook alert destination.

88
Q

88) A data engineer wants to schedule their Databricks SQL dashboard to refresh every hour, but they only want the associated SQL endpoint to be running when it is necessary. The dashboard has multiple queries on multiple datasets associated with it. The data that feeds the dashboard is automatically processed using a Databricks Job.
Which of the following approaches can the data engineer use to minimize the total running time of the SQL endpoint used in the refresh schedule of their dashboard?

  1. They can turn on the Auto Stop feature for the SQL endpoint.
  2. They can ensure the dashboard’s SQL endpoint is not one of the included query’s SQL endpoint.
  3. They can increase the cluster size of the SQL endpoint.
  4. They can ensure the dashboard’s SQL endpoint matches each of the queries’ SQL endpoints.
  5. They can set up the dashboard’s SQL endpoint to be serverless.
A

They can turn on the Auto Stop feature for the SQL endpoint

89
Q

89) A data engineer needs access to a table new_table, but they do not have the correct permissions. They can ask the table owner for permission, but they do not know who the table owner is. Which of the followinh approaches can be used to identify the owner of new_table?

  1. Review the Permissions tab in the table’s page in Data Explorer
  2. All of these options can be used to identify the owner of the table
  3. Review the Owner field in the table’s page in Data Explorer
  4. Review the Owner field in the table’s page in the cloud storage solution
  5. There is no way to identify the owner of the table
A

Review the Owner field in the table’s page in Data Explorer

90
Q

90) A new data engineering team has been asigned to an ELT project. They new data engineering team will need full privileges on the table sales to fully manage the project.
Which of the following commands can be used to grant full permissions on the database to the new data engineering team?

1. GRANT ALL PRIVILEGES ON TABLE sales TO team;  
2. GRANT SELECT CREATE MODIFY ON TABLE sales TO team;  
3. GRANT SELECT ON TABLE sales TO team;  
4. GRANT USAGE ON TABLE sales TO team;  
5. GRANT ALL PRIVILEGES ON TABLE team TO sales;  
A

GRANT ALL PRIVILEGES ON TABLE sales TO team;

91
Q

91) Identify how the count_if function and the count where x is null can be used. Consider a table random_values with below data. What would be the output of below query?

select 
	count_if(col > 1) as count_a, 
	count(*) as count_b,
	count(col1) ascount_c
from random_values col1

0
1
2
NULL
2
3
  1. 3 6 5
  2. 4 6 5
  3. 3 6 6
  4. 4 6 6
92
Q

92)(#138) Which two components function in the DB platform architecture’s control plane?

  1. Virtual Machines
  2. Compute Orchestration
  3. Serverless Compute
  4. Compute
  5. Unity Catalog
A
  • Compute Orchestation
  • Unity Catalog
93
Q

93) In a health provider organization using Delta Lake to store electronic health records (EHRs), a data analyst needs to analyze a snapshot of the patient_records table from two weeks ago before some recent data corrections were applied. What approach should the Data Engineer take to allow the analyst to query that specific prior version?

  1. Truncate the table to remove all data, then reload the data from two weeks ago in the truncated table for the analyst to query.
  2. Identify the version number corresponding to two weeks ago from the Delta transaction log, share that version number with the analyst to query using VERSION AS OF syntax, or export that version to a new Delta table for the analyst to query.
  3. Restore the table to the version from two weeks ago using the RESTORE command, and have the analyst query the restored table.
  4. Use the VACUUM command to remove all versions of the table older than two weeks, then the analyst can query the remaining version.
A

Identify the version number corresponding to two weeks ago from the Delta transaction log, share that version number with the analyst to query using VERSION AS OF syntax, or export that version to a new Delta table for the analyst to query

94
Q

94) (#142) Data engineer and data analyst are working together on a data pipeline. The data engineer is working on the raw, bronze, and silver layers of the pipeline using Python, and the data analyst is working on the gold layer of the pipeling using SQL. The raw source of the pipeline is a streaming input. They now want to migrate their pipeline to use Delta Live Tables.
Which of the following changes will need to be made to the pipeline when migrating to Delta Live Tables?

  1. The pipeline can have different notebook sources in SQL & Python
  2. The pipeline will need to be written entirely in SQL
  3. The pipeline will need to use a batch source in place of a streaming source
  4. The pipeline will need to be written entirely in Python
A

The pipeline can have different notebook sources in SQL & Python

95
Q

95) (#143) Identify a scenario to use an external table.
A data engineer needs to create a parquet bronze table and wants to ensure that it gets stored in a specific path in an external location.
Which table can be created in this scenario?

  1. An external table where the location is pointing to a specific path in an external location.
  2. An external table where the schema has managed location pointing to a specific path in an external location.
  3. A managed table where the catalog has managed location pointing to a specific path in an external location.
  4. A managed table where the location is pointing to a specific path in an external location.
A

An external table where the location is pointing to specific path in external location

96
Q

96) (#144) Identify the impact of ON VIOLATION DROP ROW and ON VIOLATION FAIL UPDATE for a constraint violation.
A data engineer has created an ETL pipeline using Delta Live table to manage their company travel reimbursement detail, they want to ensure that the if the location details has not been provided by the employee, the pipeline needs to be terminated.
How can the scenario be implemented?

1. CONSTRAINT valid_location EXPECT (location = NULL)  
2. CONSTRAINT valid_location EXPECT (location != NULL) ON VIOLATION FAIL UPDATE  
3. CONSTRAINT valid_location EXPECT (location != NULL) ON DROP ROW  
4. CONSTRAINT valid_location EXPECT (location != NULL) ON VIOLATION FAIL  
A

CONSTRAINT valid_location EXPECT (location != NULL) ON VIOLATION FAIL UPDATE

With ON VIOLATION FAIL UPDATE, records that violate the expectation will cause the pipeline to fail. When a pipeline fails because of an expectation violation, you must fix the pipeline code to handle the invalid data correctly beore re-running the pipeline

97
Q

97) (#145) Which two conditions are applicable for governance in Databricks Unity Catalog? Choose two

  1. You can have more than 1 metastore within a Databricks account console but only 1 per region
  2. Both catalog and schema must have a managed location in Unity Catalog provided metastore & is not associated with a location
  3. You can have multiple catalogs with metastore and 1 catalog can be associated with multiple metastores
  4. If a catalog is not associated with a location, it’s mandatory to associate the schema with a managed location
  5. If metastore is not associated with location, it’s mandatory to associate catalog with manager locations
A
  • You can have more than 1 metastore within a databricks account console but only 1 per region
  • If metastore is not associated with location, it’s mandatory to associate catalog with manager locations
98
Q

98) (#146) A data engineer needs to access the view created by the sales team, using a shared cluster. The data engineer has been provided usage permissions on the catalog and schema. In order to access the view created by sales team. What are the minimum permissions the data engineer would require in addition?

  1. Needs SELECT permission on the VIEW and the underlying TABLE.
  2. Needs SELECT permission only on the VIEW.
  3. Needs ALL PRIVILEGES on the VIEW.
  4. Needs ALL PRIVILEGES at the SCHEMA level.
A

Needs SELECT permission only on the VIEW

99
Q

99) (#147) Which method should a Data Engineer apply to ensure Workflows are being triggered on schedule?

  1. Scheduled Workflows require an always-running cluster, which is more expensive but reduces processing latency.
  2. Scheduled Workflows process data as it arrives at configured sources.
  3. Scheduled Workflows can reduce resource consumption and expense since the cluster runs only long enough to execute the pipeline.
  4. Scheduled Workflows run continuously until manually stopped.
A

Scheduled Workflos can reduce resource consumption and expense since the cluster runs only long enough to execute the pipeline

100
Q

100)(#148) The Delta transaction log for the ‘students’ tables is shown using the ‘DESCRIBE HISTORY students’ command. A Data Engineer needs to query the table as it existed before the UPDATE operation listed in the log.
Which command should the Data Enginner use to achieve this? Choose two

version   timestamp                 operation
-----------------------------------------------------
8         2024-04-22T14:33:31.000    OPTIMIZE
7         2024-04-22T14:33:16.000    MERGE
6         2024-04-22T14:33:06.000    DELETE
5         2024-04-22T14:32:58.000    UPDATE
4         2024-04-22T14:32:47.000    WRITE
3         2024-04-22T14:32:44.000    WRITE
2         2024-04-22T14:32:23.000    WRITE
1         2024-04-22T14:32:20.000    WRITE
0         2024-04-22T14:31:49.000    CREATE TABLE
1. SELECT * FROM students@v4  
2. SELECT * FROM students TIMESTAMP AS OF '2024-04-22T14:32:47.000+0000'  
3. SELECT * FROM students FROM HISTORY VERSION AS OF 5  
4. SELECT * FROM students VERSION AS OF 5  
5. SELECT * FROM students TIMESTAMP AS OF '2024-04-22T14:32:50.000+0000'  
A
  • SELECT * FROM students@v4
  • SELECT * FROM students TIMESTAMP AS OF '2024-04-22T14:32:47.000+00:00"
101
Q

101)(#157) How can git operations must be performed outside of Databricks Repos?
1. Commit
2. Pull
3. Merge
4. Clone

102
Q

102) (#136) Differentiate between all-purpose clusters and jobs clusters
A data engineering team has created a python notebook to load data from cloud storage, this job has been tested and now needs to be scheduled in production.
Which would be the best cluster to be used in this case?

  1. All purpose cluster
  2. Any Unity Catolog-enabled cluster
  3. Jobs Cluster
  4. Serverless SQL warehouse
A

Jobs Cluster