1Z0-1127-25 LangChain and AI Application Development Practice Question
A company wants to build a customer service chatbot that answers questions about their internal policy documents. The documents are updated monthly, and the team cannot afford to retrain a model each time. Which approach is MOST appropriate?
⚠ Common exam trap
The 1Z0-1127 exam often tests the misconception that fine-tuning or retraining is the only way to handle dynamic data, but the trap here is that RAG decouples knowledge updates from model updates, making it ideal for frequently changing documents without retraining costs.
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 Retrieval-Augmented Generation (RAG) with the policy documents indexed in a vector store
Retrieval-Augmented Generation (RAG) is the most appropriate approach because it allows the chatbot to answer questions by retrieving relevant chunks from the policy documents stored in a vector store at query time, without requiring model retraining. When documents are updated monthly, only the vector store needs to be re-indexed, while the underlying LLM remains unchanged, making it cost-effective and scalable.
Answer analysis
Option-by-option breakdown
For each option: why learners choose it and why it is or isn't the right answer here.
- ✓
Use Retrieval-Augmented Generation (RAG) with the policy documents indexed in a vector store
Why this is correct
RAG retrieves relevant document chunks at query time, ensuring the chatbot always answers from the latest uploaded documents without any model retraining.
- ✗
Use a larger foundation model with a longer context window and paste all documents into each prompt
Why it's wrong here
Pasting all documents into every prompt is expensive, hits context limits for large document sets, and does not scale as the document library grows.
- ✗
Fine-tune a base LLM on the policy documents monthly
Why it's wrong here
Fine-tuning is expensive and time-consuming; monthly cycles are impractical and fine-tuned knowledge becomes stale immediately after cutoff.
- ✗
Train a custom model from scratch on the policy documents each month
Why it's wrong here
Training from scratch requires massive compute resources and weeks of time — entirely disproportionate for monthly document updates.
Go deeper
Related to this question
About these practice questions
One of 768 original 1Z0-1127-25 practice questions on Courseiva, each with a full explanation and wrong-answer analysis — not exam dumps or protected exam content. Learn why practice questions differ from exam dumps →
JA
Written by Johnson Ajibi, MSc IT Security
Senior Network & Security Engineer · founder of Courseiva
This 1Z0-1127-25 practice question is part of Courseiva's free Oracle 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 1Z0-1127-25 exam.