An insurance company is building an intake pipeline for claims submitted as photographs of handwritten paper forms. First, the text on each scanned form must be digitized into machine-readable text. Second, the extracted claim description must be checked for negative or urgent emotional tone so distressed claimants are routed to a priority queue. Which two Azure AI capabilities does this pipeline require? (Select TWO.)
Select all correct answers, then click Submit.
Short Explanation
Break the pipeline into its two stated jobs and match each one to a tool. Job one is turning a photo of handwritten writing into actual text a computer can read, which is what a text-digitizing capability is built for. Job two is looking at that digitized wording and deciding whether it sounds distressed or urgent, which is what a tone-detection capability is built for. Drawing boxes around where each field sits on the page would help you locate things visually, but nobody asked for field locations, only for the words themselves and their tone. And catching an oddly large dollar figure is a numeric-pattern problem, completely separate from judging how upset a claimant sounds in their written description. So the two capabilities that actually match the two stated jobs are the ones that digitize handwriting and the one that reads emotional tone.
Full Explanation
The correct answers are B and C. Optical character recognition is needed first to convert the handwritten text in the scanned photographs into machine-readable text, and sentiment analysis is needed second to examine that extracted text and detect negative or urgent emotional tone so distressed claimants can be prioritized. Option D is incorrect because the pipeline only needs the text content digitized, not the locations of individual fields marked with bounding boxes; object detection solves a localization problem the scenario never asks for. Option A is incorrect because anomaly detection is built to flag unusual numeric patterns, such as an oddly large claim amount, which is a different concern from judging the emotional tone of written text and was not part of what the scenario described needing checked. Since the pipeline explicitly needs text digitized from images and then screened for tone, the two required capabilities are optical character recognition and sentiment analysis.