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

Free Databricks Databricks-Certified-Data-Analyst-Associate Practice Exam with Questions & Answers | Set: 2

Questions 11

A data analyst has written and saved a series of queries that reveal trends that need to be monitored by several stakeholders.

Which tool should the data analyst use to share the results of all of the queries to be viewed at once?

Options:
A.

A SQL warehouse

B.

A Query History page

C.

A dashboard

D.

A data visualization tab on a Query page

Databricks Databricks-Certified-Data-Analyst-Associate Premium Access
Questions 12

Delta Lake stores table data as a series of data files, but it also stores a lot of other information.

Which of the following is stored alongside data files when using Delta Lake?

Options:
A.

None of these

B.

Table metadata, data summary visualizations, and owner account information

C.

Table metadata

D.

Data summary visualizations

E.

Owner account information

Questions 13

Which of the following is a benefit of Databricks SQL using ANSI SQL as its standard SQL dialect?

Options:
A.

It has increased customization capabilities

B.

It is easy to migrate existing SQL queries to Databricks SQL

C.

It allows for the use of Photon ' s computation optimizations

D.

It is more performant than other SQL dialects

E.

It is more compatible with Spark ' s interpreters

Questions 14

A data analyst has set up a SQL query to run every four hours on a SQL endpoint, but the SQL endpoint is taking too long to start up with each run.

Which of the following changes can the data analyst make to reduce the start-up time for the endpoint while managing costs?

Options:
A.

Reduce the SQL endpoint cluster size

B.

Increase the SQL endpoint cluster size

C.

Turn off the Auto stop feature

D.

Increase the minimum scaling value

E.

Use a Serverless SQL endpoint

Questions 15

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?

Options:
A.

Query Editor → Y Axis

B.

Dashboard Editor → Axes → Y Axis

C.

Visualization Editor → Y Axis

D.

Settings → User Settings → Scaling

Questions 16

A data analyst is working with gold-layer tables to complete an ad-hoc project. A stakeholder has provided the analyst with an additional dataset that can be used to augment the gold-layer tables already in use.

Which of the following terms is used to describe this data augmentation?

Options:
A.

Data testing

B.

Ad-hoc improvements

C.

Last-mile

D.

Last-mile ETL

E.

Data enhancement

Questions 17

A database was created in Databricks SQL using the following statement:

CREATE SCHEMA accounting LOCATION ' dbfs:/accounting/data ' ;

Where will data for this database be stored?

Options:
A.

dbfs:/accounting/data/accounting.db

B.

dbfs:/accounting/data

C.

dbfs:/accounting/data.db

D.

dbfs:/user/hive/warehouse/accounting.db

Questions 18

A data analysis team is working with the table_bronze SQL table as a source for one of its most complex projects. A stakeholder of the project notices that some of the downstream data is duplicative. The analysis team identifies table_bronze as the source of the duplication.

Which of the following queries can be used to deduplicate the data from table_bronze and write it to a new table table_silver?

A)

CREATE TABLE table_silver AS

SELECT DISTINCT *

FROM table_bronze;

B)

CREATE TABLE table_silver AS

INSERT *

FROM table_bronze;

C)

CREATE TABLE table_silver AS

MERGE DEDUPLICATE *

FROM table_bronze;

D)

INSERT INTO TABLE table_silver

SELECT * FROM table_bronze;

E)

INSERT OVERWRITE TABLE table_silver

SELECT * FROM table_bronze;

Options:
A.

Option A

B.

Option B

C.

Option C

D.

Option D

E.

Option E

Questions 19

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

Options:
A.

DESCRIBE LOCATION customer360;

B.

DROP DATABASE customer360;

C.

DESCRIBE DATABASE customer360;

D.

ALTER DATABASE customer360 SET DBPROPERTIES ( ' location ' = ' /user ' );

E.

USE DATABASE customer360;

Questions 20

A managed table and an unmanaged external table were both created in Databricks SQL, and data was ingested into each table. Later, both tables were dropped.

What is the status of data for each of those tables?

Options:
A.

The data in both tables were deleted.

B.

The data in the managed table were deleted, and the data in the unmanaged external table were left untouched.

C.

The data in the unmanaged external table were deleted, and the data in the managed table were left untouched.

D.

The data in both tables were left untouched.