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

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

Questions 4

A Data Analyst runs a query in a Snowflake worksheet, and selects a numeric column from the result grid. What automatically-generated contextual statistic can be visualized?

Options:

A.

A histogram, displayed for all numeric, date, and time columns

B.

A frequency distribution, displayed for all numeric columns

C.

MIN/MAX values for the column

D.

A key distribution

Buy Now
Questions 5

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 6

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.

Buy Now
Questions 7

A Data Analyst needs a sample of 10 rows from a table FCT_SALES that has billions of rows. Which commands can be used to accomplish this? (Select TWO).

Options:

A.

SELECT * FROM FCT_SALES SAMPLE 10;

B.

SELECT * FROM FCT_SALES SAMPLE (10 ROWS);

C.

SELECT TOP 10 ROWS * FROM FCT_SALES;

D.

SELECT TOP 10 * FROM FCT_SALES;

E.

SELECT TOP (10 ROWS) * FROM FCT_SALES;

Buy Now
Questions 8

A single variant data column table RAW_SOURCE has the following JSON records:

A Data Analyst needs to get the value of the "f" field and have it in a consumable, tabular format. Which query should be used to meet this requirement?

Options:

A.

select data:events:f::number from raw_source;

B.

select value:f::number from raw_source, lateral flatten( input => data );

C.

select src.events:f::number from raw_source src;

D.

select value:f::number from raw_source, lateral flatten( input => data:events );

Buy Now
Questions 9

A Data Analyst runs this query:

The Analyst men runs this query:

What will be the output?

A)

B)

C)

D)

Options:

A.

Option A

B.

Option B

C.

Option C

D.

Option D

Buy Now
Questions 10

A Data Analyst is working with three tables:

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

A)

B)

C)

D)

Options:

A.

Option A

B.

Option B

C.

Option C

D.

Option D

Buy Now
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.

Buy Now
Questions 12

A table named STUDENT is created:

What will be the output?

A)

B)

C)

D)

Options:

A.

Option A

B.

Option B

C.

Option C

D.

Option D

Buy Now
Questions 13

A Data Analyst for a ride-sharing company needs to assess the relationship between the number of active drivers in a city, and the average waiting time for passengers. Which query will determine if an increase in the number of active drivers is associated with a decrease in the average waiting time?

Options:

A.

SELECT CITY, SUM(ACTIVE_DRIVERS), VARIANCE(AVERAGE_WAITING_TIME) FROM RIDE_DATA GROUP BY CITY;

B.

SELECT CITY, VARIANCE(ACTIVE_DRIVERS, AVERAGE_WAITING_TIME) FROM RIDE_DATA GROUP BY CITY;

C.

SELECT CITY, SUM(ACTIVE_DRIVERS), AVG(AVERAGE_WAITING_TIME) FROM RIDE_DATA GROUP BY CITY;

D.

SELECT CITY, CORR(ACTIVE_DRIVERS, AVERAGE_WAITING_TIME) FROM RIDE_DATA GROUP BY CITY;

Buy Now
Questions 14

While loading data into Snowflake using named file formats, a file format defined in which location has precedence?

Options:

A.

The stage definition

B.

The table definition

C.

The schema definition

D.

The COPY INTO statement

Buy Now
Questions 15

A Data Analyst is working with a table that has 1 record per day, with sales information. Which window function would calculate a 7-day moving average of sales, where SALES_DATE represents the date column?

Options:

A.

SUM(SALES) OVER (ORDER BY SALES_DATE ROWS BETWEEN 6 PRECEDING AND CURRENT ROW)

B.

SUM(SALES) OVER (ORDER BY SALES_DATE ROWS BETWEEN 7 PRECEDING AND CURRENT ROW)

C.

AVG(SALES) OVER (ORDER BY SALES_DATE ROWS BETWEEN 6 PRECEDING AND CURRENT ROW)

D.

AVG(SALES) OVER (ORDER BY SALES_DATE ROWS BETWEEN 7 PRECEDING AND CURRENT ROW)

Buy Now
Questions 16

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.

Buy Now
Questions 17

What functions should a Data Analyst use to run descriptive analytics on a data set? (Select TWO).

Options:

A.

REGR_INTERCEPT

B.

REGR_SLOPE

C.

ROW_NUMBER

D.

APPROX_COUNT_DISTINCT

E.

AVG

Buy Now
Questions 18

A Data Analyst is working with three tables:

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

A)

B)

C)

D)

Options:

A.

Option A

B.

Option B

C.

Option C

D.

Option D

Buy Now
Questions 19

Why would an INFER_SCHEMA table function be used?

Options:

A.

To detect the file metadata schema from staged data files that contain unstructured data

B.

To detect the file metadata schema from staged data files that contain semi-structured data

C.

To detect the metadata schema from a table cell that contains JSON data

D.

To retrieve the column definitions from a previously-loaded database table

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

DAA-C01 PDF

$25.5  $84.99
DAA-C01 Engine

DAA-C01 Testing Engine

$30  $99.99
DAA-C01 PDF + Engine

DAA-C01 PDF + Testing Engine

$40.5  $134.99