Summer Sale Limited Time 70% Discount Offer - Ends in 0d 00h 00m 00s - Coupon code: 70track

Free Microsoft DP-750 Practice Exam with Questions & Answers

Questions 1

You have an Azure Databricks workspace that contains a job in Lakeflow Jobs named Job1. Job1 contains multiple tasks.

Failures of non-critical tasks must be logged but must NOT trigger notifications. Notifications must be triggered only when critical tasks have failed, and Job1 has completed

You need to configure the job alerting behavior.

What should trigger a notification?

Options:
A.

a task failure

B.

a job failure

C.

job success

D.

task success

Microsoft DP-750 Premium Access
Questions 2

You have an Azure Databricks workspace that is enabled for Unity Catalog

You have a complex job named Job1 that contains eight tasks. Job! takes multiple hours to complete

During the last job run, the final task fails due to a transient issue.

You need to retry the last task without rerunning tasks that have already completed.

What should you do?

Options:
A.

Update the job parameters.

B.

Repair the current job run.

C.

Restart Job!

D.

Disable and reenable the job schedule.

Questions 3

Which ingestion option should you recommend for each data source? To answer, drag the appropriate options to the correct data sources. Each option may be used once, more than once, or not at all. You may need to drag the split bar between panes or scroll to view content.

NOTE: Each correct selection is worth one point.

DP-750 Question 3

Options:
Questions 4

You need to complete the PySpark code for the Spark Structured Streaming pipelines. The solution must meet the data ingestion and processing requirements.

How should you complete the code segment? To answer, select the appropriate options in the answer area.

NOTE: Each correct selection is worth one point.

DP-750 Question 4

Options:
Questions 5

Which SCD type should you use to support the planned data modeling changes? To answer, drag the appropriate types to the correct issues. Each type may be used once, more than once, or not at all. You may need to drag the split bar between panes or scroll to view content.

NOTE: Each correct selection is worth one point.

DP-750 Question 5

Options:
Questions 6

You have an Azure Databricks workspace that is enabled for Unity Catalog and contains two managed Delta tables named sales.schema1.table1 and sales.schema1.table2.

sales.schema1.table1 contains sales data from the current year.

sales.schema1.table2 contains historical data.

You need to load all the rows from sales.schema1.table1 into sales.schema1.table2. The solution must preserve any existing data in sales.schema1.table2 and minimize processing effort.

Which command should you run?

Options:
A.

INSERT INTO sales.schema1.table2 SELECT * FROM sales.schema1.table1;

B.

CREATE TABLE sales.schema1.table2 AS SELECT * FROM sales.schema1.table1;

C.

INSERT OVERWRITE sales.schema1.table2 SELECT * FROM sales.schema1.table1;

D.

CREATE OR REPLACE TABLE sales.schema1.table2 AS SELECT * FROM sales.schema1.table1;

Questions 7

You need to develop the task logic for a new job in Lakeflow Jobs that processes telemetry data.

Each task must contain only the appropriate logic for its step in the pipeline. The solution must support the planned changes and meet the data ingestion and processing requirements.

What should you do?

Options:
A.

Use a single Databricks notebook task that performs ingestion, cleansing, and curation in one script.

B.

Create three tasks that each contains the identical logic and use task retries.

C.

Use a single SQL task that performs ingestion, cleansing, and curation by running merge commands.

D.

Create separate tasks for ingestion, cleansing, and curation.

Questions 8

You need to configure compute for the ingestion of telemetry data. The solution must meet the data ingestion and processing requirements.

What should you do?

Options:
A.

Enable Photon acceleration for a job compute cluster.

B.

Move the ingestion pipelines to shared compute.

C.

Increase an all-purpose cluster to a larger fixed node type.

D.

Disable autoscaling for a job compute cluster.

Questions 9

You have an Azure Databricks workspace that uses Unity Catalog.

You have a Lakeflow Spark Declarative Pipelines (SDP) pipeline that ingests data into a managed Delta table named Table1. Table! is used for analytics.

New columns are added to the source data, causing pipeline failures during writes to Table!

You need to prevent the pipeline failures. The solution must ensure that schema changes are detected and handled.

What should you do?

Options:
A.

Disable schema enforcement for Table1.

B.

Use row filters to exclude records that have new columns.

C.

Enable schema evolution.

D.

Create a separate table for each schema version.

Questions 10

You have an Azure Databricks workspace that is enabled for Unity Catalog and contains a Delta table named Orders

You load the Orders table into an Apache Spark DataFrame named df.

You need to create a DataFrame that excludes rows where the order amount is null.

Solution: You run the following expression.

df-fillna(0, subset=['order_amount'])

Does this meet the goal?

Options:
A.

Yes

B.

No