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

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?

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;

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

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

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.

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

How should this tile be interpreted?

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.

A Data Analyst needs to temporarily hide a tile in a dashboard. The data will need to be available in the future, and additional data may be added. Which tile should be used?

A.

Show/Hide

B.

Duplicate

C.

Delete

D.

Unplace

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

Which Snowflake feature allows users to encapsulate a series of SQL statements into a reusable database object, facilitating modular code development?

A.

Stored procedure

B.

Materialized view

C.

User-Defined Function (UDF)

D.

Common Table Expressions (CTE)

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.

A Data Analyst created two functions and one procedures:

The Analyst then runs this query:

The Analyst then runs this query:

What will be the output?

A.

Null

B.

10

C.

20

D.

30