- A
Deploy a general-purpose chatbot without customization
Why wrong: A general-purpose chatbot may not understand domain-specific queries, leading to poor customer experience.
- B
Use a pre-built conversational AI platform with Retrieval-Augmented Generation (RAG)
A pre-built platform with RAG allows rapid deployment and leverages existing knowledge base, maximizing ROI in the short term.
- C
Build a custom LLM from scratch using their data
Why wrong: Building from scratch is extremely resource-intensive and not feasible for a 6-month ROI.
- D
Fine-tune a foundation model on historical support tickets
Why wrong: Fine-tuning requires significant data preparation and training time, delaying ROI.
Quick Answer
The answer is to use a pre-built conversational AI platform with Retrieval-Augmented Generation (RAG) to maximize ROI in the first six months. This approach maximizes ROI because RAG dynamically retrieves relevant information from your existing knowledge base at inference time, enabling accurate, context-aware responses without costly retraining or custom model development, which directly addresses the need to automate customer support quickly and cost-effectively. On the Google Cloud Generative AI Leader exam, this scenario tests your understanding of balancing rapid deployment with low upfront investment—a common trap is assuming custom fine-tuning yields faster returns, when in fact RAG’s retrieval mechanism avoids expensive model updates while leveraging your existing data. Remember the memory tip: “Retrieve first, train never” to recall that RAG prioritizes real-time knowledge retrieval over model retraining for immediate, high-accuracy support automation.
Generative AI Leader Practice Question: Business Strategies for Generative AI Solutions
This Generative AI Leader practice question tests your understanding of business strategies for generative ai solutions. Read the scenario carefully and evaluate each option against the stated constraints before committing to an answer. After answering, compare your reasoning against the explanation and wrong-answer breakdown below. Once you have made your selection, read the full explanation to reinforce the concept and understand why each distractor is designed to mislead on exam day.
A company wants to use GenAI to automate customer support. They have a large knowledge base. Which approach maximizes ROI in the first 6 months?
Clue words in this question
Noticing these words before you look at the options changes how you read each choice.
Clue:
"first"Why it matters: Order matters here. You are being tested on which action comes before the others — not which action is generally useful.
Answer choices
Why each option matters
Answer the question above first, then reveal the full breakdown to understand why each option is right or wrong.
Correct answer & explanation
Use a pre-built conversational AI platform with Retrieval-Augmented Generation (RAG)
Option B maximizes ROI in the first 6 months because it leverages a pre-built conversational AI platform integrated with Retrieval-Augmented Generation (RAG). RAG allows the model to dynamically retrieve relevant information from the existing knowledge base at inference time, providing accurate, context-aware responses without the need for costly retraining or custom model development. This approach balances rapid deployment, low upfront investment, and high accuracy, making it the most cost-effective solution for automating customer support quickly.
Key principle: Answer the scenario, not the keyword: identify the specific constraint before choosing the most familiar-sounding option.
Answer analysis
Option-by-option breakdown
For each option: why learners choose it and why it is or isn't the right answer here.
- ✗
Deploy a general-purpose chatbot without customization
Why it's wrong here
A general-purpose chatbot may not understand domain-specific queries, leading to poor customer experience.
- ✓
Use a pre-built conversational AI platform with Retrieval-Augmented Generation (RAG)
Why this is correct
A pre-built platform with RAG allows rapid deployment and leverages existing knowledge base, maximizing ROI in the short term.
Clue confirmation
The clue word "first" in the question point toward this answer.
Related concept
Read the scenario before looking for a memorised answer.
- ✗
Build a custom LLM from scratch using their data
Why it's wrong here
Building from scratch is extremely resource-intensive and not feasible for a 6-month ROI.
- ✗
Fine-tune a foundation model on historical support tickets
Why it's wrong here
Fine-tuning requires significant data preparation and training time, delaying ROI.
Common exam traps
Common exam trap: answer the scenario, not the keyword
Google Cloud often tests the misconception that fine-tuning is always the best way to incorporate proprietary data, but the trap here is that fine-tuning does not provide real-time access to a dynamic knowledge base and is far more resource-intensive than RAG, which is the optimal strategy for rapid, cost-effective deployment in customer support scenarios.
Detailed technical explanation
How to think about this question
RAG combines a retriever (e.g., a dense passage retrieval model like DPR or a sparse retriever like BM25) with a generator (e.g., an LLM). At query time, the retriever searches a vector database of embedded knowledge base chunks, returning the top-k relevant passages, which are then prepended to the user query as context for the LLM. This architecture ensures the model's output is grounded in verifiable sources, reducing hallucination rates by over 30% in production benchmarks, and allows the knowledge base to be updated independently without retraining the LLM.
KKey Concepts to Remember
- Read the scenario before looking for a memorised answer.
- Find the constraint that changes the correct option.
- Eliminate answers that are true in general but not in this case.
TExam Day Tips
- Watch for words such as best, first, most likely and least administrative effort.
- Review why wrong options are wrong, not only why the correct option is correct.
Key takeaway
Answer the scenario, not the keyword: identify the specific constraint before choosing the most familiar-sounding option.
Real-world example
How this comes up in practice
A startup's cloud architect reviews their monthly bill and notices costs are higher than expected for a long-running batch job. Switching from on-demand instances to Reserved Instances — or using Spot/Preemptible VMs — can reduce compute costs by up to 72 %. Questions like this test whether you understand the tradeoffs between commitment, flexibility, and cost across cloud pricing models.
What to study next
Got this wrong? Here's your next step.
Identify which exam domain this question belongs to, review the core concept, then practise similar questions from the same domain.
- →
Business Strategies for Generative AI Solutions — study guide chapter
Learn the concepts, then practise the questions
- →
Business Strategies for Generative AI Solutions practice questions
Targeted practice on this topic area only
- →
All Generative AI Leader questions
500 questions across all exam domains
- →
Google Cloud Generative AI Leader Generative AI Leader study guide
Full concept coverage aligned to exam objectives
- →
Generative AI Leader practice test guide
How to use practice tests most effectively before exam day
Related practice questions
Related Generative AI Leader practice-question pages
Use these pages to review the topic behind this question. This is how one missed question becomes focused revision.
Fundamentals of Generative AI practice questions
Practise Generative AI Leader questions linked to Fundamentals of Generative AI.
Business Strategies for Generative AI Solutions practice questions
Practise Generative AI Leader questions linked to Business Strategies for Generative AI Solutions.
Google Cloud's Generative AI Offerings practice questions
Practise Generative AI Leader questions linked to Google Cloud's Generative AI Offerings.
Techniques to Improve Generative AI Model Output practice questions
Practise Generative AI Leader questions linked to Techniques to Improve Generative AI Model Output.
Generative AI Leader fundamentals practice questions
Practise Generative AI Leader questions linked to Generative AI Leader fundamentals.
Generative AI Leader scenario practice questions
Practise Generative AI Leader questions linked to Generative AI Leader scenario.
Generative AI Leader troubleshooting practice questions
Practise Generative AI Leader questions linked to Generative AI Leader troubleshooting.
Practice this exam
Start a free Generative AI Leader practice session
Short sessions build daily habit. Longer sessions build exam-day stamina. Try a timed session to simulate real conditions.
FAQ
Questions learners often ask
What does this Generative AI Leader question test?
Business Strategies for Generative AI Solutions — This question tests Business Strategies for Generative AI Solutions — Read the scenario before looking for a memorised answer..
What is the correct answer to this question?
The correct answer is: Use a pre-built conversational AI platform with Retrieval-Augmented Generation (RAG) — Option B maximizes ROI in the first 6 months because it leverages a pre-built conversational AI platform integrated with Retrieval-Augmented Generation (RAG). RAG allows the model to dynamically retrieve relevant information from the existing knowledge base at inference time, providing accurate, context-aware responses without the need for costly retraining or custom model development. This approach balances rapid deployment, low upfront investment, and high accuracy, making it the most cost-effective solution for automating customer support quickly.
What should I do if I get this Generative AI Leader question wrong?
Identify which exam domain this question belongs to, review the core concept, then practise similar questions from the same domain.
Are there clue words in this question I should notice?
Yes — watch for: "first". Order matters here. You are being tested on which action comes before the others — not which action is generally useful.
What is the key concept behind this question?
Read the scenario before looking for a memorised answer.
About these practice questions
Courseiva creates original exam-style practice questions with explanations and wrong-answer analysis. It does not publish real exam questions, exam dumps, or protected exam content. Learn why practice questions differ from exam dumps →
Same concept, more angles
1 more ways this is tested on Generative AI Leader
These questions test the same concept from different angles. Work through them to make sure you can recognise it however the exam phrases it.
Variation 1. A retail company wants to deploy a generative AI chatbot to assist customers with product recommendations. The chatbot must align with the company's brand voice and provide accurate, up-to-date information. Which strategy should the company prioritize when developing this solution?
easy- ✓ A.Ground the model with proprietary product data and brand guidelines in a retrieval-augmented generation (RAG) architecture.
- B.Use a generic pre-trained model without customization to reduce development time.
- C.Deploy a large language model with a feedback loop to iteratively improve responses.
- D.Train the model on public customer reviews to capture common preferences.
Why A: Option A is correct because retrieval-augmented generation (RAG) allows the chatbot to ground its responses in the company's proprietary product data and brand guidelines, ensuring factual accuracy and brand consistency. By retrieving relevant information from a curated knowledge base at inference time, the model can provide up-to-date recommendations without requiring retraining, which is critical for a retail environment with frequently changing inventory.
Last reviewed: Jun 30, 2026
This Generative AI Leader practice question is part of Courseiva's free Google Cloud certification practice question bank. Courseiva provides original exam-style practice questions with explanations, topic-based practice, mock exams, readiness tracking, and study analytics to help learners prepare for the Generative AI Leader exam.
Question Discussion
Share a tip, memory trick, or ask about the reasoning behind this question. Do not post real exam questions, leaked content, braindumps, or copyrighted exam material. Comments are moderated and may be removed without notice.
Sign in to join the discussion.