Summer Sale - Special 70% Discount Offer - Ends in 0d 00h 00m 00s - Coupon code: 70dumps

DAA-C01 Questions and Answers

Question # 6

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?

Question # 6

A.

Option A

B.

Option B

C.

Option C

D.

Option D

Full Access
Question # 7

A Data Analyst is working with three tables:

Question # 7

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

Question # 7

A)

Question # 7

B)

Question # 7

C)

Question # 7

D)

Question # 7

A.

Option A

B.

Option B

C.

Option C

D.

Option D

Full Access
Question # 8

What are the PRIMARY reasons for using integrity constraints on Snowflake tables? (Select TWO).

A.

To enforce that a value in a foreign key must match the value of a primary or unique key in a parent table.

B.

To enforce that records with a NOT NULL column must have values in that column.

C.

To enable team members to see how tables relate to one another.

D.

To enforce that records with a UNIQUE column must have all distinct values in that column.

E.

To allow for clustering on the primary and foreign keys by specifying them as clustering keys.

Full Access
Question # 9

A Data Analyst created a SQL statement that updates a table used for reporting. The Analyst now wants to automate the execution of that SQL.

The Analyst decides to use a task for this along with a stream called MYSTREAM on the source table so only they can update the table if there is new data.

Which statement will create a task that will execute when there is new data in MYSTREAM without having to be executed manually?

A)

Question # 9

B)

Question # 9

C)

Question # 9

D)

Question # 9

A.

Option A

B.

Option B

C.

Option C

D.

Option D

Full Access
Question # 10

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:

Question # 10

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

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

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

Full Access
Question # 11

A Data Analyst is creating a Snowsight dashboard from a shared worksheet. What happens to the access and permissions of the users who initially had sharing privileges on the worksheet?

A.

The original users retain access and permissions on the worksheet.

B.

The original users gain additional access to the worksheet.

C.

The original users temporarily lose access but regain it once the dashboard is created.

D.

The original users lose access to the worksheet, their permissions on the worksheet are revoked.

Full Access
Question # 12

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 # 13

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?

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.

Full Access
Question # 14

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 # 15

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?

Question # 15

A.

Option A

B.

Option B

C.

Option C

D.

Option D

Full Access
Question # 16

A Data Analyst created two tables that are related by a foreign key, using the following commands:

Question # 16

Then the Analyst renamed the referenced table using the following command: ALTER TABLE mother RENAME TO father; What happens to the foreign key after the referenced table is renamed?

A.

The foreign key becomes invalid because the referenced table no longer exists.

B.

The foreign key is dropped because the reference is no longer valid.

C.

The foreign key will not be used during the query rewrite.

D.

The foreign key is updated to reference the renamed table.

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

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?

A.

forecast_model!SHOW_EVALUATION_METRICS()

B.

forecast_model!SHOW_TRAINING_LOGS()

C.

forecast_model!EXPLAIN_FEATURE_IMPORTANCE()

D.

forecast_model!FORECAST()

Full Access
Question # 19

Consider the following chart.

Question # 19

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