Free CERTIFIED-GENERATIVE-AI-ENGINEER-ASSOCIATE Databricks CERTIFIED-GENERATIVE-AI-ENGINEER-ASSOCIATE Practice Test Question

Loading demo links...

Showing 4–6 of 10 questions

Question 4 (Topic 1)

A Generative AI 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 AI Engineer use to evaluate these two techniques?

Select an option, then click Submit answer.

  • Compare the cosine similarities of the embeddings of returned results against those of a representative sample of test inputs
  • Compare the Bilingual Evaluation Understudy (BLEU) scores of returned results for a representative sample of test inputs
  • Compare the Recall-Oriented-Understudy for Gisting Evaluation (ROUGE) scores of returned results for a representative sample of test inputs
  • Compare the Levenshtein distances of returned results against a representative sample of test inputs
Question 5 (Topic 1)

Generative AI Engineer is helping a cinema extend its website’s chat bot to be able to respond to questions about specific showtimes for movies currently playing at their local theater. They already have the location of the user provided by location services to their agent, and a Delta table which is continually updated with the latest showtime information by location. They want to implement this new capability in their RAG application. Which option will do this with the least effort and in the most performant way?

Select an option, then click Submit answer.

  • Create a Feature Serving Endpoint from a FeatureSpec that references an online store synced from the Delta table. Query the Feature Serving Endpoint as part of the agent logic / tool implementation.
  • Query the Delta table directly via a SQL query constructed from the user’s input using a text-to-SQL LLM in the agent logic / tool implementation.
  • Set up a task in Databricks Workflows to write the information in the Delta table periodically to an external database such as MySQL and query the information from there as part of the agent logic / tool implementation.
  • Write the Delta table contents to a text column, then embed those texts using an embedding model and store these in the vector index. Look up the information based on the embedding as part of the agent logic / tool implementation.
Question 6 (Topic 1)

Generative AI Engineer is building a RAG application that answers questions about technology-related news articles. The source documents may contain a significant amount of irrelevant content, such as advertisements, sports news, or entertainment news. Which approach is NOT advisable for building a RAG application focused on answering technology-only questions?

Select an option, then click Submit answer.

  • Include in the system prompt that the application is not supposed to answer any questions unrelated to technology.
  • Filter out irrelevant news articles in the retrieval process.
  • Keep all news articles because the RAG application needs to understand non-technological content to avoid answering questions about them.
  • Filter out irrelevant news articles in the upstream document database.