AI-900-CN Exam Question 141
選出正確完成句子的答案。


Correct Answer:

Explanation:

According to the Microsoft Azure AI Fundamentals (AI-900) official study materials and the Microsoft Learn module "Describe Azure Machine Learning and Automated ML," Azure Machine Learning designer (formerly known as Azure Machine Learning Studio) is a drag-and-drop, low-code/no-code environment that allows users to create, train, and evaluate machine learning models visually - without the need for extensive programming knowledge.
The designer provides a visual interface, known as the canvas, where users can:
* Import and prepare data using modules for data transformation and cleaning.
* Split data into training and testing datasets.
* Select and configure algorithms (classification, regression, or clustering).
* Train and evaluate the model.
* Deploy the model as a web service directly from the designer.
The official Microsoft Learn content emphasizes that "Azure Machine Learning designer enables users to build, test, and deploy models by adding and connecting prebuilt modules on a visual interface." This allows business analysts, data professionals, and beginners to experiment with machine learning workflows without writing code.
By comparison:
* Automatically performing common data preparation tasks refers to Automated ML, not the designer.
* Automatically selecting an algorithm is also part of Automated ML, which optimizes models algorithmically.
* Using a code-first notebook experience applies to Azure Machine Learning notebooks, intended for data scientists familiar with Python and SDKs.
Therefore, as per the AI-900 study guide and Microsoft Learn documentation, the verified and correct answer is:
# Adding and connecting modules on a visual canvas, which accurately describes how Azure Machine Learning designer operates.
AI-900-CN Exam Question 142
選出正確完成句子的答案。


Correct Answer:

Explanation:

The correct completion of the sentence is:
"The Form Recognizer service can be used to extract information from a driver's license to populate a database." According to the Microsoft Azure AI Fundamentals (AI-900) official study guide and the Microsoft Learn module "Identify features of computer vision workloads," Azure Form Recognizer (part of Azure AI Document Intelligence) is a document processing service that uses machine learning and optical character recognition (OCR) to extract structured data, key-value pairs, and text from documents such as invoices, receipts, identity cards, and driver's licenses.
This service allows businesses to automate data entry and document processing workflows by converting physical or scanned documents into machine-readable formats. For example, with a driver's license, Form Recognizer can extract structured data fields such as Name, Date of Birth, License Number, and Expiration Date, and automatically populate those values into a database or CRM system.
The AI-900 study materials emphasize that Form Recognizer is designed to handle both structured and unstructured document layouts. It includes prebuilt models for common document types (like invoices, receipts, and identity documents) and supports custom models for domain-specific forms.
By comparison:
* Computer Vision extracts general text or image content but doesn't structure or label extracted fields.
* Custom Vision is used for training image classification or object detection models.
* Conversational Language Understanding is for processing text or speech to determine intent, not extracting document data.
Therefore, based on the Microsoft Learn AI-900 official study content, the Form Recognizer service is the correct choice, as it is explicitly designed to extract and structure data from documents like driver's licenses, forms, and receipts - making it ideal for automatically populating a database.
AI-900-CN Exam Question 143
對於以下每個陳述,如果該陳述為真,請選擇「是」。否則,選擇“否”。 注意:每個正確的選擇都值得一分。


Correct Answer:

Explanation:

The Azure Text Analytics service, a component of Azure Cognitive Services, provides natural language processing (NLP) capabilities to analyze and understand text-based data. According to the Microsoft Azure AI Fundamentals (AI-900) official study guide and Microsoft Learn module "Identify features and uses for Natural Language Processing (NLP)", the Text Analytics service supports multiple text understanding tasks, such as language detection, key phrase extraction, sentiment analysis, and entity recognition.
* Language Identification - Yes:Text Analytics can automatically detect the language in which text is written. This feature analyzes linguistic patterns and assigns a language code (for example, "en" for English, "es" for Spanish). It is one of the primary features described in Microsoft Learn as part of the service's Language Detection API.
* Detect Handwritten Signatures - No:Detecting handwritten signatures is not a text-based NLP task.
Instead, it belongs to the computer vision domain, specifically Optical Character Recognition (OCR).
The Text Analytics service only processes digital text, not handwritten or image-based data. To detect handwriting or signatures, you would use the Computer Vision OCR API, not Text Analytics.
* Entity Recognition - Yes:The Text Analytics service can identify named entities-such as people, locations, organizations, dates, and quantities-within documents. This is known as Named Entity Recognition (NER), which helps extract structured information from unstructured text.
AI-900-CN Exam Question 144
您有一個機器人可以識別超市貨架圖像中產品的品牌名稱。
機器人使用哪種服務?
機器人使用哪種服務?
Correct Answer: C
According to the Microsoft Azure AI Fundamentals (AI-900) official study guide and Microsoft Learn module "Describe features of computer vision workloads on Azure," the Custom Vision service is a specialized part of Azure Cognitive Services that allows developers to train image classification and object detection models tailored to their own data. It is particularly useful when prebuilt models, such as those in the standard Computer Vision service, cannot accurately recognize domain-specific objects - such as specific product brands or packaging.
In this scenario, the bot must identify brand names of products in images of supermarket shelves. Since brand logos and packaging designs are unique to each company, a general-purpose image analysis model would not perform accurately. The Custom Vision Image Classification capability allows you to upload labeled images (e.g., various brands) and train a model to distinguish between them. Once trained, the model can classify new images and recognize which brand appears on the shelf.
Let's analyze the other options:
* A. AI enrichment for Azure Search capabilities: Used in knowledge mining to extract information from documents, not image brand identification.
* B. Computer Vision Image Analysis capabilities: Provides prebuilt functionality such as detecting objects, describing images, and identifying common items (like "bottle" or "box") but cannot differentiate custom brand names.
* D. Language understanding capabilities: Deals with processing and understanding natural language text, not images.
Therefore, identifying specific brand names from images requires a custom-trained image classification model, making Custom Vision Image Classification capabilities the correct answer.
# Final Verified answer:
C). Custom Vision Image Classification capabilities
In this scenario, the bot must identify brand names of products in images of supermarket shelves. Since brand logos and packaging designs are unique to each company, a general-purpose image analysis model would not perform accurately. The Custom Vision Image Classification capability allows you to upload labeled images (e.g., various brands) and train a model to distinguish between them. Once trained, the model can classify new images and recognize which brand appears on the shelf.
Let's analyze the other options:
* A. AI enrichment for Azure Search capabilities: Used in knowledge mining to extract information from documents, not image brand identification.
* B. Computer Vision Image Analysis capabilities: Provides prebuilt functionality such as detecting objects, describing images, and identifying common items (like "bottle" or "box") but cannot differentiate custom brand names.
* D. Language understanding capabilities: Deals with processing and understanding natural language text, not images.
Therefore, identifying specific brand names from images requires a custom-trained image classification model, making Custom Vision Image Classification capabilities the correct answer.
# Final Verified answer:
C). Custom Vision Image Classification capabilities
AI-900-CN Exam Question 145
對於以下每個陳述,如果該陳述為真,請選擇「是」。否則,選擇“否”。 注意:每個正確的選擇都值得一分。


Correct Answer:

Explanation:

The Azure AI Language Service includes several natural language processing features, such as question answering, language understanding, entity recognition, sentiment analysis, and more. Each feature serves a distinct purpose, and understanding their differences is key to selecting the correct AI workload.
* "You can use Azure AI Language Service ' s question answering to query an Azure SQL database." - NOThe question answering feature is designed to retrieve answers from text-based knowledge sources (for example, FAQs, documents, or website content). It cannot directly query a database such as Azure SQL. Querying databases requires Azure Cognitive Search, Azure OpenAI, or custom integration using application logic, not the question answering model.
* "You should use Azure AI Language Service ' s question answering when you want a knowledge base to provide the same answer to different users who submit similar questions." - YESThis is the primary use case of question answering. It allows developers to build a knowledge base (KB) of predefined question-answer pairs or extract answers from documents. When users submit semantically similar questions (e.g., "What are your office hours?" or "When are you open?"), the service returns the same consistent answer.
* "Azure AI Language Service ' s question answering can determine the intent of a user utterance." - NODetermining user intent is part of the Language Understanding (LUIS) capability, not question answering. LUIS models map natural language inputs to intents and entities, typically used in bots or applications that execute tasks (like booking a meeting or checking weather).
Hence, correct answers are: No, Yes, No - aligning with the AI-900 official study guide and Microsoft Learn module "Identify Azure AI Language capabilities."
- Other Version
- 451Microsoft.AI-900-CN.v2026-04-21.q135
- 374Microsoft.AI-900-CN.v2026-03-07.q156
- 584Microsoft.AI-900-CN.v2025-12-26.q125
- Latest Upload
- 132Microsoft.AB-731.v2026-07-03.q32
- 119Microsoft.AI-900-CN.v2026-07-03.q148
- 147GIAC.GICSP.v2026-07-03.q43
- 187EC-COUNCIL.212-89.v2026-07-03.q125
- 153Salesforce.Plat-Admn-201.v2026-07-02.q74
- 273AAPC.CPC.v2026-07-02.q224
- 163Cisco.820-605.v2026-07-02.q83
- 164Cisco.300-435.v2026-07-02.q95
- 131PaloAltoNetworks.XSIAM-Analyst.v2026-07-02.q35
- 222IIA.IIA-CIA-Part3-CN.v2026-07-02.q222
[×]
Download PDF File
Enter your email address to download Microsoft.AI-900-CN.v2026-07-03.q148 Practice Test
