Snowflake SnowPro Core Exam Practice Questions (P. 4)
- Full Access (1152 questions)
- Six months of Premium Access
- Access to one million comments
- Seamless ChatGPT Integration
- Ability to download PDF files
- Anki Flashcard files for revision
- No Captcha & No AdSense
- Advanced Exam Configuration
Question #31
What is the minimum Snowflake edition that customers planning on storing protected information in Snowflake should consider for regulatory compliance?
- AStandard
- BPremier
- CEnterprise
- DBusiness Critical EditionMost Voted
Correct Answer:
D
Reference:
https://docs.snowflake.com/en/user-guide/intro-editions.html
D
Reference:
https://docs.snowflake.com/en/user-guide/intro-editions.html
send
light_mode
delete
Question #32
Select the three types of tables that exist within Snowflake. (Choose three.)
- ATemporaryMost Voted
- BTransientMost Voted
- CProvisional
- DPermanentMost Voted
Correct Answer:
ABD
Reference:
https://community.snowflake.com/s/article/Making-Transient-table-by-Default
ABD
Reference:
https://community.snowflake.com/s/article/Making-Transient-table-by-Default
send
light_mode
delete
Question #33
True or False: Snowpipe via REST API can only reference External Stages as source.
- ATrue
- BFalseMost Voted
Correct Answer:
B
Reference:
https://community.snowflake.com/s/article/Making-Transient-table-by-Default
B
Reference:
https://community.snowflake.com/s/article/Making-Transient-table-by-Default
send
light_mode
delete
Question #34
True or False: A third-party tool that supports standard JDBC or ODBC but has no Snowflake-specific driver will be unable to connect to Snowflake.
- ATrueMost Voted
- BFalse
Correct Answer:
A
Reference:
https://docs.snowflake.com/en/user-guide-connecting.html
A
Reference:
https://docs.snowflake.com/en/user-guide-connecting.html
send
light_mode
delete
Question #35
True or False: It is possible to load data into Snowflake without creating a named File Format object.
- ATrueMost Voted
- BFalse
Correct Answer:
A
Reference:
https://docs.snowflake.com/en/user-guide/data-load-external-tutorial-create-file-format.html
A
Reference:
https://docs.snowflake.com/en/user-guide/data-load-external-tutorial-create-file-format.html
send
light_mode
delete
Question #36
True or False: A table in Snowflake can only be queried using the Virtual Warehouse that was used to load the data.
- ATrue
- BFalseMost Voted
Correct Answer:
B
B

Yep, B is definitely correct. Here's the thing: in Snowflake, any virtual warehouse, regardless of who loaded the data, can query that same data. Even better, if the data is cached, querying doesn't even require a running warehouse—sweet deal for efficiency and savings!
send
light_mode
delete
Question #37
Which of the following statements are true of Snowflake data loading? (Choose three.)
- AVARIANT ג€nullג€ values are not the same as SQL NULL valuesMost Voted
- BIt is recommended to do frequent, single row DMLs
- CIt is recommended to validate the data before loading into the Snowflake target tableMost Voted
- DIt is recommended to use staging tables to manage MERGE statementsMost Voted
Correct Answer:
ACD
ACD

Indeed, when dealing with data loading in Snowflake, it's pivotal to understand that VARIANT data types treat 'null' values differently than traditional SQL NULL values. This distinction is critical for handling semistructured data efficiently. Additionally, employing staging tables is a best practice for managing merge operations effectively, ensuring that data transformations are handled smoothly and reliably before hitting the target table. Lastly, always validate your data before loading to minimize errors and ensure data integrity. These practices are essential for leveraging Snowflake’s capabilities optimally.
send
light_mode
delete
Question #38
Which statements are true of micro-partitions? (Choose two.)
- AThey are approximately 16MB in sizeMost Voted
- BThey are stored compressed only if COMPRESS=TRUE on Table
- CThey are immutableMost Voted
- DThey are only encrypted in the Enterprise edition and above
Correct Answer:
AC
Reference:
https://medium.com/weareservian/seeing-snow-for-the-first-time-snowflake-adventures-part-1-731ddc983c69
AC
Reference:
https://medium.com/weareservian/seeing-snow-for-the-first-time-snowflake-adventures-part-1-731ddc983c69
send
light_mode
delete
Question #39
True or False: Query ID's are unique across all Snowflake deployments and can be used in communication with Snowflake Support to help troubleshoot issues.
- ATrueMost Voted
- BFalse
Correct Answer:
B
B

Query IDs in Snowflake are indeed unique identifiers assigned to each query across all Snowflake deployments. These IDs serve as a critical tool for tracking and managing queries within the system. When you face issues or unexpected results, sharing the Query ID with Snowflake Support can significantly ease the troubleshooting process. This unique ID allows the support team to pinpoint and analyze the exact query in question, facilitating a more efficient resolution.
send
light_mode
delete
Question #40
A deterministic query is run at 8am, takes 5 minutes, and the results are cached. Which of the following statements are true? (Choose two.)
- AThe exact query will ALWAYS return the precomputed result set for the RESULT_CACHE_ACTIVE = time period
- BThe same exact query will return the precomputed results if the underlying data hasn't changed and the results were last accessed within previous 24 hour periodMost Voted
- CThe same exact query will return the precomputed results even if the underlying data has changed as long as the results were last accessed within the previous 24 hour period
- DThe ג€24 hourג€ timer on the precomputed results gets renewed every time the exact query is executedMost Voted
Correct Answer:
BD
BD

Correct, options B and D accurately reflect how Snowflake’s result cache works. For option B, it's vital to recognize that if there is no change to the underlying data and the cached results are accessed within 24 hours, the query will utilize the precomputed results. Option D correctly notes that each time the exact same query is executed, the 24-hour freshness timer for the cached results is reset, effectively renewing the availability of the cache if it's used within this timeframe. This ensures efficient data retrieval without repeated processing, given the specified conditions are met.
send
light_mode
delete
All Pages