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

Free Snowflake DAA-C01 Practice Exam with Questions & Answers | Set: 2

Questions 11

A large, complicated query is used to generate a data set for a report on the most recent month. It is taking longer than expected. A review of the Query Profile shows excessive spilling. How can the performance of the query be improved WITHOUT increasing costs?

Options:
A.

Run the query against zero-copy clones of the source tables to avoid contention with other queries.

B.

Create a materialized view clustered on a date column, on the table that is causing the spilling.

C.

Change the source tables into external tables to establish and take advantage of custom partitioning.

D.

Split the query into multiple steps, replacing Common Table Expressions (CTEs) with temporary tables to process the data in smaller batches.

Snowflake DAA-C01 Premium Access
Questions 12

A Data Analyst creates a dashboard showing the total credit consumption for each virtual warehouse as follows:

DAA-C01 Question 12

Why is the query failing?

Options:
A.

The query must be executed by a user with the ACCOUNTADMIN role.

B.

INFORMATION_SCHEMA should be used instead of ACCOUNT_USAGE.

C.

DB1 must be authorized to have SELECT access to ACCOUNT_USAGE.

D.

The current database context must be changed to SNOWFLAKE.

Questions 13

How can a Data Analyst automatically create a table structure for loading a Parquet file?

Options:
A.

Use the INFER_SCHEMA together with the CREATE TABLE LIKE command.

B.

Use INFER_SCHEMA together with the CREATE TABLE USING TEMPLATE command.

C.

Use the GENERATE_COLUMN_DESCRIPTION with the CREATE TABLE USING TEMPLATE command.

D.

Use the GENERATE_COLUMN_DESCRIPTION with the CREATE TABLE LIKE command.

Questions 14

The following code is run:

DAA-C01 Question 14

Then this statement is executed:

DAA-C01 Question 14

What will be the output of this statement?

A)

DAA-C01 Question 14

B)

DAA-C01 Question 14

C)

DAA-C01 Question 14

D)

DAA-C01 Question 14

Options:
A.

Option A

B.

Option B

C.

Option C

D.

Option D

Questions 15

A Data Analyst is working with three tables:

DAA-C01 Question 15

Which query would return a list of all brokers, a count of the customers each broker has. and the total order amount of their customers (as shown below)?

DAA-C01 Question 15

A)

DAA-C01 Question 15

B)

DAA-C01 Question 15

C)

DAA-C01 Question 15

D)

DAA-C01 Question 15

Options:
A.

Option A

B.

Option B

C.

Option C

D.

Option D

Questions 16

A Directed Acyclic Graph (DAG) of 12 tasks (ETLDAILY) failed because one of the tasks failed (STEP10), therefore the dependent tasks (STEP11 and STEP12) did not run. Which command is needed to re-run task STEP10 and the two dependent tasks?

Options:
A.

EXECUTE TASK STEP10 RETRY LAST;

B.

EXECUTE TASK ETLDAILY RETRY LAST;

C.

ALTER TASK STEP10 RESUME;

D.

ALTER TASK ETLDAILY RESUME;

Questions 17

This query is run:

SQL

SELECT

customer.id,

ANY_VALUE(customer.name),

SUM(orders.value)

FROM customer

JOIN orders ON customer.id = orders.customer_id

GROUP BY customer.id;

What is the effect of ANY_VALUE in this syntax?

Options:
A.

It will return an equivalent NULL value when the expression is evaluated.

B.

It will return some value of the expression from the group, with a non-deterministic result.

C.

It will return the minimum value of those generated by the expression, with a deterministic result.

D.

It will return a value equivalent to the median of those generated by the expression, which may be a non-deterministic result.

Questions 18

Which Snowflake SQL would a Data Analyst use in a trained Cortex model named forecast_model to retrieve the components that contribute to the predictions?

Options:
A.

forecast_model!SHOW_EVALUATION_METRICS()

B.

forecast_model!SHOW_TRAINING_LOGS()

C.

forecast_model!EXPLAIN_FEATURE_IMPORTANCE()

D.

forecast_model!FORECAST()

Questions 19

A Data Analyst needs to add address details based on a customer's latitude and longitude to a customer sales database. The Analyst found a free Worldwide Address Data listing on the Snowflake Marketplace. The ACCOUNTADMIN placed the data set into a new database called ADDRESS_DATA. The Data Analyst needs to join the ADDRESS_DATA.OPENADDRESS table with the ORDERS table which is stored in the GLOBAL_DWH database. The combined data set needs to be created as a view. How can this be achieved?

Options:
A.

Create a view in the ADDRESS_DATA database.

B.

Create a view in the GLOBAL_DWH database.

C.

Create a new schema called ENRICHED in the ADDRESS_DATA database and create this view in the ENRICHED schema.

D.

Ask the ACCOUNTADMIN to grant the Data Analyst the IMPORTED_PRIVILEGES on the ADDRESS_DATA database and then create a view in the ADDRESS_DATA database.