A VARIANT column in Snowflake can store semi-structured data types. This includes:
B. OBJECT: An object is a collection of key-value pairs in JSON, and a VARIANT column can store this type of data structure.
D. ARRAY: An array is an ordered list of zero or more values, which can be of any variant-supported data type, including objects or other arrays.
The VARIANT data type is specifically designed to handle semi-structured data like JSON, Avro, ORC, Parquet, or XML, allowing for the storage of nested and complex data structures.
[References:, Snowflake Documentation onSemi-Structured Data Types, SnowPro® Core Certification Study Guide, , ]
Question 45
Which of the following can be executed/called with Snowpipe?
Snowpipe is used for continuous, automated data loading into Snowflake. It uses a COPY 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. References: Snowpipe | Snowflake Documentation
Question 46
Which Snowflake feature is used for both querying and restoring data?
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. References: [COF-C03] SnowPro Core Certification Exam Study Guide
Victoria
Hey, guess what? I passed the certification exam! I couldn't have done it without Cramkey Dumps.
IsabelJun 7, 2026
Same here! I was so surprised when I saw that almost all the questions on the exam were exactly what I found in their study materials.
Reeva
Wow what a success I achieved today. Thank you so much Cramkey for amazing Dumps. All students must try it.
AmariJun 1, 2026
Wow, that's impressive. I'll definitely keep Cramkey in mind for my next exam.
Kingsley
Do anyone guide my how these dumps would be helpful for new students like me?
HarisJun 7, 2026
Absolutely! They are highly recommended for anyone looking to pass their certification exam. The dumps are easy to understand and follow, making it easier for you to study and retain the information.
Lennie
I passed my exam and achieved wonderful score, I highly recommend it.
EmeliaJun 15, 2026
I think I'll give Cramkey a try next time I take a certification exam. Thanks for the recommendation!
Question 47
Which of the following describes external functions in Snowflake?
Options:
A.
They are a type of User-defined Function (UDF).
B.
They contain their own SQL code.
C.
They call code that is stored inside of Snowflake.
D.
They can return multiple rows for each row received
External functions in Snowflake are a special type of User-Defined Function (UDF) that call code executed outside of Snowflake, typically through a remote service. Unlike traditional UDFs, external functions do not contain SQL code within Snowflake; instead, they interact with external services to process data2.