DATABRICKS-CERTIFIED-GENERATIVE-AI-ENGINEER-ASSOCIATE Exam Details

  • Exam Code
    :DATABRICKS-CERTIFIED-GENERATIVE-AI-ENGINEER-ASSOCIATE
  • Exam Name
    :Databricks Certified Generative AI Engineer Associate
  • Certification
    :Databricks Certifications
  • Vendor
    :Databricks
  • Total Questions
    :82 Q&As
  • Last Updated
    :Jul 11, 2026

Databricks DATABRICKS-CERTIFIED-GENERATIVE-AI-ENGINEER-ASSOCIATE Online Questions & Answers

  • Question 21:

    A Generative Al Engineer is responsible for developing a chatbot to enable their company's internal HelpDesk Call Center team to more quickly find related tickets and provide resolution. While creating the GenAI application work breakdown

    tasks for this project, they realize they need to start planning which data sources (either Unity Catalog volume or Delta table) they could choose for this application. They have collected several candidate data sources for consideration:

    call_rep_history: a Delta table with primary keys representative_id, call_id. This table is maintained to calculate representatives' call resolution from fields call_duration and call start_time.

    transcript Volume: a Unity Catalog Volume of all recordings as a *.wav files, but also a text transcript as *.txt files.

    call_cust_history: a Delta table with primary keys customer_id, cal1_id. This table is maintained to calculate how much internal customers use the HelpDesk to make sure that the charge back model is consistent with actual service use.

    call_detail: a Delta table that includes a snapshot of all call details updated hourly. It includes root_cause and resolution fields, but those fields may be empty for calls that are still active.

    maintenance_schedule ?a Delta table that includes a listing of both HelpDesk application outages as well as planned upcoming maintenance downtimes.

    They need sources that could add context to best identify ticket root cause and resolution.

    Which TWO sources do that? (Choose two.)

    A. call_cust_history
    B. maintenance_schedule
    C. call_rep_history
    D. call_detail
    E. transcript Volume

  • Question 22:

    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

  • Question 23:

    A Generative Al Engineer is working with a retail company that wants to enhance its customer experience by automatically handling common customer inquiries. They are working on an LLM-powered Al solution that should improve response times while maintaining a personalized interaction. They want to define the appropriate input and LLM task to do this.

    Which input/output pair will do this?

    A. Input: Customer reviews; Output Group the reviews by users and aggregate per-user average rating, then respond
    B. Input: Customer service chat logs; Output Group the chat logs by users, followed by summarizing each user's interactions, then respond
    C. Input: Customer service chat logs; Output: Find the answers to similar questions and respond with a summary
    D. Input: Customer reviews: Output Classify review sentiment

  • Question 24:

    A Generative Al Engineer would like an LLM to generate formatted JSON from emails. This will require parsing and extracting the following information: order ID, date, and sender email. Here's a sample email:

    They will need to write a prompt that will extract the relevant information in JSON format with the highest level of output accuracy.

    Which prompt will do that?

    A. You will receive customer emails and need to extract date, sender email, and order ID. You should return the date, sender email, and order ID information in JSON format.
    B. You will receive customer emails and need to extract date, sender email, and order ID. Return the extracted information in JSON format. Here's an example: {"date": "April 16, 2024", "sender_email": "[email protected]", "order_id": "RE987D"}
    C. You will receive customer emails and need to extract date, sender email, and order ID. Return the extracted information in a human-readable format.
    D. You will receive customer emails and need to extract date, sender email, and order ID. Return the extracted information in JSON format.

  • Question 25:

    A Generative AI Engineer received the following business requirements for an external chatbot.

    The chatbot needs to know what types of questions the user asks and routes to appropriate models to answer the questions. For example, the user might ask about upcoming event details. Another user might ask about purchasing tickets for

    a particular event.

    What is an ideal workflow for such a chatbot?

    A. The chatbot should only look at previous event information
    B. There should be two different chatbots handling different types of user queries.
    C. The chatbot should be implemented as a multi-step LLM workflow. First, identify the type of question asked, then route the question to the appropriate model. If it's an upcoming event question, send the query to a text-to-SQL model. If it's about ticket purchasing, the customer should be redirected to a payment platform.
    D. The chatbot should only process payments

  • Question 26:

    A Generative Al Engineer is building a RAG application that answers questions about internal documents for the company SnoPen AI.

    The source documents may contain a significant amount of irrelevant content, such as advertisements, sports news, or entertainment news, or content about other companies.

    Which approach is advisable when building a RAG application to achieve this goal of filtering irrelevant information?

    A. Keep all articles because the RAG application needs to understand non-company content to avoid answering questions about them.
    B. Include in the system prompt that any information it sees will be about SnoPenAI, even if no data filtering is performed.
    C. Include in the system prompt that the application is not supposed to answer any questions unrelated to SnoPen Al.
    D. Consolidate all SnoPen AI related documents into a single chunk in the vector database.

  • Question 27:

    A Generative Al Engineer is deciding between using LSH (Locality Sensitive Hashing) and HNSW (Hierarchical Navigable Small World) for indexing their vector database Their top priority is semantic accuracy.

    Which approach should the Generative Al Engineer use to evaluate these two techniques?

    A. Compare the cosine similarities of the embeddings of returned results against those of a representative sample of test inputs
    B. Compare the Bilingual Evaluation Understudy (BLEU) scores of returned results for a representative sample of test inputs
    C. Compare the Recall-Onented-Understudy for Gistmg Evaluation (ROUGE) scores of returned results for a representative sample of test inputs
    D. Compare the Levenshtein distances of returned results against a representative sample of test inputs

  • Question 28:

    A Generative AI Engineer is building a RAG application that will rely on context retrieved from source documents that are currently in PDF format. These PDFs can contain both text and images. They want to develop a solution using the least amount of lines of code.

    Which Python package should be used to extract the text from the source documents?

    A. flask
    B. beautifulsoup
    C. unstructured
    D. numpy

  • Question 29:

    A Generative AI Engineer is tasked with deploying an application that takes advantage of a custom MLflow Pyfunc model to return some interim results. How should they configure the endpoint to pass the secrets and credentials?

    A. Use spark.conf.set ()
    B. Pass variables using the Databricks Feature Store API
    C. Add credentials using environment variables
    D. Pass the secrets in plain text

  • Question 30:

    A Generative Al Engineer needs to design an LLM pipeline to conduct multi-stage reasoning that leverages external tools. To be effective at this, the LLM will need to plan and adapt actions while performing complex reasoning tasks.

    Which approach will do this?

    A. Tram the LLM to generate a single, comprehensive response without interacting with any external tools, relying solely on its pre-trained knowledge.
    B. Implement a framework like ReAct which allows the LLM to generate reasoning traces and perform task-specific actions that leverage external tools if necessary.
    C. Encourage the LLM to make multiple API calls in sequence without planning or structuring the calls, allowing the LLM to decide when and how to use external tools spontaneously.
    D. Use a Chain-of-Thought (CoT) prompting technique to guide the LLM through a series of reasoning steps, then manually input the results from external tools for the final answer.

Tips on How to Prepare for the Exams

Nowadays, the certification exams become more and more important and required by more and more enterprises when applying for a job. But how to prepare for the exam effectively? How to prepare for the exam in a short time with less efforts? How to get a ideal result and how to find the most reliable resources? Here on Vcedump.com, you will find all the answers. Vcedump.com provide not only Databricks exam questions, answers and explanations but also complete assistance on your exam preparation and certification application. If you are confused on your DATABRICKS-CERTIFIED-GENERATIVE-AI-ENGINEER-ASSOCIATE exam preparations and Databricks certification application, do not hesitate to visit our Vcedump.com to find your solutions here.