Which Azure AI Search Skill Recognizes Geographic Locations?
You have an Azure subscription. You need to deploy an Azure AI Search resource that will recognize geographic locations. Which built-in skill should you include in the skillset for the resource?
Community Votes
100% of anonymous learners picked answer C. Votes are pick records left by other test-takers — they are not the verified answer.
Community Insight
The question tests Azure AI Search built-in skills, specifically identifying that EntityRecognitionSkill is used to extract geographic locations.
The EntityRecognitionSkill in Azure AI Search is used to extract named entities such as geographic locations from text. This guide confirms why it is the correct choice over other built-in skills.
Choosing EntityLinkingSkill (D) because it sounds related to entities, but it links entities to Wikipedia rather than extracting location types.
Community Discussion (4 comments)
Comments & Corrections
No comments yet — spotted an error or have a note? Share it below.
Expert Analysis
Why the Answer Is Correct
The EntityRecognitionSkill (Option C) is the correct choice because it is specifically designed to identify named entities from unstructured text. These entities include people, organizations, and importantly for this scenario, geographic locations. When an Azure AI Search skillset needs to recognize geographic locations, this skill extracts those entities and maps them to the search index fields.Why the Other Options Are Wrong
AzureOpenAIEmbeddingSkill (Option A) generates vector embeddings for text, not entities. DocumentExtractionSkill (Option B) extracts content from files within a blob, but does not perform entity recognition. EntityLinkingSkill (Option D) identifies known entities and links them to articles in Wikipedia, which is different from simply recognizing the geographic location entity type.Community Comment Notes
Community members agree that EntityRecognitionSkill is correct because it explicitly handles geographic locations. As one user noted, it is "specifically designed to identify and extract named entities, such as geographic locations, from unstructured text." Another commenter simply confirmed "Entity Recognition skill" as the necessary component.Official Reference
Exam Strategy
When asked about extracting specific data types (like locations, people, or organizations) from text in Azure AI Search, look for the EntityRecognitionSkill. Remember that EntityLinkingSkill is for linking to Wikipedia, not just extraction.