AI-900-CN Exam Question 56
哪種自然語言處理功能可用於識別客戶回饋調查中的主要談話要點?
Correct Answer: D
According to the Microsoft Azure AI Fundamentals (AI-900) official study guide and the Microsoft Learn module "Explore natural language processing (NLP) in Azure", key phrase extraction is a core feature of the Azure AI Language Service that enables you to automatically identify the most important ideas or topics discussed in a body of text.
When analyzing customer feedback surveys, key phrase extraction helps summarize the main talking points or recurring themes by detecting significant words and phrases. For instance, if multiple customers write comments like "The checkout process is slow" or "Website speed could be improved," the model may extract key phrases such as "checkout process" and "website speed." This allows businesses to quickly understand the most common subjects without manually reading each response.
Let's review the other options:
* A. Language detection: Determines the language of the text (e.g., English, French, or Spanish) but does not identify main ideas.
* B. Translation: Converts text from one language to another using Azure Translator; it does not summarize or extract key information.
* C. Entity recognition: Identifies named entities such as people, organizations, locations, or dates. While useful for identifying specific details, it does not capture general topics or overall discussion points.
Therefore, the appropriate NLP feature for identifying main topics or themes within textual data such as survey responses is Key Phrase Extraction.
This capability is part of the Azure AI Language Service and is commonly used in sentiment analysis pipelines, customer feedback analytics, and business intelligence workflows to summarize large text datasets efficiently.
When analyzing customer feedback surveys, key phrase extraction helps summarize the main talking points or recurring themes by detecting significant words and phrases. For instance, if multiple customers write comments like "The checkout process is slow" or "Website speed could be improved," the model may extract key phrases such as "checkout process" and "website speed." This allows businesses to quickly understand the most common subjects without manually reading each response.
Let's review the other options:
* A. Language detection: Determines the language of the text (e.g., English, French, or Spanish) but does not identify main ideas.
* B. Translation: Converts text from one language to another using Azure Translator; it does not summarize or extract key information.
* C. Entity recognition: Identifies named entities such as people, organizations, locations, or dates. While useful for identifying specific details, it does not capture general topics or overall discussion points.
Therefore, the appropriate NLP feature for identifying main topics or themes within textual data such as survey responses is Key Phrase Extraction.
This capability is part of the Azure AI Language Service and is commonly used in sentiment analysis pipelines, customer feedback analytics, and business intelligence workflows to summarize large text datasets efficiently.
AI-900-CN Exam Question 57
將 Azure 認知服務與適當的 AI 工作負載相符。
要回答,請將適當的服務從左側列拖曳到右側的工作負載。每項服務可以使用一次、多次或完全不使用。
注意:每場正確的比賽都值得一分。

要回答,請將適當的服務從左側列拖曳到右側的工作負載。每項服務可以使用一次、多次或完全不使用。
注意:每場正確的比賽都值得一分。

Correct Answer:

Explanation:

The correct matches are Custom Vision, Form Recognizer, and Face - each corresponding to a distinct capability under Azure Cognitive Services as described in the Microsoft Azure AI Fundamentals (AI-900) official study guide and Microsoft Learn modules on Computer Vision workloads.
* Custom Vision # Identify objects in an imageThe Custom Vision service is part of the Azure Cognitive Services suite that enables developers to train custom image classification and object detection models.
Unlike the prebuilt Computer Vision API, Custom Vision allows users to upload their own labeled images and teach the model to recognize specific objects relevant to their business context. The AI-900 syllabus explains that Custom Vision is ideal for tasks such as identifying products on a shelf, categorizing images, or detecting defects in manufacturing.
* Form Recognizer # Automatically import data from an invoice to a databaseForm Recognizer is a document processing AI service that extracts structured data from forms, receipts, and invoices. It uses optical character recognition (OCR) combined with layout and key-value pair detection to automatically capture information such as invoice numbers, amounts, and vendor names. The AI-900 study materials highlight this service under the Document Intelligence category, emphasizing its ability to streamline data entry and business automation workflows by importing extracted data directly into databases or applications.
* Face # Identify people in an imageThe Face service provides advanced facial detection and recognition capabilities. It can locate faces in images, compare similarities between faces, identify known individuals, and even detect facial attributes such as age or emotion. The AI-900 course classifies this under Computer Vision services for person identification and security-related use cases such as access control or identity verification.
Thus, each mapping aligns precisely with the AI-900 official learning outcomes on Cognitive Services capabilities:
* Custom Vision # Object recognition
* Form Recognizer # Data extraction from forms
* Face # People identification
# Final verified configuration:
* Custom Vision # Identify objects in an image
* Form Recognizer # Automatically import data from an invoice to a database
* Face # Identify people in an image
AI-900-CN Exam Question 58
選出正確完成句子的答案。


Correct Answer:

Explanation:

During model training, a portion of the dataset (commonly 70-80%) is used to teach the machine learning algorithm to identify patterns and relationships between input features and the output label. The remaining data (usually 20-30%) is held back to evaluate the model's performance and verify its accuracy on unseen data. This ensures the model is not overfitted (too tightly fitted to training data) and can generalize well to new inputs.
Key steps highlighted in Microsoft Learn materials:
* Model Training: Use the training data to fit the model - the algorithm learns relationships between input features and labels.
* Model Evaluation: Use the test or validation data to assess the accuracy, precision, recall, or other metrics of the trained model.
* Model Deployment: Once validated, the model is deployed to make real-world predictions.
Other options explained:
* Feature engineering: Involves preparing and transforming input data, not splitting datasets for training and testing.
* Time constraints: Not a machine learning process step.
* Feature stripping: Not a recognized ML concept.
* MLflow models: Refers to an open-source tool for tracking and managing models, not dataset splitting or training.
Thus, when you use a portion of the dataset to prepare and train a machine learning model, and retain the rest to verify results, the process is known as model training.
AI-900-CN Exam Question 59
對於以下每個陳述,如果該陳述為真,請選擇「是」。否則,選擇“否”。 注意:每個正確的選擇都值得一分。


Correct Answer:

Explanation:

This question is derived from the Microsoft Azure AI Fundamentals (AI-900) learning module, particularly under "Describe features of conversational AI workloads on Azure." It tests understanding of chatbot capabilities and design principles within the context of Azure Bot Service and Conversational AI.
* Chatbots can support voice input - YesAccording to the AI-900 official materials, conversational AI systems such as chatbots can interact with users through text or voice. Using speech recognition services like Azure Cognitive Services Speech-to-Text, bots can interpret spoken input, and with Text- to-Speech, they can respond verbally. This enables voice-based chatbots used in virtual assistants, call centers, and customer support. Hence, voice input is fully supported by conversational AI solutions in Azure.
* A separate chatbot is required for each communication channel - NoThe Azure Bot Service is designed to provide multi-channel communication from a single bot instance. A single chatbot can communicate across several channels such as Microsoft Teams, Web Chat, Slack, Facebook Messenger, and email without needing separate bots for each platform. This centralized design allows developers to create, deploy, and manage one bot while configuring multiple channel connections through the Azure portal.
Therefore, the statement is false.
* Chatbots manage conversation flows by using a combination of natural language and constrained option responses - YesIn Microsoft's AI-900 training, chatbots are described as using Natural Language Processing (NLP) to understand free-form user input while also guiding interactions with predefined options such as buttons or quick replies. This hybrid approach ensures both flexibility and control, improving user experience and accuracy. Bots can interpret natural language via services like Language Understanding (LUIS) and also present structured options to guide conversations efficiently.
AI-900-CN Exam Question 60
您需要為網站開發一個聊天機器人。聊天機器人必須根據以下文件中的資訊回答使用者的問題:
Microsoft Word 文件中的產品故障排除指南
網頁上的常見問題 (FAQ) 列表
您應該使用哪種服務來處理文件?
Microsoft Word 文件中的產品故障排除指南
網頁上的常見問題 (FAQ) 列表
您應該使用哪種服務來處理文件?
Correct Answer: D
QnA Maker is an Azure Cognitive Service used to build question-and-answer knowledge bases from structured and unstructured documents, such as FAQs, product manuals, or webpages. According to the AI-
900 study guide and Microsoft Learn module "Build a knowledge base with QnA Maker", this service allows you to extract question-answer pairs from existing data sources like FAQ pages, PDF files, or Word documents.
In this scenario, you have:
* A product troubleshooting guide (Word document)
* A FAQ webpage
QnA Maker can automatically read both sources, extract relevant Q&A pairs, and create a knowledge base that your chatbot can use to respond to user queries intelligently.
To clarify the other options:
* A. Azure Bot Service provides the chatbot interface and conversation logic but doesn't extract knowledge from documents.
* B. Language Understanding (LUIS) identifies intents and entities in natural language input, but it's not used to read document content.
* C. Text Analytics is used for key phrase extraction and sentiment analysis, not Q&A creation.
Therefore, the correct service for processing FAQ-style and document-based content into a question- answering bot is QnA Maker.
Reference:Microsoft Learn - Build a QnA Maker knowledge base from existing documents (AI-900 Learning Path)
900 study guide and Microsoft Learn module "Build a knowledge base with QnA Maker", this service allows you to extract question-answer pairs from existing data sources like FAQ pages, PDF files, or Word documents.
In this scenario, you have:
* A product troubleshooting guide (Word document)
* A FAQ webpage
QnA Maker can automatically read both sources, extract relevant Q&A pairs, and create a knowledge base that your chatbot can use to respond to user queries intelligently.
To clarify the other options:
* A. Azure Bot Service provides the chatbot interface and conversation logic but doesn't extract knowledge from documents.
* B. Language Understanding (LUIS) identifies intents and entities in natural language input, but it's not used to read document content.
* C. Text Analytics is used for key phrase extraction and sentiment analysis, not Q&A creation.
Therefore, the correct service for processing FAQ-style and document-based content into a question- answering bot is QnA Maker.
Reference:Microsoft Learn - Build a QnA Maker knowledge base from existing documents (AI-900 Learning Path)
- Latest Upload
- 183CompTIA.220-1202.v2026-06-16.q110
- 125TheInstitutes.CPCU-500.v2026-06-16.q25
- 188ACAMS.CAMS7-CN.v2026-06-16.q170
- 191CBIC.CIC.v2026-06-15.q123
- 134Peoplecert.ITIL-4-Specialist-High-velocity-IT.v2026-06-15.q16
- 230HashiCorp.Terraform-Associate-004.v2026-06-15.q126
- 133Peoplecert.ITILFNDv5.v2026-06-15.q26
- 133Workday.Workday-Pro-HCM-Reporting.v2026-06-15.q28
- 136Fortinet.NSE5_SSE_AD-7.6.v2026-06-15.q17
- 355PMI.PMI-ACP.v2026-06-15.q523
[×]
Download PDF File
Enter your email address to download Microsoft.AI-900-CN.v2026-03-07.q156 Practice Test
