
Answer-first summary for fast verification
Answer: call_detail, transcript Volume
## Explanation The correct answers are **D** (call_detail) and **E** (transcript Volume) because: ### call_detail (Option D) - Contains **root_cause** and **resolution** fields which directly provide the information needed to identify ticket root causes and resolutions - Even though these fields may be empty for active calls, they contain the most relevant structured data for understanding why issues occurred and how they were resolved - Updated hourly, providing relatively fresh data ### transcript Volume (Option E) - Contains text transcripts of call recordings which provide rich, unstructured context about customer issues, symptoms, and discussions - Transcripts often contain detailed descriptions of problems and the resolution process - Natural language content can be processed by GenAI models to extract patterns and insights about common issues and solutions ### Why other options are less suitable: - **call_cust_history (A)**: Focuses on customer usage patterns and chargeback models, not root cause analysis - **maintenance_schedule (B)**: Deals with system outages and maintenance, not individual ticket resolution context - **call_rep_history (C)**: Focuses on representative performance metrics, not the actual content or resolution of calls These two sources provide complementary data - structured resolution information from call_detail and rich contextual details from transcript Volume - making them ideal for identifying ticket root causes and resolutions.
Author: LeetQuiz .
Ultimate access to all questions.
No comments yet.
Question: 28
A Generative AI 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