Question 50 of 500
Applications of Foundation ModelsmediumMultiple SelectObjective-mapped

Quick Answer

The correct answer is Amazon Kendra and Bedrock Guardrails. Amazon Kendra is a managed search service that indexes company-specific data sources, allowing the Bedrock chatbot to retrieve relevant documents and ground its responses in authoritative, up-to-date information rather than relying solely on the model’s training data. Bedrock Guardrails provides configurable content filters and topic policies that block harmful, biased, or off-topic outputs, ensuring the chatbot adheres to safety and compliance requirements. On the AWS Certified AI Practitioner AIF-C01 exam, this question tests your understanding of how to combine retrieval-augmented generation (RAG) with safety controls—a common scenario where candidates mistakenly choose a general-purpose vector database or a standalone moderation API. A common trap is thinking that Bedrock itself handles grounding, but it requires an external data source like Kendra. Remember the pairing: Kendra for knowledge grounding, Guardrails for content filtering—think “Kendra keeps it real, Guardrails keeps it clean.”

AIF-C01 Applications of Foundation Models Practice Question

This AIF-C01 practice question tests your understanding of applications of foundation models. 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 is building a chatbot using Amazon Bedrock. They want to ensure the model's responses are grounded in company-specific data and that harmful content is filtered out. Which two services or features should they use? (Choose TWO.)

Question 1mediummulti select
Full question →

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

Amazon Kendra

Amazon Kendra is correct because it provides a managed search service that indexes company-specific data sources, enabling the Bedrock chatbot to retrieve relevant documents and ground its responses in authoritative information. Bedrock Guardrails is correct because it allows you to define content filters and topic policies to block harmful or undesirable outputs, ensuring the chatbot adheres to safety and compliance requirements.

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.

  • Amazon Kendra

    Why this is correct

    Correct: Amazon Kendra can be used as a knowledge base for RAG to ground responses in company data.

    Related concept

    Read the scenario before looking for a memorised answer.

  • Bedrock Agents

    Why it's wrong here

    Wrong: Bedrock Agents help build autonomous agents but do not inherently provide grounding or content filtering.

  • Amazon Comprehend

    Why it's wrong here

    Wrong: Amazon Comprehend is for NLP insights, not for grounding or filtering.

  • Bedrock Guardrails

    Why this is correct

    Correct: Bedrock Guardrails allow content filtering to block harmful outputs.

    Related concept

    Read the scenario before looking for a memorised answer.

  • Amazon SageMaker JumpStart

    Why it's wrong here

    Wrong: SageMaker JumpStart provides pre-built models but not directly for grounding or filtering.

Common exam traps

Common exam trap: answer the scenario, not the keyword

AWS often tests the distinction between services that provide grounding (Kendra) versus those that orchestrate actions (Agents), and between content filtering (Guardrails) versus general NLP (Comprehend), leading candidates to confuse the roles of Bedrock Agents and Amazon Comprehend.

Detailed technical explanation

How to think about this question

Under the hood, Amazon Kendra uses a semantic search engine with a neural retriever to rank relevant passages from indexed documents, which can be passed as context to the Bedrock model via the RetrieveAndGenerate API. Bedrock Guardrails applies configurable filters (e.g., hate, insults, sexual content) and denied topics at inference time, intercepting both input prompts and model outputs before they reach the user. In a real-world scenario, a financial services chatbot might use Kendra to pull from internal policy PDFs and Guardrails to block advice on illegal investments.

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 cloud solutions architect for a retail company is evaluating services for a new workload. The correct answer here reflects best practice for the specific scenario described — not a general cloud recommendation. Answer the scenario, not the keyword: identify the specific constraint before choosing the most familiar-sounding option. Cloud exam questions reward reading the constraint carefully: the same technology can be right or wrong depending on the use case.

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.

Related practice questions

Related AIF-C01 practice-question pages

Use these pages to review the topic behind this question. This is how one missed question becomes focused revision.

Practice this exam

Start a free AIF-C01 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 AIF-C01 question test?

Applications of Foundation Models — This question tests Applications of Foundation Models — Read the scenario before looking for a memorised answer..

What is the correct answer to this question?

The correct answer is: Amazon Kendra — Amazon Kendra is correct because it provides a managed search service that indexes company-specific data sources, enabling the Bedrock chatbot to retrieve relevant documents and ground its responses in authoritative information. Bedrock Guardrails is correct because it allows you to define content filters and topic policies to block harmful or undesirable outputs, ensuring the chatbot adheres to safety and compliance requirements.

What should I do if I get this AIF-C01 question wrong?

Identify which exam domain this question belongs to, review the core concept, then practise similar questions from the same domain.

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 →

How Courseiva writes practice questions · Editorial policy

Same concept, more angles

3 more ways this is tested on AIF-C01

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 company uses Amazon Bedrock to build a chatbot. The chatbot needs to answer questions based on internal company documents. Which AWS service should be integrated with Bedrock to enable Retrieval Augmented Generation (RAG) without managing infrastructure?

easy
  • A.Amazon OpenSearch Service
  • B.Amazon DynamoDB
  • C.Amazon RDS
  • D.Amazon Kendra

Why D: Amazon Kendra is a fully managed intelligent search service that can be directly integrated with Amazon Bedrock to implement Retrieval Augmented Generation (RAG) without any infrastructure management. It indexes internal company documents and retrieves relevant passages, which are then passed to the foundation model as context to generate accurate, grounded answers.

Variation 2. A company is building a chatbot using Amazon Bedrock. They want to provide up-to-date information from a continuously changing database. Which TWO services can be used as a data source for a Bedrock knowledge base? (Select TWO.)

medium
  • A.Amazon Kendra
  • B.Amazon S3
  • C.Amazon RDS for MySQL
  • D.Amazon DynamoDB
  • E.AWS Glue

Why A: Amazon Bedrock knowledge bases can directly ingest data from Amazon S3, which is a supported data source for indexing documents. Amazon Kendra is also a supported data source, allowing Bedrock to leverage existing Kendra indexes for retrieval-augmented generation (RAG). Both services integrate natively with Bedrock knowledge bases to provide up-to-date information from continuously changing data.

Variation 3. A developer is using Amazon Bedrock with the Claude model for text summarization. The output sometimes includes inaccurate information. What is the best practice to reduce hallucinations?

medium
  • A.Use a larger model
  • B.Increase temperature
  • C.Use retrieval augmented generation
  • D.Decrease max tokens

Why C: Retrieval Augmented Generation (RAG) grounds the model with factual data from a knowledge base, reducing hallucinations. Increasing temperature (A) may increase randomness. Using a larger model (C) does not guarantee accuracy. Decreasing max tokens (D) might truncate output but not address factual accuracy.

Keep practising

More AIF-C01 practice questions

Last reviewed: Jun 30, 2026

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.

Loading comments…

Sign in to join the discussion.

This AIF-C01 practice question is part of Courseiva's free Amazon Web Services 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 AIF-C01 exam.