Which Azure AI Search Skill Recognizes Geographic Locations?

Implement an Azure AI Search solution
Answer Correct answer: C — Include the EntityRecognitionSkill in the skillset to identify and extract geographic locations from text.

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?

  1. AzureOpenAIEmbeddingSkill
  2. DocumentExtractionSkill
  3. EntityRecognitionSkill Correct Answer
  4. EntityLinkingSkill

Community Votes

C
100%

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)

syupwsh 👍 1 Selected: C
https://learn.microsoft.com/en-us/azure/search/cognitive-search-skill-entity-recognition EntityRecognitionSkill is CORRECT because this built-in skill in Azure AI Search is specifically designed to identify and extract named entities, such as geographic locations, from unstructured text. By including this skill in the skillset, the resource can effectively recognize geographic locations and other named entities, making the data more useful for search and analysis. Answer is C
3fbc31b 👍 1 Selected: C
C is the correct answer.
a8da4af 👍 2 Selected: C
The correct answer is C. EntityRecognitionSkill. Explanation: The EntityRecognitionSkill in Azure Cognitive Search is a built-in skill designed to identify and recognize specific types of entities within text, including geographic locations (such as cities, countries, and landmarks), as well as other entities like people and organizations. This makes it the appropriate choice for a skillset intended to recognize geographic locations.
Cndvrs 👍 2
Entity Recognition skill

Comments & Corrections

No comments yet — spotted an error or have a note? Share it below.

Log in to comment, report an error, or add a note about this question.

Submitted for moderation before publishing. Keep it helpful and respectful.

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.

Related Analysis

← Back to AI-102 Study Guide