Winter Special Limited Time 65% Discount Offer - Ends in 0d 00h 00m 00s - Coupon code: myex65

Home > Snowflake > SnowPro Advanced Certification > DAA-C01

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

Question # 4

What does the "SQL keyword" refer to in the context of adding filters to a worksheet?

A.

The name of the function used to generate the filter

B.

The filter name to be inserted into queries

C.

The table name containing the static filter "key" values

D.

The name of a User-Defined Function (UDF) used to define the filter "key" values

Full Access
Question # 5

Consider the following chart.

What can be said about the correlation for sales over time between the two categories?

A.

There is a positive correlation.

B.

There is a negative correlation.

C.

There is no correlation. (Selected)

D.

There is a non-linear correlation.

Full Access
Question # 6

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

A.

REGR_INTERCEPT

B.

REGR_SLOPE

C.

ROW_NUMBER

D.

APPROX_COUNT_DISTINCT

E.

AVG

Full Access
Question # 7

What scheme is used by Snowflake to estimate the approximate similarity between two or more data sets?

A.

MINHASH

B.

APPROX_PERCENTILE

C.

HyperLogLog

D.

APPROX_TOP_K

Full Access
Question # 8

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?

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)

Full Access
Question # 9

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)

A.

Option A

B.

Option B

C.

Option C

D.

Option D

Full Access
Question # 10

A Data Analyst has a very large table with columns that contain country and city names. Which query will provide a very quick estimate of the total number of different values of these two columns?

A.

SELECT DISTINCT COUNT(country, city) FROM TABLE1;

B.

SELECT HLL(country, city) FROM TABLE1;

C.

SELECT COUNT(DISTINCT country, city) FROM TABLE1;

D.

SELECT COUNT(country, city) FROM TABLE1;

Full Access
Question # 11

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

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

Full Access
Question # 12

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

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.

Full Access
Question # 13

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

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.

Full Access
Question # 14

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)

A.

Option A

B.

Option B

C.

Option C

D.

Option D

Full Access
Question # 15

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

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.

Full Access
Question # 16

Which Snowflake feature or object can be used to dynamically create and execute SQL statements?

A.

User-Defined Functions (UDFs)

B.

System-defined functions

C.

Stored procedures

D.

Tasks

Full Access
Question # 17

A company is looking for new headquarters and wants to minimize the distances employees have to commute. The company has geographic data on employees' residences. Through the Snowflake Marketplace, the company obtained geographic data for possible locations of the new headquarters. How can the distance between an employee's residence and potential headquarters locations be calculated in meters with the LEAST operational overhead?

A.

ST_HAUSDORFFDISTANCE

B.

HAVERSINE

C.

ST_LENGTH

D.

ST_DISTANCE

Full Access
Question # 18

A Data Analyst wants to transform query results. Which transformation option will incur compute costs?

A.

Showing a thousand separator for numeric columns.

B.

Sorting a column by using the column options.

C.

Increasing or decreasing decimal precision.

D.

Formatting date and timestamp columns.

Full Access
Question # 19

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?

A.

Option A

B.

Option B

C.

Option C

D.

Option D

Full Access