← AWS GenAI Developer AIP-C01 · AWS GenAI Developer AIP-C01

AWS Generative AI Developer AIP-C01 Practice Quiz

AWS GenAI Developer AIP-C01 certification badge
Time left --:--:--
Question 1 / 60 · 60 unanswered
Question 1 of 60
Which Amazon Bedrock feature provides a fully managed RAG pipeline that automatically handles chunking, embedding, and vector storage from S3 data sources?
1 / 60
Question 2 of 60
A developer is building a RAG application and notices that retrieved chunks often contain only partial answers because the chunks are too small. What chunking strategy adjustment should they make?
2 / 60
Question 3 of 60
Which inference parameter controls the randomness of a foundation model's output, where a lower value produces more deterministic responses?
3 / 60
Question 4 of 60
A company wants to build an agent that can look up real-time stock prices and then execute trades based on the result. Which Amazon Bedrock feature enables the agent to call external APIs as part of its reasoning loop?
4 / 60
Question 5 of 60
What is the ReAct pattern in the context of agentic AI?
5 / 60
Question 6 of 60
Which AWS vector store is natively integrated with Amazon Bedrock Knowledge Bases and provides serverless vector search at scale?
6 / 60
Question 7 of 60
A developer wants to use pgvector for storing embeddings in a RAG application. Which AWS database service supports this?
7 / 60
Question 8 of 60
What is the primary trade-off between using RAG versus fine-tuning a foundation model to incorporate company-specific knowledge?
8 / 60
Question 9 of 60
Which parameter limits the total number of tokens the model can generate in a single response?
9 / 60
Question 10 of 60
A developer is experiencing high latency in their Bedrock application during peak traffic. They want to guarantee a minimum level of throughput. Which Bedrock feature should they configure?
10 / 60
Question 11 of 60
In a RAG pipeline, what is the purpose of the 'augmentation' step?
11 / 60
Question 12 of 60
Which Amazon Bedrock Guardrails capability can automatically detect and redact sensitive information like credit card numbers and social security numbers from model inputs and outputs?
12 / 60
Question 13 of 60
A generative AI application is producing responses that are not grounded in the retrieved documents and contains fabricated information. Which Bedrock Guardrails feature can help detect and block these ungrounded responses?
13 / 60
Question 14 of 60
What is the primary purpose of the 'system prompt' in a foundation model interaction?
14 / 60
Question 15 of 60
A developer is selecting a foundation model for a document summarization task. The documents are 50,000 tokens long. Which model characteristic is most critical to evaluate first?
15 / 60
Question 16 of 60
Which metric is commonly used to evaluate the quality of text generated by AI models by comparing n-gram overlaps with reference texts?
16 / 60
Question 17 of 60
A team is building a customer support agent that needs to retrieve answers from a product manual and also check order status via an API. What is the correct Amazon Bedrock architecture?
17 / 60
Question 18 of 60
What does the 'top-p' (nucleus sampling) inference parameter control?
18 / 60
Question 19 of 60
A developer wants to enable streaming responses in their Bedrock application so users see text as it is generated rather than waiting for the full response. Which API should they use?
19 / 60
Question 20 of 60
Which AWS service should be configured to capture all Amazon Bedrock model invocation inputs and outputs for auditing and debugging purposes?
20 / 60
Question 21 of 60
In a RAG system, what problem does 'chunk overlap' solve?
21 / 60
Question 22 of 60
A developer needs to fine-tune a Llama model on Amazon Bedrock with their company's proprietary dataset to improve performance on a specialized legal reasoning task. What data format is typically required for instruction fine-tuning?
22 / 60
Question 23 of 60
Which RAGAS metric evaluates whether the answer generated by an LLM is actually supported by the retrieved context?
23 / 60
Question 24 of 60
An agent is performing a multi-step task and needs to remember information from earlier steps to use in later steps within the same session. Which Amazon Bedrock Agents feature supports this?
24 / 60
Question 25 of 60
What is 'prompt chaining' in the context of generative AI application design?
25 / 60
Question 26 of 60
A company wants to prevent their Bedrock-powered customer service bot from responding to queries about competitor products. Which guardrail configuration should they implement?
26 / 60
Question 27 of 60
Which approach is most cost-effective for a use case where the same long system prompt must be reused across thousands of API calls?
27 / 60
Question 28 of 60
A developer is comparing two retrieval strategies for their RAG system: dense retrieval using embeddings versus sparse retrieval using keyword matching (BM25). A hybrid approach combines both. What is the primary advantage of hybrid retrieval?
28 / 60
Question 29 of 60
In the context of Bedrock Knowledge Bases, what is the role of the embedding model?
29 / 60
Question 30 of 60
A developer notices their Bedrock agent sometimes takes too many reasoning steps and exceeds the maximum orchestration steps limit. What is the most appropriate architectural fix?
30 / 60
Question 31 of 60
Which foundation model characteristic best determines its suitability for tasks requiring deep reasoning and complex instruction following compared to simple text generation?
31 / 60
Question 32 of 60
What is the key architectural difference between Bedrock Agents and a simple prompt chain?
32 / 60
Question 33 of 60
A team wants to evaluate their RAG system's retrieval quality specifically. Which RAGAS metric measures whether the retrieved context contains all the information needed to answer the question?
33 / 60
Question 34 of 60
Which parameter would a developer adjust to make a foundation model's responses more creative and varied for a creative writing application?
34 / 60
Question 35 of 60
A security team requires that all prompts sent to Amazon Bedrock and all model responses are logged for compliance purposes. Where should Model Invocation Logging data be sent for long-term retention and analysis?
35 / 60
Question 36 of 60
When building a multi-turn conversational application with a foundation model, what must the developer include in each API request to maintain conversation context?
36 / 60
Question 37 of 60
A developer is choosing between on-demand pricing and Provisioned Throughput for their Bedrock application. When is Provisioned Throughput the better choice?
37 / 60
Question 38 of 60
Which AWS IAM best practice should be applied when a Lambda function needs to invoke Amazon Bedrock models on behalf of a Bedrock Agent's Action Group?
38 / 60
Question 39 of 60
A developer wants to build a RAG application where the knowledge base is updated in real time as new documents arrive in S3. What is the correct Bedrock Knowledge Bases configuration?
39 / 60
Question 40 of 60
What is 'function calling' (tool use) in the context of foundation models?
40 / 60
Question 41 of 60
A RAG application retrieves 10 chunks but only 2 are actually relevant to the query. This degrades response quality by flooding the context window with irrelevant information. Which retrieval metric measures this problem?
41 / 60
Question 42 of 60
Which Amazon Bedrock capability allows developers to define and version reusable prompt templates with variables that can be filled at runtime?
42 / 60
Question 43 of 60
A developer is building a document Q&A system. After retrieval, they want to re-rank the retrieved chunks to surface the most relevant ones before passing them to the LLM. What component performs this function?
43 / 60
Question 44 of 60
What is the purpose of 'guardrail trace' information returned by Amazon Bedrock Guardrails?
44 / 60
Question 45 of 60
A company has strict data residency requirements and cannot allow their prompts or data to leave a specific AWS region. How does Amazon Bedrock address this?
45 / 60
Question 46 of 60
Which Bedrock Agents concept defines the specific API operations an agent is allowed to call, specified via an OpenAPI schema?
46 / 60
Question 47 of 60
A developer is fine-tuning a foundation model on Amazon Bedrock and wants to prevent the model from losing its general capabilities while adapting to a new domain. Which fine-tuning technique is designed to address this?
47 / 60
Question 48 of 60
What is the correct sequence of steps in a RAG pipeline when a user submits a query?
48 / 60
Question 49 of 60
A developer wants their Bedrock agent to maintain context about user preferences across multiple separate conversations over days. Which feature enables this persistent memory?
49 / 60
Question 50 of 60
Which AWS service should be used to monitor Amazon Bedrock application performance metrics such as invocation latency, token counts, and error rates?
50 / 60
Question 51 of 60
A developer's RAG application retrieves the correct chunks but the LLM still generates wrong answers. The issue is that the LLM is ignoring the retrieved context and using its pre-trained knowledge instead. What is the best mitigation?
51 / 60
Question 52 of 60
Which foundation model family available on Amazon Bedrock is developed by Amazon and includes models for text generation and embeddings?
52 / 60
Question 53 of 60
A developer needs to select a foundation model that can accept an image and a text question as input and generate a text answer about the image. What model capability is required?
53 / 60
Question 54 of 60
What is 'top-k' sampling and how does it differ from top-p?
54 / 60
Question 55 of 60
A company's Bedrock application is returning inconsistent results for the same prompt. The developer wants to make the outputs fully deterministic for reproducibility. What should they set?
55 / 60
Question 56 of 60
In Amazon Bedrock's agent architecture, what is the 'orchestration prompt' (or 'instructions' field)?
56 / 60
Question 57 of 60
A developer is implementing security for a multi-tenant Bedrock application where different tenants must not see each other's data in the shared knowledge base. What is the recommended architecture?
57 / 60
Question 58 of 60
What is the risk of setting max_tokens too low in a production Bedrock application?
58 / 60
Question 59 of 60
A developer is building a document ingestion pipeline for Bedrock Knowledge Bases. The source documents contain many tables and structured data. Which chunking approach is most appropriate?
59 / 60
Question 60 of 60
Which responsible AI practice should a developer implement to detect when a Bedrock application's output quality degrades over time due to data drift or model updates?
60 / 60