Pre-Winter Sale Special Limited Time 70% Discount Offer - Ends in 0d 00h 00m 00s - Coupon code: xmas50

Databricks Databricks-Certified-Data-Analyst-Associate - Databricks Certified Data Analyst Associate Exam

A data analyst is working with the following table my_table:

customer_name dollars_spent

Hex Sprockets [125.34, 100.15, 9003.99]

Dented Fenders [16.99, 200.85, 33.49, 88.17]

The analyst wants to divide each value in the dollars_spent array by 100 to get the spend in terms of hundreds of dollars using the following code block:

SELECT

customer_name,

_______

FROM my_table;

Which line of code can be used to fill in the blank so that the above code block successfully completes the task?

A.

TRANSFORM(hundreds_spent, dollars_spent / 100)

B.

TRANSFORM(dollars_spent, value / 100) AS hundreds_spent

C.

TRANSFORM(dollars_spent, value - > value / 100) AS hundreds_spent

D.

TRANSFORM(dollars_spent, dollars_spent / 100) AS hundreds_spent

Where in the Databricks SQL workspace can a data analyst configure a refresh schedule for a query when the query is not attached to a dashboard or alert?

A.

Data bxplorer

B.

The Visualization editor

C.

The Query Editor

D.

The Dashboard Editor

A data engineering team has created a Structured Streaming pipeline that processes data in micro-batches and populates gold-level tables. The microbatches are triggered every 10 minutes.

A data analyst has created a dashboard based on this gold level data. The project stakeholders want to see the results in the dashboard updated within 10 minutes or less of new data becoming available within the gold-level tables.

What is the ability to ensure the streamed data is included in the dashboard at the standard requested by the project stakeholders?

A.

A refresh schedule with an interval of 10 minutes or less

B.

A refresh schedule with an always-on SQL Warehouse (formerly known as SQL Endpoint

C.

A refresh schedule with stakeholders included as subscribers

D.

A refresh schedule with a Structured Streaming cluster

After running DESCRIBE EXTENDED accounts.customers;, the following was returned:

Now, a data analyst runs the following command:

DROP accounts.customers;

Which of the following describes the result of running this command?

A.

Running SELECT * FROM delta. `dbfs:/stakeholders/customers` results in an error.

B.

Running SELECT * FROM accounts.customers will return all rows in the table.

C.

All files with the .customers extension are deleted.

D.

The accounts.customers table is removed from the metastore, and the underlying data files are deleted.

E.

The accounts.customers table is removed from the metastore, but the underlying data files are untouched.

A data analyst needs to create an empty managed table table_name in database database_name with a specific schema. The table needs to be recreated and empty, regardless of whether or not the table already exists.

Which command can the analyst use to complete the task?

A.

CREATE TABLE database_name.table_name USING (width INT, length INT, height INT);

B.

CREATE OR REPLACE TABLE database_name.table_name USING (width INT, length INT, height INT);

C.

CREATE OR REPLACE TABLE database_name.table_name (width INT, length INT, height INT);

D.

CREATE OR REPLACE TABLE table_name FROM database_name USING (width INT, length INT, height INT);

Which of the following should data analysts consider when working with personally identifiable information (PII) data?

A.

Organization-specific best practices for Pll data

B.

Legal requirements for the area in which the data was collected

C.

None of these considerations

D.

Legal requirements for the area in which the analysis is being performed

E.

All of these considerations

Which example of data projects represents a common analytics application to be completed in Databricks SQL?

A.

Testing the latency of real-time streaming workloads

B.

Performing analysis-specific ETL on gold-layer tables

C.

Predicting customer churn by automatically developing time-series models

D.

Monitoring the performance of deployed machine learning solutions

Which open-source project helps to enable the data lakehouse by adding organization, reliability, performance, and data governance to data lake architectures?

A.

MLflow

B.

Apache Spark

C.

Delta Lake

D.

Databricks SQL

A data analyst has produced a visualization. A stakeholder has viewed the visualization and is complaining that the visualization is difficult to interpret. After looking at the visualization, the analyst determines that the scale of the y-axis must be changed.

Where are the controls for changing the scale of the y-axis in Databricks SQL?

A.

Query Editor → Y Axis

B.

Dashboard Editor → Axes → Y Axis

C.

Visualization Editor → Y Axis

D.

Settings → User Settings → Scaling

What describes Partner Connect in Databricks?

A.

it allows for free use of Databricks partner tools through a common API.

B.

it allows multi-directional connection between Databricks and Databricks partners easier.

C.

It exposes connection information to third-party tools via Databricks partners.

D.

It is a feature that runs Databricks partner tools on a Databricks SQL Warehouse (formerly known as a SQL endpoint).