Which commands can be used to show available Snowflake Cortex LLM models? (Choose two.)
Answer(s): B,C
Why the correct options (B and C) are the only ones that workB – LS @SNOWFLAK.LS is a shortcut for SHOW MODELS when the target is a database or schema identifier.Using LS @SNOWFLAK. tells Snowflake to list all searchable model objects that reside in the SNOWFLAKEdatabase (the default location for Cortex external models). The command therefore returns every Cortex LLM model that has been registered, making it a valid way to view the available models.C – SHOW VERSIONS LIKE ‘CORTEX’ IN MODEL LLM;SHOW VERSIONS can be applied to a model name pattern.By specifying LIKE 'CORTEX' the statement filters the result set to models whose name begins with“CORTEX”, which includes all Cortex LLM models. The clause IN MODEL LLM targets the LLM model catalog area where Cortex models are stored, so the command returns the version history of each matching Cortex model – another legitimate method for discovering the available models.Why the other options are not suitableA – SHOW MODELS;This lists all models visible to the current session, not limited to the Cortex LLM catalog. Without qualifying the database or applying a filter, the output is too broad and does not specifically surface Cortex models.D – SHOW VERSIONS LIKE ‘CORTEX’ IN MODEL LLM;The syntax is malformed; MODEL LLM is not a valid object reference. SHOW VERSIONS must be issued against an existing model name, not a placeholder like MODEL LLM . Consequently the statement will fail.E – CALL SNOWFLAK.CALL is used to invoke stored procedures, and there is no built-in procedure named SNOWFLAK . This command is syntactically incorrect and cannot be used to enumerate models.E – MODELS.CORTEX_BASE_MODELS_REFRESH ;This appears to be an attempt to call a stored procedure ( REFRESH ) but the syntax is incomplete and not a query command. It does not return a list of models.Duplicate “E” option – The second “E” ( MODELS.CORTEX_BASE_MODELS_REFRESH ) is similarly invalid; it is not a supported SQL statement for listing models.
SHOW MODELS – Snowflake SQL Reference Cortex Overview and Model Registry – Snowflake Documentation
A Gen AI Specialist is building an automated content generator in Snowflake to produce customized product descriptions. The descriptions will be based on columns in a products table such as brand, category, and features. Which Snowflake Cortex LLM function should be used to generate the descriptions?
Answer(s): D
Technical justificationCOMPLETE – The COMPLETE function accepts a prompt that may contain structured data (e.g., product brand, category, features) and returns a generated continuation of natural-language text. This is exactly what is needed to produce varied, context-aware product descriptions from tabular inputs.PARSE_DOCUMENT – Designed for extracting named entities and relationships from semi-structured documents (PDFs, images). It does not generate new text, so it cannot create product descriptions.EMBED_TEXT_768 – Produces a dense vector representation of a given text. It is used for similarity search or classification, not for generating narrative output.SUMMARIZE – Condenses existing text into a shorter version. It does not take tabular data as input nor does it synthesize novel sentences; it only reduces length.Therefore, COMPLETE is the only Cortex LLM function that directly creates new, customized text from a prompt, making it the optimal choice for automated product description generation.
Snowflake Cortex LLM – COMPLETE Function Snowflake Cortex LLM – LLM Functions Overview
DRAG DROP (Drag and Drop is not supported) A Gen AI Specialist has a single document against which they would like to perform completions. The document is too large for the context window of SNOWFLAKE.CORTEX.COMPLETE. In which order should the functions be applied to resolve the issue? Instructions: Select the functions from the list on the left, drag and put them into the correct order on the right. Order 1 is first in the order; Order 5 is the last.
Answer(s): A
Which privileges are required to run a fine-tuning job on a model? (Choose two.)
Answer(s): B,E
Technical justificationB – USAGE on the database used to query the training and validation dataThe fine-tuning job reads the raw training data from a table or external stage, so the role that runs the job must be granted USAGE on the underlying database. This privilege lets the role reference database objects (schemas, tables, views) but does not allow any DML or DDL operations on them.E – CREATE MODEL of OWNERSHIP on the schema where the fine-tuned model will be saved Creating a fine-tuned model involves writing model metadata and artifacts into a schema. The role therefore needs the CREATE MODEL privilege with OWNERSHIP on that schema; this grants the ability to create, register, and own the new model while also permitting the role to store subsequent model versions.Why the other options are not requiredA – READ or WRITE on the stage that contains the model The stage is only needed when staging model artefacts for upload; the fine-tuning process itself does not require direct stage access for the core job, and the privilege can be granted indirectly via database/schema permissions.C – OPERATE on the database used to query the training and validation data OPERATE is a more granular privilege typically used for functions and external services; fine-tuning does not depend on it when only reading data.D – USAGE on the schema where the fine-tuned model will be saved While USAGE allows a role to see a schema, it does not permit creating objects inside it. Without the explicit CREATE MODEL privilege (Option E), the role cannot register the fine-tuned model.Thus, the minimal set of required privileges is B (to read the training data) and E (to own and create the model in the target schema).
Snowflake Documentation – Fine-tuning models in Snowflake Cortex: https://docs.snowflake.com/en/user-guide/cortex-fine-tuning Snowflake Documentation – Privileges for model creation and registration: https://docs.snowflake.com/en/sql-reference/sql/privileges#model-privileges
A Gen AI Specialist has set up a pipeline to process hotel guest reviews. The reviews need to be categorized based on customer sentiment:Which statement will meet this requirement?
Answer(s): B
Which action is supported when using Snowflake Document AI?
Technical JustificationOption D – Supporting multiple users working on the same model build at the same time Snowflake Document AI is built on a multi-tenant, concurrent-access architecture. The underlying compute resources can be shared among many users, allowing several roles to invoke, train, or fine-tune the same custom model simultaneously without requiring exclusive locks or dedicated compute clusters. This enables collaborative model development while still maintaining isolation and security through Snowflake’s role-based access controls.Option A – Extracting an entire table in a single query Document AI is not a data-extraction engine; it does not provide a SQL-based method to pull an entire table directly into a query result set. Data extraction is performed outside of Document AI, typically via Snowflake stages, external tables, or custom pipelines that feed documents into the service.Option B – Processing up to 1000 documents in a single query There is no fixed per-query document limit of 1000 documents defined by Document AI. Processing can scale to thousands of documents per batch, but the limit depends on the chosen processing size configuration and the underlying compute resources, not a hard-coded 1000-document cap.Option C – Altering a database or a schema where the model build is located Changes to the database or schema (e.g., renaming, dropping tables) are not supported through Document AI APIs. Such DDL operations must be executed via standard Snowflake SQL or Snowpark; Document AI only provides model-related actions (training, deployment, inference) and does not expose schema-modification capabilities.Conclusion Only Option D accurately reflects a capability of Snowflake Document AI: its ability to support concurrent user interaction with the same model build. The other options either describe functionalities outside its scope (A, C) or impose artificial limits that do not align with its scalable design (B).
Snowflake Documentation – Document AI Overview: https://docs.snowflake.com/en/snowflake-db/document-ai-overview Snowflake Documentation – Managing Model Builds and Collaboration: https://docs.snowflake.com/en/snowflake-db/document-ai-collaboration
When using Snowflake Cortex, which design factors have the MOST impact on model performance per credit? (Choose two.)
Answer(s): B,D
JustificationB: Complexity of the queries – The difficulty of the input queries determines how many compute cycles the model must consume to generate a response. More complex queries (e.g., multi-step reasoning, extensive context parsing) require deeper model inference and thus consume more credits for each unit of output. Consequently, query complexity directly modulates the performance per credit metric.D: Availability of compute resources – Cortex execution relies on Snowflake’s virtual warehouses (or serverless compute) that are provisioned on demand. When sufficient compute resources are available and properly sized, inference can be completed faster, delivering higher output volume per credit spent. Conversely, inadequate or throttled resources cap the throughput and lower the efficiency per credit.Why the other options are less relevantA: Size of the dataset – Dataset size primarily affects storage costs; after the model has been loaded, inference performance per credit is governed by compute usage, not raw data volume. C. Number of concurrent users – Concurrency influences latency and queuing but does not change the intrinsic compute cost per inference; it only spreads the same compute across more requests. E. Availability region – Geographic placement can affect network latency and compliance, yet it does not directly dictate how many credits a model consumes per unit of performance.Conclusion The complexity of the queries and the availability of compute resources are the two design factors that most strongly dictate model performance per credit in Snowflake Cortex.
Snowflake Cortex Overview & Pricing Model – https://docs.snowflake.com/en/snowflake-cortex/overview Managing Compute Resources for Cortex – https://docs.snowflake.com/en/snowflake-cortex/compute-management
Which SQL functions are designed and optimized to perform and automate specific routine tasks within Snowflake Cortex? (Choose two.)
Answer(s): A,C
Technical justificationANOMALY_DETECTION – A native Cortex function that encapsulates the complete anomaly-detection workflow (model training, scoring, and result extraction) in a single call. It accepts a time-series column and optional parameters, returns a JSON payload with anomaly scores, and is internally optimized for Snowflake’s compute engine, allowing users to automate outlier detection at scale without writing custom model-training code.FORECAST – Provides end-to-end automated time-series forecasting. By passing a series and horizon, the function manages lag selection, model selection, and prediction generation, returning forecast values and confidence intervals directly in SQL. This eliminates the need for manual feature engineering or model selection steps, making it the standard function for routine forecasting tasks within Cortex.CLASSIFICATION – Although Snowflake offers classification capabilities, the CORTEX_CLASSIFY function is not a pre-packaged routine for automatically handling all classification steps; users typically must prepare features, select algorithms, and tune hyper-parameters themselves. Therefore, it is less suitable for “automated routine task” scenarios compared with ANOMALY_DETECTION and FORECAST.PARSE_DOCUMENT and SENTIMENT – These are generic text-processing helpers that operate on semi-structured data but are not part of the Cortex ML ecosystem. They do not provide automated pipeline orchestration for predictive modeling and thus are not classified as Snowflake-optimized routine-task functions.Hence, the two functions explicitly designed to automate routine analytical workflows in Snowflake Cortex are ANOMALY_DETECTION and FORECAST .
Snowflake Documentation – ANOMALY_DETECTION Snowflake Documentation – FORECAST
Share your comments for Snowflake SnowPro Specialty Gen AI GES-C01 exam with other users:
help so much
understand sql col.
i would give 5 stars to this website as i studied for az-800 exam from here. it has all the relevant material available for preparation. i got 890/1000 on the test.
this is nice.
q55- the ridac workflow can be modified using flow designer, correct answer is d not a
by far this is the most accurate exam dumps i have ever purchased. all questions are in the exam. i saw almost 90% of the questions word by word.
i cleared the az-104 exam by scoring 930/1000 on the exam. it was all possible due to this platform as it provides premium quality service. thank you!
question # 232: accessibility, privacy, and innovation are not data quality dimensions.
looks wrong answer for 443 question, please check and update
great question
question: a user wants to start a recruiting posting job posting. what must occur before the posting process can begin? 3 ans: comment- option e is incorrect reason: as part of enablement steps, sap recommends that to be able to post jobs to a job board, a user need to have the correct permission and secondly, be associated with one posting profile at minimum
answer to question 72 is d [sys_user_role]
please provide the pdf
hey guys, just to let you all know that i cleared my 312-38 today within 1 hr with 100 questions and passed. thank you so much brain-dumps.net all the questions that ive studied in this dump came out exactly the same word for word "verbatim". you rock brain-dumps.net!!! section name total score gained score network perimeter protection 16 11 incident response 10 8 enterprise virtual, cloud, and wireless network protection 12 8 application and data protection 13 10 network défense management 10 9 endpoint protection 15 12 incident d
very helpful
useful questions
page :20 https://exam-dumps.com/snowflake/free-cof-c02-braindumps.html?p=20#collapse_453 q 74: true or false: pipes can be suspended and resumed. true. desc.: pausing or resuming pipes in addition to the pipe owner, a role that has the following minimum permissions can pause or resume the pipe https://docs.snowflake.com/en/user-guide/data-load-snowpipe-intro
i want hcia exam dumps
good training
very useful
yes need this exam dumps
these questions are a great eye opener
thank you for providing these questions and answers. they helped me pass my exam. you guys are great.
good knowledge
answer 10 should be a because only a new project will be created & the organization is the same.
can you please upload the dump again
is it legit questions from sap certifications ?
question 16 should be b (changing the connector settings on the monitor) pc and monitor were powered on. the lights on the pc are on indicating power. the monitor is showing an error text indicating that it is receiving power too. this is a clear sign of having the wrong input selected on the monitor. thus, the "connector setting" needs to be switched from hdmi to display port on the monitor so it receives the signal from the pc, or the other way around (display port to hdmi).
q 10. ans is d (in the target org: open deployment settings, click edit next to the source org. select allow inbound changes and save
i purchased this exam dumps from another website with way more questions but they were all invalid and outdate. this exam dumps was right to the point and all from recent exam. it was a hard pass.
it was a good experience and i got 90% in the 200-901 exam.
hi please upload this
please upload it
Keeping this site free takes real effort. We constantly battle automated scraping and unauthorized content copying. A quick account helps us protect the community and keep the site free.
To continue studying for your SnowPro Specialty Gen AI GES-C01, please sign in or create a free account.