You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: learn-pr/wwl-data-ai/analyze-text-ai-language/9-knowledge-check.yml
+18-18Lines changed: 18 additions & 18 deletions
Original file line number
Diff line number
Diff line change
@@ -6,35 +6,35 @@ metadata:
6
6
description: Knowledge check
7
7
author: ivorb
8
8
ms.author: berryivor
9
-
ms.date: 03/10/2026
9
+
ms.date: 04/02/2026
10
10
ms.topic: unit
11
11
ms.collection:
12
12
- wwl-ai-copilot
13
13
module_assessment: true
14
14
azureSandbox: false
15
15
labModal: false
16
-
durationInMinutes: 3
16
+
durationInMinutes: 2
17
17
quiz:
18
18
questions:
19
-
- content: "How should you create an application that monitors the comments on your company's web site and flags any negative posts?"
19
+
- content: "How should you create an application that analyzes news articles and extracts key people, places, and dates that are mentioned for indexing?"
20
20
choices:
21
-
- content: "Use Azure Language in Foundry Tools to extract key phrases."
21
+
- content: "Use a generative AI model with a custom function tool that matches strings using a regular expression."
22
22
isCorrect: false
23
-
explanation: "Incorrect. Key phrases might help understand what the customer is posting about, but they don't indicate positive or negative feedback."
24
-
- content: "Use Azure Language in Foundry Tools to perform sentiment analysis of the comments."
25
-
isCorrect: true
26
-
explanation: "Correct. Sentiment analysis helps you determine if text is negative or positive."
27
-
- content: "Use Azure Language in Foundry Tools to extract named entities from the comments."
23
+
explanation: "Incorrect. While using a regular expression can help identify patterns in text, it is not the most effective way to extract key entities from news articles."
24
+
- content: "Use Azure Language in Foundry Tools to extract PII entities."
28
25
isCorrect: false
29
-
explanation: "Incorrect. Named entities might help understand what the customer is posting about, but they don't indicate positive or negative feedback."
30
-
- content: 'You are analyzing text that contains the word "Paris". How might you determine if this word refers to the French city or the character in Homer''s "The Iliad"?'
26
+
explanation: "Incorrect. PII entities help identify sensitive information. The task in this case is not to redact personal information, but to find named entities."
27
+
- content: "Use Azure Language in Foundry Tools to extract named entities."
28
+
isCorrect: true
29
+
explanation: "Correct. Named entities help identify key people, places, and dates mentioned in the text."
30
+
- content: "You want to publish extracts from customer testimonials on a web site. You need to remove personal details from the text before publishing it. What should you do?"
31
31
choices:
32
-
- content: "Use Azure Language in Foundry Tools to extract key phrases."
32
+
- content: "Use Azure Language in Foundry Tools to find and redact PII entities."
33
+
isCorrect: true
34
+
explanation: "Correct. PII entities help identify and remove personal details from the text before publishing."
35
+
- content: "Use Azure Language in Foundry Tools to detect the language and publish only the testimonials in English."
33
36
isCorrect: false
34
-
explanation: "Incorrect. Key phrases are terms that indicate the main themes of the text, not specific entities that are mentioned."
35
-
- content: "Use Azure Language in Foundry Tools to detect the language of the text."
37
+
explanation: "Incorrect. The language text is written in doesn't help redact personal details."
38
+
- content: "Use a gpt-4.1 model to create new AI-generated customer reviews."
36
39
isCorrect: false
37
-
explanation: 'Incorrect. The language text is written in doesn''t help identify which "Paris" is being referenced.'
38
-
- content: "Use Azure Language in Foundry Tools to extract linked entities."
39
-
isCorrect: true
40
-
explanation: "Correct. Linked entities enable you to disambiguate common entities of the same name."
40
+
explanation: "Incorrect. Creating new AI-generated reviews does not address the need to remove personal details from existing testimonials."
Copy file name to clipboardExpand all lines: learn-pr/wwl-data-ai/analyze-text-ai-language/includes/10-summary.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -2,8 +2,8 @@
2
2
In this module, you learned how to use Azure Language in Foundry Tools to:
3
3
4
4
- Detect language from text.
5
-
-Analyze text sentiment.
6
-
- Extract key phrases, entities, and linked entities.
5
+
-Recognize named entities in text.
6
+
- Extract personally identifiable information (PII) in text.
7
7
8
8
> [!TIP]
9
9
> To learn more about Azure Language in Foundry Tools and some of the concepts covered in this module, refer to the **[Azure Language in Foundry Tools documentation](/azure/ai-services/language-service?azure-portal=true)**.
Copy file name to clipboardExpand all lines: learn-pr/wwl-data-ai/analyze-text-ai-language/includes/2-provision-resource.md
+2-4Lines changed: 2 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,12 +1,10 @@
1
1
Azure Language in Foundry Tools is designed to help you extract information from text. It provides functionality that you can use for tasks like:
2
2
3
3
-*Language detection* - determining the language in which text is written.
4
-
-*Key phrase extraction* - identifying important words and phrases in the text that indicate the main points.
5
-
-*Sentiment analysis* - quantifying how positive or negative the text is.
6
4
-*Named entity recognition* - detecting references to entities, including people, locations, time periods, organizations, and more.
7
-
-*Entity linking* - identifying specific entities by providing reference links to Wikipedia articles.
5
+
-*Personally Identifiable Information (PII) extraction* - identifying and redacting personal details in text.
8
6
9
-
:::image type="content" source="../media/text-analytics-resource.png" alt-text="Diagram showing an Azure Language resource performing language detection, key phrase extraction, sentiment analysis, named entity recognition, and entity linking.":::
7
+
:::image type="content" source="../media/text-analytics-resource.png" alt-text="Diagram showing an Azure Language resource performing language detection, named entity recognition, and PII extraction.":::
10
8
11
9
## Using a Microsoft Foundry resource for text analysis
0 commit comments