- (Topic 1)
Which Snowflake partner specializes in data catalog solutions?
Correct Answer:A
Alation is known for specializing in data catalog solutions and is a partner of Snowflake. Data catalog solutions are essential for organizations to effectively manage their metadata and make it easily accessible and understandable for users, which aligns with the capabilities provided by Alation.
References:
✑ [COF-C02] SnowPro Core Certification Exam Study Guide
✑ Snowflake??s official documentation and partner listings
- (Topic 3)
What type of columns does Snowflake recommend to be used as clustering keys? (Select TWO).
Correct Answer:CD
Snowflake recommends using columns with very high cardinality and those that are most actively used in selective filters as clustering keys. High cardinality columns have a wide range of unique values, which helps in evenly distributing the data across micro-partitions. Columns used in selective filters help in pruning the number of micro- partitions to scan, thus improving query performance. References: Based on general database optimization principles.
- (Topic 3)
What can a Snowflake user do in the Admin area of Snowsight?
Correct Answer:A
In the Admin area of Snowsight, users can analyze query performance, manage Snowflake warehouses, set up and view details about resource monitors, manage users and roles, and administer Snowflake accounts in their organization2.
- (Topic 2)
Why does Snowflake recommend file sizes of 100-250 MB compressed when loading data?
Correct Answer:D
Snowflake recommends file sizes between 100-250 MB compressed when loading data to optimize parallel processing. Smaller, compressed files can be loaded in parallel, which maximizes the efficiency of the virtual warehouses and speeds up the data loading process
- (Topic 6)
Which function is used to unload a relational table into a JSON file*?
Correct Answer:D
TheTO_JSONfunction in Snowflake is used to convert a relational table or individual rows into JSON format. This function is helpful for exporting data in JSON format.
✑ Using TO_JSON Function:
SELECT TO_JSON(OBJECT_CONSTRUCT(*))
FROM my_table;
✑ Exporting Data:TheTO_JSONfunction converts the table rows into JSON format, which can then be exported to a file.
References:
✑ Snowflake Documentation: TO_JSON Function
✑ Snowflake Documentation: Exporting Data
- (Topic 3)
What computer language can be selected when creating User-Defined Functions (UDFs) using the Snowpark API?
Correct Answer:C
The Snowpark API allows developers to create User-Defined Functions (UDFs) in various languages, including Python, which is known for its ease of use and wide adoption in data-related tasks. References: Based on general programming and cloud data service knowledge as of 2021.