ExamGecko
Home / Snowflake / SnowPro Core
Ask Question

Snowflake SnowPro Core Practice Test - Questions Answers, Page 10

Question list
Search

Question 91

Report
Export
Collapse

Which of the following compute resources or features are managed by Snowflake? (Select TWO).

Execute a COPY command
Execute a COPY command
Updating data
Updating data
Snowpipe
Snowpipe
AUTOMATIC__CLUSTERING
AUTOMATIC__CLUSTERING
Scaling up a warehouse
Scaling up a warehouse
Suggested answer: C, E

Explanation:

Snowflake manages various compute resources and features, including Snowpipe and the ability to scale up a warehouse. Snowpipe is Snowflake's continuous data ingestion service that allows users to load data as soon as it becomes available. Scaling up a warehouse refers to increasing the compute resources allocated to a virtual warehouse to handle larger workloads or improve performance.

[COF-C02] SnowPro Core Certification Exam Study Guide

Snowflake Documentation on Snowpipe and Virtual Warehouses1

asked 23/09/2024
Konstantinos Lagoudakis
28 questions

Question 92

Report
Export
Collapse

Which Snowflake feature is used for both querying and restoring data?

Cluster keys
Cluster keys
Time Travel
Time Travel
Fail-safe
Fail-safe
Cloning
Cloning
Suggested answer: B

Explanation:

Snowflake's Time Travel feature is used for both querying historical data in tables and restoring and cloning historical data in databases, schemas, and tables3. It allows users to access historical data within a defined period (1 day by default, up to 90 days for Snowflake Enterprise Edition) and is a key feature for data recovery and management.Reference:[COF-C02] SnowPro Core Certification Exam Study Guide

asked 23/09/2024
Longin Winconek
39 questions

Question 93

Report
Export
Collapse

A company strongly encourages all Snowflake users to self-enroll in Snowflake's default Multi-Factor Authentication (MFA) service to provide increased login security for users connecting to Snowflake.

Which application will the Snowflake users need to install on their devices in order to connect with MFA?

Okta Verify
Okta Verify
Duo Mobile
Duo Mobile
Microsoft Authenticator
Microsoft Authenticator
Google Authenticator
Google Authenticator
Suggested answer: B

Explanation:

Snowflake's default Multi-Factor Authentication (MFA) service is powered by Duo Security. Users are required to install the Duo Mobile application on their devices to use MFA for increased login security when connecting to Snowflake.This service is managed entirely by Snowflake, and users do not need to sign up separately with Duo1.

asked 23/09/2024
FRANK THYS
38 questions

Question 94

Report
Export
Collapse

Which Snowflake objects track DML changes made to tables, like inserts, updates, and deletes?

Pipes
Pipes
Streams
Streams
Tasks
Tasks
Procedures
Procedures
Suggested answer: B

Explanation:

In Snowflake, Streams are the objects that track Data Manipulation Language (DML) changes made to tables, such as inserts, updates, and deletes. Streams record these changes along with metadata about each change, enabling actions to be taken using the changed data.This process is known as change data capture (CDC)2.

asked 23/09/2024
Zakaria Boujli
28 questions

Question 95

Report
Export
Collapse

What tasks can be completed using the copy command? (Select TWO)

Columns can be aggregated
Columns can be aggregated
Columns can be joined with an existing table
Columns can be joined with an existing table
Columns can be reordered
Columns can be reordered
Columns can be omitted
Columns can be omitted
Data can be loaded without the need to spin up a virtual warehouse
Data can be loaded without the need to spin up a virtual warehouse
Suggested answer: C, D

Explanation:

The COPY command in Snowflake allows for the reordering of columns as they are loaded into a table, and it also permits the omission of columns from the source file during the load process. This provides flexibility in handling the schema of the data being ingested.

Reference: [COF-C02] SnowPro Core Certification Exam Study Guide

asked 23/09/2024
Mithun E
50 questions

Question 96

Report
Export
Collapse

What feature can be used to reorganize a very large table on one or more columns?

Micro-partitions
Micro-partitions
Clustering keys
Clustering keys
Key partitions
Key partitions
Clustered partitions
Clustered partitions
Suggested answer: B

Explanation:

Clustering keys in Snowflake are used to reorganize large tables based on one or more columns. This feature optimizes the arrangement of data within micro-partitions to improve query performance, especially for large tables where efficient data retrieval is crucial.

Reference: [COF-C02] SnowPro Core Certification Exam Study Guide

https://docs.snowflake.com/en/user-guide/tables-clustering-keys.html

asked 23/09/2024
Alan Phillips
43 questions

Question 97

Report
Export
Collapse

What SQL command would be used to view all roles that were granted to user.1?

show grants to user USER1;
show grants to user USER1;
show grants of user USER1;
show grants of user USER1;
describe user USER1;
describe user USER1;
show grants on user USER1;
show grants on user USER1;
Suggested answer: A

Explanation:

The correct command to view all roles granted to a specific user in Snowflake isSHOW GRANTS TO USER <user_name>;. This command lists all access control privileges that have been explicitly granted to the specified user.

Reference:SHOW GRANTS | Snowflake Documentation

asked 23/09/2024
Dipuo Ngwenya
27 questions

Question 98

Report
Export
Collapse

Which of the following can be executed/called with Snowpipe?

A User Defined Function (UDF)
A User Defined Function (UDF)
A stored procedure
A stored procedure
A single copy_into statement
A single copy_into statement
A single insert__into statement
A single insert__into statement
Suggested answer: C

Explanation:

Snowpipe is used for continuous, automated data loading into Snowflake. It uses aCOPY INTO <table>statement within a pipe object to load data from files as soon as they are available in a stage. Snowpipe does not execute UDFs, stored procedures, or insert statements.

Reference:Snowpipe | Snowflake Documentation

asked 23/09/2024
Pavol Adamcin
35 questions

Question 99

Report
Export
Collapse

What Snowflake role must be granted for a user to create and manage accounts?

ACCOUNTADMIN
ACCOUNTADMIN
ORGADMIN
ORGADMIN
SECURITYADMIN
SECURITYADMIN
SYSADMIN
SYSADMIN
Suggested answer: A

Explanation:

The ACCOUNTADMIN role is required for a user to create and manage accounts in Snowflake.This role has the highest level of privileges and is responsible for managing all aspects of the Snowflake account, including the ability to create and manage other user accounts1.

https://docs.snowflake.com/en/user-guide/security-access-control-considerations.html

asked 23/09/2024
Ryan Campbell
24 questions

Question 100

Report
Export
Collapse

When unloading to a stage, which of the following is a recommended practice or approach?

Set SINGLE: = true for larger files
Set SINGLE: = true for larger files
Use OBJECT_CONSTRUCT ( * ) when using Parquet
Use OBJECT_CONSTRUCT ( * ) when using Parquet
Avoid the use of the CAST function
Avoid the use of the CAST function
Define an individual file format
Define an individual file format
Suggested answer: D

Explanation:

When unloading data to a stage, it is recommended to define an individual file format.This ensures that the data is unloaded in a consistent and expected format, which can be crucial for downstream processing and analysis2

asked 23/09/2024
Gaston Cruz
37 questions
Total 627 questions
Go to page: of 63