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

DAA-C01 SnowPro Advanced: Data Analyst Exam Questions and Answers

Questions 4

There are two similarly-structured and sized tables, Table_a and Table_b, in a schema with data populated in both tables. A Data Analyst is running queries as part of a preliminary analysis of the data to check the MAX value of a numeric column named num which is present in both the tables:

    Query 1: SELECT MAX(num) FROM Table_a;

    Query 2: SELECT MAX(num) FROM Table_b;

After running the queries, the Analyst observed that Query 2 ran significantly slower than Query 1. Why is this occurring?

Options:

A.

Table_b has more rows than Table_a.

B.

Table_b has a row-access policy defined.

C.

A multi-cluster warehouse was used to run Query 1.

D.

The USE_CACHED_RESULT was set to FALSE before running Query 2.

Buy Now
Questions 5

Why would a Data Analyst use a dimensional model rather than a single flat table to meet BI requirements for a virtual warehouse? (Select TWO).

Options:

A.

Dimensional modelling will improve query performance over a single table.

B.

Dimensional modelling will save on storage space since it is denormalized.

C.

Combining facts and dimensions in a single flat table limits the scalability and flexibility.

D.

Dimensions and facts allow power users to run ad-hoc analyses.

E.

Snowflake generally performs better with dimensional modelling.

Buy Now
Questions 6

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()

Buy Now
Questions 7

A Data Analyst created two functions and one procedures:

The Analyst then runs this query:

DAA-C01 Question 7

The Analyst then runs this query:

DAA-C01 Question 7

What will be the output?

Options:

A.

Null

B.

10

C.

20

D.

30

Buy Now
Questions 8

A Data Analyst has a Parquet file stored in an Amazon S3 staging area. Which query will copy the data from the staged Parquet file into separate columns in the target table?

DAA-C01 Question 8

Options:

A.

Option A

B.

Option B

C.

Option C

D.

Option D

Buy Now
Questions 9

Given the following data:

DAA-C01 Question 9

This SELECT statement is executed:

DAA-C01 Question 9

What will be the result?

Options:

A.

200

B.

2.0

C.

1.84

D.

1.8

Buy Now
Questions 10

A Data Analyst is working with three tables:

DAA-C01 Question 10

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 10

A)

DAA-C01 Question 10

B)

DAA-C01 Question 10

C)

DAA-C01 Question 10

D)

DAA-C01 Question 10

Options:

A.

Option A

B.

Option B

C.

Option C

D.

Option D

Buy Now
Questions 11

When building a Snowsight dashboard that will allow users to filter data within a worksheet, which Snowflake system filters should be used?

Options:

A.

Include the :datebucket system filter in a WHERE clause, and include the :daterange system filter in a GROUP BY clause.

B.

Include the :daterange system filter in a SELECT clause, and include the :datebucket system filter in a GROUP BY clause.

C.

Include the :datebucket system filter in a WHERE clause, and include the :daterange system filter in a SELECT clause.

D.

Include the :daterange system filter in a WHERE clause, and include the :datebucket system filter in a GROUP BY clause.

Buy Now
Questions 12

A scorecard tile on a Snowsight dashboard shows a comparison between the industry average employee age (which is 34) and a company's average employee age (which is 38). The scorecard tile looks like this:

Comparison with industry average

DAA-C01 Question 12

How should this tile be interpreted?

Options:

A.

38 is the comparison and 12% is the average age change in the last year.

B.

38 is the value and 12% is the standard deviation.

C.

38 is the value and 12% is the percent difference from the comparison.

D.

38 is the comparison and 12% is the projected industry growth.

Buy Now
Questions 13

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

DAA-C01 Question 13

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.

Buy Now
Questions 14

Which query will provide this data without incurring additional storage costs?

Options:

A.

CREATE TABLE DEV.PUBLIC.TRANS_HIST LIKE PROD.PUBLIC.TRANS_HIST;

B.

CREATE TABLE DEV.PUBLIC.TRANS_HIST AS (SELECT * FROM PROD.PUBLIC.TRANS_HIST);

C.

CREATE TABLE DEV.PUBLIC.TRANS_HIST CLONE PROD.PUBLIC.TRANS_HIST;

D.

CREATE TABLE DEV.PUBLIC.TRANS_HIST AS (SELECT * FROM PROD.PUBLIC.TRANS_HIST WHERE extract(year from (TRANS_DATE)) = 2019);

Buy Now
Questions 15

What functionalities are available when a Snowflake worksheet is shared with other users? (Select TWO).

Options:

A.

Users with edit permissions can view past versions of the worksheet.

B.

Collaborators can share the worksheet across Snowflake accounts.

C.

If multiple users edit and run a shared worksheet at the same time, each run of the worksheet will create a new version.

D.

If the worksheet is being edited, the collaborators will be able to see these edits in real-time.

E.

Whenever a user with permissions runs a worksheet, the existing version history of the worksheet will be overwritten.

Buy Now
Questions 16

What is a benefit of using SQL queries that contain secure views?

Options:

A.

Users will not be able to make observations about the quantity of underlying data.

B.

The amount of data scanned, and the total data volume are obfuscated.

C.

Only the number of scanned micro-partitions is exposed, not the number of bytes scanned.

D.

Snowflake secure views are more performant than regular views.

Buy Now
Questions 17

A Data Analyst runs this query:

DAA-C01 Question 17

The Analyst men runs this query:

DAA-C01 Question 17

What will be the output?

A)

DAA-C01 Question 17

B)

DAA-C01 Question 17

C)

DAA-C01 Question 17

D)

DAA-C01 Question 17

Options:

A.

Option A

B.

Option B

C.

Option C

D.

Option D

Buy Now
Questions 18

A Data Analyst has been analyzing customer data in several worksheets. Each worksheet contains a complex query that provides clean and prepared data for visualizations. The Analyst has also created a Customer Overview dashboard in Snowsight. How should the Analyst add the worksheets in the Customer Analysis database to the dashboard, using the LEAST amount of operational overhead?

Options:

A.

Move the worksheets into the dashboard.

B.

Copy and paste the worksheets into the dashboard.

C.

Open each worksheet, copy the query, then paste the query into the dashboard.

D.

Query the QUERY_HISTORY view to find those queries, then add the queries into the dashboard.

Buy Now
Questions 19

A Data Analyst created a cost overview dashboard in Snowsight. Management has asked for a system date filter to easily change the time period and refresh the data in all dashboard tiles with a single filter selection.

The system date filter is shown below:

DAA-C01 Question 19

The Analyst wants to apply the filter onto individual dashboard components.

Adding which where clause to the queries will apply the filter as required?

Options:

A.

Where start_time >= dateadd('days', -7, SYSDATE())

B.

Where start_time >= dateadd('days', -7, CURRENT_TIMESTAMP())

C.

Where start_time = :date_filter

D.

Where start_time = :daterange

Buy Now
Exam Code: DAA-C01
Exam Name: SnowPro Advanced: Data Analyst Exam
Last Update: Feb 21, 2026
Questions: 65

PDF + Testing Engine

$134.99

Testing Engine

$99.99

PDF (Q&A)

$84.99