Free Databricks-Generative-AI-Engineer-Associate Actual Exam Questions - Question 13 Discussion

Question No. 13
A Generative AI Engineer is creating an LLM-powered application that will need access to up-to-date
news articles and stock prices.
The design requires the use of stock prices which are stored in Delta tables and finding the latest
relevant news articles by searching the internet.
How should the Generative AI Engineer architect their LLM system?
Select one option, then reveal solution.
US
YV
Yasir V.
2026-02-19

D. This lets the LLM directly access both the Delta tables and live web data, which fits the need for up-to-date info better than pre-stored vectors or summaries.

0
CF
Carlos F.
2026-02-14

It’s C because storing both stocks and news in a vector store allows fast retrieval with up-to-date info, and RAG handles combining external data nicely without needing live tool calls.

0
IO
Irfan O.
2026-01-22

B/D? B keeps stock data accurate via direct Delta queries and limits the LLM to search query generation, which feels safer if tool use isn’t guaranteed. D is slick if real-time tool integration is supported though.

0
IO
Irfan O.
2026-01-20

B feels cleaner since it uses the Delta table directly for stock data, avoiding stale info, and only lets the LLM handle generating search queries, which is less error-prone than relying on full web scraping or storing everything locally.

0
FY
Farhan Y.
2026-01-18

Option B makes sense too because it separates data retrieval and analysis cleanly, using direct Delta queries for stock data and letting the LLM handle generating search queries, avoiding overloading the LLM with real-time tasks.

0
PH
Peter H.
2026-01-16

Maybe D, feels more dynamic with live queries and web searches.

0