Generative Al Engineer - Associate Practice Exam — Generative Al Engineer - Associate

1. The question bank is cloud‑connected and updates automatically; no manual re‑acquisition is required.

2. Start practicing right after activating the question bank. It supports simultaneous use on websites and mini‑programs, with one‑click bilingual switching for each question.

3. Functions include online practice, mock tests, note‑taking, wrong‑question recording, etc., valid for one year.

4. Recommended practice order: Turn on review mode to browse questions → Complete sequential practice → Take mock exams for pre‑test self‑assessment.

5. Activation codes can be purchased by clicking Buy Now on the right or via our official Tmall flagship store.

6. For inquiries, contact customer service through mini‑program, WeChat, WhatsApp or LINE.

Exam information

I. Core Certification Overview


   Certification Name:   Databricks Certified Generative AI Engineer Associate    

   Certification Level :   Associate-level, designed for entry-to-intermediate practitioners focusing on LLM solution development on Databricks    

   Core Positioning:    Validates the ability to design, build and deploy LLM-powered solutions on Databricks, with core focus on RAG development, model serving and enterprise governance practices    

   Validity Period:    Valid for 2 years; recertification on the latest exam version is required upon expiration    

   Recommended Experience:    6+ months of hands-on experience building generative AI projects on Databricks, familiar with end-to-end LLM application workflows and foundational data preparation    

   Prerequisite:    No mandatory enrollment prerequisites; completion of official *Generative AI Engineering with Databricks* training is strongly recommended    


Only pass/fail status is issued; detailed numerical exam scores remain undisclosed


Sample questions

Generative Al Engineer - Associate · Q1
Question #1 A Generative Al Engineer has created a RAG application to look up answers to questions about a series of fantasy novels that are being asked on the author’s web forum. The fantasy novel texts are chunked and embedded into a vector store with metadata (page number, chapter number, book title), retrieved with the user’s query, and provided to an LLM for response generation. The Generative AI Engineer used their intuition to pick the chunking strategy and associated configurations but now wants to more methodically choose the best values.Which TWO strategies should the Generative AI Engineer take to optimize their chunking strategy and parameters? (Choose two.)
  • A.
    Change embedding models and compare performance.
  • B.
    Add a classifier for user queries that predicts which book will best contain the answer. Use this to filter retrieval.
  • C.
    Choose an appropriate evaluation metric (such as recall or NDCG) and experiment with changes in the chunking strategy, such as splitting chunks by paragraphs or chapters. Choose the strategy that gives the best performance metric.
  • D.
    Pass known questions and best answers to an LLM and instruct the LLM to provide the best token count. Use a summary statistic (mean, median, etc.) of the best token counts to choose chunk size.
  • E.
    Create an LLM-as-a-judge metric to evaluate how well previous questions are answered by the most appropriate chunk. Optimize the chunking parameters based upon the values of the metric.

Answer: CE

This question focuses on methodical optimization of chunking strategies for retrieval-augmented generation (RAG) systems, a core domain competency for Generative AI Engineer roles. The scenario requires data-driven approaches to tune chunking parameters rather than ad-hoc or intuition-based selection. Option C leverages standard quantitative retrieval evaluation metrics to systematically test different chunking configurations, ensuring the selected strategy directly improves retrieval performance for the target use case. Option E uses the industry-standard LLM-as-judge evaluation framework to tie chunking performance directly to end-to-end answer quality, which is aligned with the scenario's goal of delivering accurate answers to forum user queries about the fantasy novels. Both options directly address chunking optimization through measurable, repeatable testing as required by the question. Option Analysis: A. Incorrect. Changing embedding models is a separate optimization for the embedding component of the RAG pipeline, not a strategy to tune chunking parameters or chunking strategy, which is the explicit focus of the question. This adjustment does not modify how the source novel text is split into chunks. B. Incorrect. Adding a query classifier to filter retrieval by book title is a retrieval routing enhancement, not a modification to chunking strategy. This change does not impact how the source text is chunked, so it does not address the stated goal of optimizing chunking configurations. C. Correct. This option follows the standard data-driven RAG optimization workflow required for certified generative AI engineering practice. By selecting a relevant retrieval performance metric, testing controlled variations to chunking logic (such as splitting by paragraph, chapter, or adjusting chunk size/overlap), and selecting the highest-performing configuration, the engineer systematically optimizes chunking strategy for the specific use case. D. Incorrect. Deriving chunk size from the token count of known answers is not a valid or industry-accepted chunking optimization method. Chunk size and splitting logic depend on the semantic coherence of the source text and retrieval relevance, not the length of end user answers, and this approach does not measure how effectively chunks contain the context required to answer queries. E. Correct. LLM-as-judge is a widely recognized evaluation method for RAG systems, included in core generative AI engineer certification curricula. By using an LLM to score how well retrieved chunks support accurate answers to known questions, the engineer can directly tune chunking parameters to maximize end-to-end answer quality, which aligns perfectly with the scenario's objective of improving forum query responses. Key Concepts: 1. RAG Chunking Optimization: This core concept covers the systematic tuning of chunk size, splitting logic, and chunk overlap to maximize retrieval relevance and downstream answer quality. Certified engineers are required to use data-driven testing rather than intuition to select chunking configurations for production RAG systems. 2. LLM-as-Judge Evaluation: This is a standard evaluation technique where a validated large language model scores RAG output or retrieval relevance, providing a human-aligned, scalable evaluation signal for use cases where end user utility is the primary performance goal. 3. Retrieval Performance Metrics: Metrics including recall, NDCG, and precision measure how effectively the RAG retrieval step returns relevant context for user queries, forming the baseline for quantitative, repeatable optimization of all RAG components including chunking. References: AWS Documentation: Customize a RAG solution, https://docs.aws.amazon.com/sagemaker/latest/dg/jumpstart-foundation-models-customize-rag.html Microsoft Learn: Evaluate RAG systems
Generative Al Engineer - Associate · Q2
Question #2 A Generative AI Engineer is designing a RAG application for answering user questions on technical regulations as they learn a new sport.What are the steps needed to build this RAG application and deploy it?
  • A.
    Ingest documents from a source –> Index the documents and saves to Vector Search –> User submits queries against an LLM –> LLM retrieves relevant documents –> Evaluate model –> LLM generates a response –> Deploy it using Model Serving
  • B.
    Ingest documents from a source –> Index the documents and save to Vector Search –> User submits queries against an LLM –> LLM retrieves relevant documents –> LLM generates a response -> Evaluate model –> Deploy it using Model Serving
  • C.
    Ingest documents from a source –> Index the documents and save to Vector Search –> Evaluate model –> Deploy it using Model Serving
  • D.
    User submits queries against an LLM –> Ingest documents from a source –> Index the documents and save to Vector Search –> LLM retrieves relevant documents –> LLM generates a response –> Evaluate model –> Deploy it using Model Serving

Answer: B

The All Certified Generative AI Engineer Associate certification standardizes the RAG implementation workflow for use cases requiring grounded, factually accurate responses, such as technical regulation queries for sports. The correct end-to-end workflow for this scenario first involves ingesting all relevant technical regulation documents, chunking those documents, generating embeddings for each chunk, indexing and storing the embeddings in a vector search database. During runtime, when a user submits a query, the query is converted to an embedding to retrieve semantically relevant document chunks from the vector store, those chunks are provided as supplementary context to the LLM along with the original user query, and the LLM generates a response grounded in the retrieved regulation content. After the full inference pipeline is functional, the model and RAG system are evaluated against a benchmark set of regulation-focused queries to measure accuracy, relevance, and hallucination rates, ensuring responses comply with official technical rules. Once validated, the full RAG pipeline is deployed via model serving for end user access. This exact sequence is reflected in option B, which aligns with certification requirements for production RAG deployment. Option Analysis: A. Incorrect. This option reverses the order of LLM response generation and model evaluation. Per certification RAG standards, evaluation requires completed LLM outputs to measure against ground truth regulation content, so evaluation cannot occur before responses are generated. This misordering would prevent valid performance testing of the RAG system. B. Correct. This option follows the certified standard RAG workflow sequence exactly, aligned with production implementation requirements for regulated use cases. It includes all mandatory steps: data ingestion and vector indexing, user query processing, relevant context retrieval, LLM response generation, performance evaluation, and final deployment. This sequence ensures the RAG application produces accurate, grounded responses to user questions about sport technical regulations. C. Incorrect. This option omits all core runtime inference components of a RAG system, including user query handling, context retrieval, and LLM response generation. Jumping directly from vector indexing to evaluation and deployment would result in a non-functional application that cannot process user requests, which violates certification requirements for complete RAG implementation. D. Incorrect. This option places user query submission before data ingestion and vector indexing, which is functionally impossible for a RAG system. Per certification domain knowledge, RAG relies on pre-indexed domain document embeddings to retrieve relevant context for queries, so processing user queries before ingesting and indexing the technical regulation documents would produce ungrounded, hallucinated responses. Key Concepts: 1. Standard RAG Workflow Order: The certified RAG pipeline follows a fixed sequence of data preprocessing (ingestion, chunking, embedding, vector indexing), runtime inference (query embedding, vector retrieval, context-augmented response generation), performance evaluation, and deployment. Correct ordering ensures the system produces valid, grounded outputs. 2. RAG Performance Evaluation Requirements: Evaluation of RAG systems occurs after the full inference pipeline is operational, and measures metrics including answer correctness, context relevance, and factuality against ground truth data. This step is mandatory for use cases requiring high accuracy, such as technical regulation queries, to eliminate non-compliant or hallucinated responses. 3. Vector Search Pre-Requisite for RAG: Domain documents must be ingested, converted to embeddings, and indexed in a vector search database prior to processing any end user queries. This enables semantic similarity search to retrieve relevant context that grounds LLM responses in verified domain data. References: Amazon SageMaker Retrieval Augmented Generation (RAG) Overview, https://docs.aws.amazon.com/sagemaker/latest/dg/jumpstart-foundation-models-customize-rag.html Retrieval Augmented Generation (RAG) workflow
Generative Al Engineer - Associate · Q3
Question #3 A Generative AI Engineer just deployed an LLM application at a digital marketing company that assists with answering customer service inquiries.Which metric should they monitor for their customer service LLM application in production?
  • A.
    Number of customer inquiries processed per unit of time
  • B.
    Energy usage per query
  • C.
    Final perplexity scores for the training of the model
  • D.
    HuggingFace Leaderboard values for the base LLM

Answer: A

The scenario describes a production-deployed LLM application supporting customer service inquiries for a digital marketing company. Core All Certified Generative AI Engineer Associate knowledge emphasizes that production monitoring metrics must be relevant to the deployed use case, runtime operations, and business objectives, rather than development phase or static benchmark metrics. The suggested answer A measures the throughput of the application, which directly correlates to the system's ability to handle expected and peak customer inquiry volumes, meet service level agreements (SLAs) for response times, and identify operational bottlenecks that could impact customer experience. This aligns with standard production monitoring requirements for customer-facing generative AI applications as defined in the certification domain. Option Analysis: A. Correct. Number of customer inquiries processed per unit of time is a core operational throughput metric for production customer service LLM applications. It enables engineers to track the application's capacity to handle incoming demand, align with business SLAs for customer inquiry resolution speed, and identify scaling needs during peak traffic periods, which is a standard monitored KPI for this use case per certification guidelines. B. Incorrect. Energy usage per query is a specialized sustainability metric that is not a standard core monitoring requirement for customer service LLM deployments unless the organization has explicit, mandated carbon reduction targets for its technology stack. It does not directly tie to the core customer service use case objectives of timely, accurate inquiry support. C. Incorrect. Perplexity scores are training-phase metrics used to evaluate how well a model predicts a sequence of text during model development and fine-tuning. They are not captured or monitored during production runtime, so they are irrelevant for post-deployment monitoring of the live customer service application. D. Incorrect. HuggingFace Leaderboard values are static benchmark scores for base LLMs, measured under standardized test conditions before any use case-specific fine-tuning, prompt engineering, or deployment configuration. They do not reflect the real-world runtime performance of the customized customer service application, so they are not tracked in production. Key Concepts: 1. Generative AI Lifecycle Metric Segmentation: This core certification concept differentiates metrics by development stage: training metrics (e.g., perplexity, loss) are used for model development, benchmark metrics (e.g., leaderboard scores) are used for base model selection, and operational runtime metrics (e.g., throughput, latency) are used for post-deployment production monitoring. 2. Customer-Facing Gen AI Use Case KPI Alignment: This knowledge point requires that production monitoring metrics for customer-facing generative AI applications directly align with business and use case objectives, including meeting inquiry volume capacity requirements, reducing customer wait times, and adhering to service level agreements. 3. Production Gen AI Operations (GenAIOps) Monitoring: This domain covers the set of standard operational metrics tracked for deployed generative AI applications to ensure reliability, scalability, and consistent performance for end users, including throughput, error rate, latency, and user satisfaction scores. References: Google Cloud Vertex AI Generative AI Monitoring Overview, AWS Well-Architected Framework Generative AI Lens: Operational Excellence, https://docs.aws.amazon.com/wellarchitected/latest/generative-ai-lens/operational-excellence.html
Generative Al Engineer - Associate · Q4
Question #4 A Generative AI Engineer is building a Generative AI system that suggests the best matched employee team member to newly scoped projects. The team member is selected from a very large team. The match should be based upon project date availability and how well their employee profile matches the project scope. Both the employee profile and project scope are unstructured text.How should the Generative Al Engineer architect their system?
  • A.
    Create a tool for finding available team members given project dates. Embed all project scopes into a vector store, perform a retrieval using team member profiles to find the best team member.
  • B.
    Create a tool for finding team member availability given project dates, and another tool that uses an LLM to extract keywords from project scopes. Iterate through available team members’ profiles and perform keyword matching to find the best available team member.
  • C.
    Create a tool to find available team members given project dates. Create a second tool that can calculate a similarity score for a combination of team member profile and the project scope. Iterate through the team members and rank by best score to select a team member.
  • D.
    Create a tool for finding available team members given project dates. Embed team profiles into a vector store and use the project scope and filtering to perform retrieval to find the available best matched team members.

Answer: D

The scenario requires two core capabilities: filtering employees by project date availability, and accurately matching unstructured employee profile text to unstructured project scope text, all optimized for a very large team. The correct approach aligns with generative AI architecture best practices for unstructured similarity matching and scalable retrieval tested in the All Certified Generative AI Engineer Associate domain. Embedding employee profiles into a vector store captures the full semantic meaning of unstructured profile content, far more accurately than keyword matching. Combining semantic retrieval with metadata filtering for availability allows the system to efficiently surface only eligible available employees that are the closest semantic match to the project scope, even across very large datasets, without the computational inefficiency of iterating through all team members. This architecture directly addresses both stated requirements and the constraint of a very large team. Option Analysis: A. This option is incorrect. It reverses the embedding and retrieval workflow: project scopes are the new query input, so team member profiles, the existing dataset to search against, should be embedded, not project scopes. It also fails to integrate availability filtering into the retrieval process, leading to irrelevant results for unavailable team members, and does not align with standard semantic search architecture patterns. B. This option is incorrect. Keyword matching of unstructured text misses critical semantic context, leading to poor match quality between employee skills and project requirements, for example, failing to connect equivalent terms that share meaning but use different wording. Iterating through available team members is also not scalable for a very large team, as it introduces unnecessary computational overhead compared to optimized vector retrieval. C. This option is incorrect. Iterating through all team members to calculate individual similarity scores is a linear process that is not feasible for very large teams, as it creates high latency and computational cost. This approach ignores the optimized, low-latency similarity search capabilities of vector databases which are a core generative AI architecture component for this use case. D. This option is correct. It follows standard generative AI retrieval architecture best practices: embedding the static dataset (employee profiles) into a vector store to enable semantic similarity search on unstructured text, combining retrieval with filtering for project date availability to ensure only eligible employees are considered, and leveraging the scalable performance of vector stores to efficiently operate across very large team sizes. This addresses both the matching accuracy and scalability requirements of the scenario. Key Concepts: 1. Semantic Similarity Search with Text Embeddings: This core concept refers to converting unstructured text into numerical vector representations that capture contextual and semantic meaning, enabling far more accurate matching of related content than keyword-based methods, which is critical for comparing unstructured employee profiles and project scopes. 2. Metadata Filtering in Vector Retrieval: This concept covers the ability to apply structured criteria filters (such as employee availability dates) alongside semantic similarity queries in vector databases, allowing systems to combine structured eligibility rules and unstructured match requirements efficiently in a single retrieval step. 3. Scalable Retrieval Architecture for Generative AI: This concept emphasizes the use of purpose-built vector databases to enable low-latency, high-throughput similarity search across very large datasets, avoiding the inefficiencies of linear iteration over records for large scale use cases like talent matching across large organizations. References: Azure OpenAI Service Vector Search Guide, Google Cloud Vertex AI Vector Search Overview, https://cloud.google.com/vertex-ai/docs/vector-search/overview
Generative Al Engineer - Associate · Q5
Question #5 A Generative AI Engineer is designing an LLM-powered live sports commentary platform. The platform provides real-time updates and LLM-generated analyses for any users who would like to have live summaries, rather than reading a series of potentially outdated news articles.Which tool below will give the platform access to real-time data for generating game analyses based on the latest game scores?
  • A.
    DatabricksIQ
  • B.
    Foundation Model APIs
  • C.
    Feature Serving
  • D.
    AutoML

Answer: C

The scenario requires a tool that delivers real-time, up-to-date game data to the LLM to generate accurate live sports commentary. The suggested answer C, Feature Serving, is the correct choice because feature serving systems are purpose-built for production AI workloads to provide low-latency access to fresh, preprocessed feature data. For this live sports use case, feature serving can ingest streaming game event data including scores, plays, and player stats as it is generated, preprocess it into a format usable by the LLM, and serve it on demand with minimal delay, ensuring the LLM always has the latest game state to generate accurate, timely analyses rather than relying on outdated static data. This aligns with core generative AI engineering best practices for building production real-time generative AI applications covered in the All Certified Generative AI Engineer Associate certification domain. Option Analysis: A. DatabricksIQ is incorrect. DatabricksIQ is a native generative AI assistant for the Databricks platform designed to help users query data assets, build data pipelines, and troubleshoot platform workflows, not to serve low-latency real-time external data to customer-facing generative AI applications like the live sports commentary platform. It does not address the requirement for real-time data access for LLM inference. B. Foundation Model APIs are incorrect. Foundation Model APIs provide programmatic access to pre-trained large language models for inference, but do not supply the real-time external sports data required to ground the LLM's outputs in the latest game scores. The question asks for a tool to access real-time data, not to access the LLM itself, so this option is irrelevant to the stated requirement. C. Feature Serving is correct. As covered in generative AI engineering certification content, feature serving systems are optimized to deliver preprocessed, fresh data at sub-second latency to production AI inference workloads. For this use case, it can serve real-time game scores, play-by-play event data, and player metrics directly to the LLM during inference, ensuring the generated commentary and analyses are based on the most recent game state, which fully meets the scenario's real-time data requirement. D. AutoML is incorrect. AutoML tools automate the end-to-end process of training traditional machine learning models, including data preprocessing, hyperparameter tuning, and model evaluation. They do not provide functionality to serve real-time data to running LLM applications, so they are not relevant to the scenario's requirement. Key Concepts: 1. Real-Time Feature Serving: This core concept covers the design and deployment of low-latency data serving layers for production AI workloads, which is required to deliver time-sensitive input data to LLMs for use cases like live event analysis where data freshness directly impacts output accuracy. 2. LLM Grounding: This refers to the practice of supplementing LLM prompt inputs with external, verified, up-to-date data to reduce hallucinations and ensure outputs are factually consistent with current real-world state, a critical requirement for the live sports commentary platform. 3. Production Generative AI Architecture: This covers the component stack for building production-ready generative AI applications, including data serving layers, model orchestration, and user interface components, where feature serving is a standard component for real-time data access. References: Databricks Feature Serving Documentation, Amazon SageMaker Feature Store Serving Documentation

FAQ

How many practice questions are available for Generative Al Engineer - Associate?

This question bank includes 92 Generative Al Engineer - Associate practice questions covering single and multiple choice, each with answers and explanations.

Are Generative Al Engineer - Associate practice questions available in Chinese and English?

Yes, Generative Al Engineer - Associate practice questions are provided in both Chinese and English.

Can I try Generative Al Engineer - Associate practice questions for free?

Yes. Free sample questions are available on this page, and the full question bank is available after signing up on Zhangxuetu.