Summer Sale Limited Time 70% Discount Offer - Ends in 0d 00h 00m 00s - Coupon code: 70track

Free Snowflake COF-C03 Practice Exam with Questions & Answers | Set: 4

Questions 61

Which Snowflake tool provides detailed execution statistics of a query with no cost to the user?

Options:
A.

Query Profile

B.

Query history

C.

Visualization chart

D.

Query acceleration service

Snowflake COF-C03 Premium Access
Questions 62

When unloading data, which combination of parameters should be used to differentiate between empty strings and NULL values? (Select TWO).

Options:
A.

ESCAPE_UNENCLOSED_FIELD

B.

REPLACE_INVALID_CHARACTERS

C.

FIELD_OPTIONALLY_ENCLOSED_BY

D.

EMPTY_FIELD_AS_NULL

E.

SKIP_BLANK_LINES

Questions 63

Which Snowflake feature supports the use of natural language queries to analyze unstructured data?

Options:
A.

Snowsight

B.

Snowflake ML

C.

Snowflake Cortex

D.

Snowflake Horizon Catalog

Questions 64

Which function will return the URL for an external stage by using the stage name as the input?

Options:
A.

GET_ABSOLUTE_PATH

B.

GET_PRESIGNED_URL

C.

GET_STAGE_LOCATION

D.

BUILD_STAGE_FILE_URL

Questions 65

Which table type is used in the file processing pipeline to process unstructured data in Snowflake?

Options:
A.

Temporary

B.

Directory

C.

Standard

D.

Transient

Questions 66

What unit is used to calculate the monthly cost for storing data in Snowflake?

Options:
A.

Gigabyte (GB)

B.

Megabyte (MB)

C.

Terabyte (TB)

D.

Petabyte (PB)

Questions 67

Which option will create a table without data from the CUSTOMERS table?

Options:
A.

CREATE TABLE CUSTOMERS_CLONE LIKE CUSTOMERS;

B.

CREATE TABLE CUSTOMERS_CLONE CLONE CUSTOMERS;

C.

CREATE OR REPLACE TEMP TABLE CUSTOMERS_CLONE (CLONE VARCHAR);

D.

CREATE TABLE CUSTOMERS_CLONE AS SELECT * FROM CUSTOMERS;

Questions 68

Which command is used to lake away staged files from a Snowflake stage after a successful data ingestion?

Options:
A.

DELETE

B.

DROP

C.

REMOVE

D.

TRUNCATE

Questions 69

A Snowflake user is using the QUERY_HISTORY view in the ACCOUNT_USAGE schema to gather information about two queries that ran in the past 10 minutes, but the data is missing. What could cause this to occur?

Options:
A.

The queries were run on a multi-cluster virtual warehouse.

B.

The queries were able to take advantage of the results cache.

C.

The ACCOUNT_USAGE schema does not provide real-time results.

D.

The user does not have privileges to access the QUERY_HISTORY view.

Questions 70

What action will cause the cache associated with compute resources to be dropped?

Options:
A.

Increasing the size of a running standard virtual warehouse

B.

Decreasing the size of a running standard virtual warehouse

C.

Adding a new standard virtual warehouse that is the same size as a running warehouse

D.

Adding a multi-cluster virtual warehouse that is of a similar size to a running warehouse

Questions 71

What Snowflake features are recommended to restrict unauthorized users from accessing Personal Identifiable Information (PII)? (Select TWO).

Options:
A.

Dynamic Data Masking

B.

Transient tables

C.

Secure views

D.

Multi-Factor Authentication (MFA)

E.

Data encryption

Questions 72

If Role_A owns Role_B, what permissions does Role_A have based on this relationship?

Options:
A.

Role_A automatically inherits all privileges assigned to Role_B.

B.

Role_A can use the privileges of Role_B, if Role_A is higher than Role_B in a defined hierarchy.

C.

Role_A can grant or revoke access to the role.

D.

Role_A can execute any tasks assigned to Role_B, without an explicit grant.

Questions 73

A size Small standard virtual warehouse running in auto-suspend mode is used for a production Business Intelligence (BI) reporting environment. The BI reports generate quickly in the early morning, but as the day progresses and there are more users, it takes longer to run the reports. How can this situation be addressed?

Options:
A.

Enable the query acceleration service.

B.

Increase the size of the virtual warehouse.

C.

Disable the auto-suspend mode.

D.

Change the standard warehouse to a multi-cluster warehouse.

Questions 74

What is the LEAST-PRIVILEGED role that can create a share in Snowflake by default?

Options:
A.

SYSADMIN

B.

SECURITYADMIN

C.

USERADMIN

D.

ACCOUNTADMIN

Questions 75

Which role is responsible for managing the billing and credit data within Snowflake?

Options:
A.

ORGADMIN

B.

ACCOUNTADMIN

C.

SYSADMIN

D.

SECURITYADMIN

Questions 76

What action is required to load data from a local file system into a Snowflake table?

Options:
A.

Use the COPY INTO < table > command directly on the local file system.

B.

Upload data files to a Snowflake external stage using the COPY INTO < table > and then use the GET command.

C.

Use the PUT command directly on the local file system.

D.

Upload data files to a Snowflake internal stage using the PUT command and then use the COPY INTO < table > command.

Questions 77

How can a relational table be unloaded into a JSON file?

Options:
A.

Use the OBJECT_CONSTRUCT function with the COPY INTO < location > command.

B.

Use the COPY INTO < location > command with the file format set as JSON.

C.

Use the PUT command with the file format set as JSON.

D.

Use the GET command with the file format set as JSON.

Questions 78

The ORDERS table contains 12,000 rows.

Which query will return 10 rows that are randomly sampled from the table every time the query is run?

Options:
A.

select * from ORDERS fetch 10;

B.

select * from ORDERS limit 10;

C.

select * from ORDERS sample (10);

D.

select * from ORDERS tablesample (10 rows);

Questions 79

Which data types can be used in a Snowflake table that holds semi-structured data? (Select TWO).

Options:
A.

ARRAY

B.

BINARY

C.

TEXT

D.

VARIANT

E.

VARCHAK

Questions 80

A user manages a 2 TB sales table clustered by order_date. Multiple teams query this data, but one specific team repeatedly filters on the region column, retrieving only a few thousand rows per query across hundreds of daily requests. The table is refreshed weekly, and no other teams report performance problems. Which action should be taken to optimize query performance for this specific team?

Options:
A.

Enable clustering on region.

B.

Use the Search Optimization Service.

C.

Use a materialized view with region as clustering key.

D.

Use a standard view with GROUP BY region.