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/get-started-text-analysis-azure/6-knowledge-check.yml
+10-20Lines changed: 10 additions & 20 deletions
Original file line number
Diff line number
Diff line change
@@ -4,36 +4,25 @@ title: Module assessment
4
4
metadata:
5
5
title: Module assessment
6
6
description: "Knowledge check"
7
-
ms.date: 02/10/2026
7
+
ms.date: 04/10/2026
8
8
author: wwlpublish
9
9
ms.author: sheryang
10
10
ms.topic: unit
11
-
durationInMinutes: 4
11
+
durationInMinutes: 3
12
12
quiz:
13
13
title: ""
14
14
questions:
15
-
- content: "You want to use Azure Language to determine the key talking points in a text document. Which feature of the service should you use?"
15
+
- content: "You need to analyze text where the same input must return structured results based on statistical techniques. Which approach is most appropriate?"
16
16
choices:
17
-
- content: "Sentiment analysis"
17
+
- content: "The OpenAI responses API, because it can follow natural language instructions."
18
18
isCorrect: false
19
-
explanation: "Incorrect. Sentiment analysis returns a numeric score indicating how positive or negative the text is."
20
-
- content: "Key phrase extraction"
19
+
explanation: "Incorrect. The OpenAI responses API generates text probabilistically, so results can vary between calls — which is unsuitable for pipelines that require consistent output."
20
+
- content: "The Azure Language SDK, because it returns deterministic, structured output."
21
21
isCorrect: true
22
-
explanation: "Correct. Key phrases can be used to identify the main talking points in a text document."
23
-
- content: "Entity detection"
22
+
explanation: "Correct. The Azure Language SDK uses purpose-built analyzers that return consistent, structured results for the same input, making it well-suited for automated pipelines."
23
+
- content: "The chat playground in Foundry, because it supports follow-up questions."
24
24
isCorrect: false
25
-
explanation: "Incorrect. Entity detection identifies specific types of entity in the document, not the main talking points."
26
-
- content: "You use Azure Language to perform sentiment analysis on a sentence. The sentiment scores returned are: 0.04 positive, 0.36 neutral, and 0.60 negative. What do these scores indicate about the sentence sentiment?"
27
-
choices:
28
-
- content: "The document is positive."
29
-
isCorrect: false
30
-
explanation: "Incorrect. The sentiment is most likely the type with the highest sentiment score."
31
-
- content: "The document is neutral."
32
-
isCorrect: false
33
-
explanation: "Incorrect. The sentiment is most likely the type with the highest sentiment score."
34
-
- content: "The document is negative."
35
-
isCorrect: true
36
-
explanation: "Correct. The sentiment is most likely the type with the highest sentiment score, in this case 0.60 negative."
25
+
explanation: "Incorrect. The chat playground is an interactive exploration tool, not a programmatic solution for automated pipelines."
37
26
- content: "What is the purpose of the client object in the Azure Language SDK?"
38
27
choices:
39
28
- content: "It stores the application's user interface settings."
@@ -56,3 +45,4 @@ quiz:
56
45
- content: "To expose Azure Language capabilities to agents through the Model Context Protocol."
57
46
isCorrect: true
58
47
explanation: "Correct. The MCP server allows agents to access Azure Language capabilities in a structured way through the Model Context Protocol."
@@ -22,7 +22,7 @@ Consider some of these applications of text analysis:
22
22
23
23
-**Legal Document Summarization**: Law firms manage lengthy case files, court rulings, and agreements. Text analysis techniques can help summarize complex legal texts, highlight important clauses, and classify documents by topic, enabling attorneys to work more efficiently and make informed decisions faster.
24
24
25
-
Next, let's explore language capabilities on Azure. In particular, we’ll focus on **Azure language in Microsoft Foundry tools**, a pre-trained service that can handle multiple text analysis tasks.
25
+
Next, let's explore text analysis capabilities in Microsoft Foundry.
0 commit comments