DumpsFiles
 Request Exam  Contact
  • Home
  • PRACTICE EXAMS
    Oracle
    Fortinet
    Juniper
    Microsoft
    Cisco
    Citrix
    CompTIA
    VMware
    ISC
    SAP
    EMC
    PMI
    HP
    Salesforce
    Other
  • View All Exams
  • New Dumps Files
  • Upload
  • Oracle
    Oracle
  • Fortinet
    Fortinet
  • Juniper
    Juniper
  • Microsoft
    Microsoft
  • Cisco
    Cisco
  • Citrix
    Citrix
  • CompTIA
    CompTIA
  • VMware
    VMware
  • ISC
    ISC
  • SAP
    SAP
  • EMC
    EMC
  • PMI
    PMI
  • HP
    HP
  • Salesforce
    Salesforce
  1. Home
  2. Microsoft Certification
  3. AI-102 Exam
  4. Microsoft.AI-102.dumpsfiles Dumps

Free Microsoft AI-102 Exam Dumps Questions & Answers

Exam Code/Number:AI-102Join the discussion
Exam Name:Designing and Implementing a Microsoft Azure AI Solution
Certification:Microsoft
Question Number:425
Publish Date:Jul 18, 2026
Rating
100%
Page: 1 / 85
Total 425 questions
Captcha image

Question 1

You have a collection of press releases stored as PDF files.
You need to extract text from the files and perform sentiment analysis.
Which service should you use for each task? To answer, select the appropriate options in the answer area.
NOTE: Each correct selection is worth one point.

Correct Answer:

Explanation:

You have press releases stored as PDF files. The task involves two parts:
Extract text
The correct service for OCR and text extraction from images and PDFs is Azure Computer Vision (specifically, the OCR and Read API).
While Form Recognizer can also extract text, it is primarily used for structured documents like invoices, receipts, or forms. Since the documents here are press releases (unstructured text), the best service is Computer Vision.
Perform sentiment analysis
Sentiment analysis falls under natural language processing (NLP).
The correct service is Azure AI Language (Text Analytics API).
It provides sentiment analysis, opinion mining, key phrase extraction, entity recognition, and more.
Why not other options?
Azure Cognitive Search is used for search indexing, not OCR or sentiment.
Form Recognizer specializes in structured document extraction, not sentiment analysis.
Computer Vision cannot perform sentiment analysis (only visual/text extraction).

Question 2

You have a Custom Vision service project that performs object detection. The project uses the General domain for classification and contains a trained model.
You need to export the model for use on a network that is disconnected from the internet.
Which three actions should you perform in sequence? To answer, move the appropriate actions from the list o
' actions to the answer area and arrange them in the correct order.

Correct Answer:

Explanation:
Change Domains to General (compact).
Retain the model.
Export the model.
You have a Custom Vision project that performs object detection. The project currently uses the General domain. You need to export the trained model for offline use (on a disconnected network).
Steps required:
Change Domains to General (compact).
Export is only supported with a Compact domain.
The General (compact) domain is optimized for exporting to devices (e.g., ONNX, TensorFlow, CoreML, etc.).
If you stay in "General" domain, you cannot export.
Retain the model.
After switching domains, you must retrain the model in the new compact domain to generate updated weights.
Export the model.
Once retrained in a compact domain, you can export the model for offline deployment.
Export formats include ONNX, TensorFlow, CoreML, or Docker container, depending on use case.
Why not the others?
Create a new classification model # Not needed; you already have an object detection model.
Change the classification type # Incorrect; the problem is with the domain type, not classification type.
Correct Answer Order:
Change Domains to General (compact).
Retain the model.
Export the model.
Microsoft References
Export a model from Custom Vision
Domains in Custom Vision

Question 3

Note: This question is part of a series of questions that present the same scenario. Each question in the series contains a unique solution that might meet the stated goals. Some question sets might have more than one correct solution, while others might not have a correct solution.
After you answer a question in this section, you will NOT be able to return to it. As a result, these questions will not appear in the review screen.
You develop an application to identify species of flowers by training a Custom Vision model. You receive images of new flower species.
You need to add the new images to the classifier.
Solution: You add the new images and labels to the existing model. You retrain the model, and then publish the model.
Does this meet the goal?

Correct Answer: A
Explanation: (Only visible for DumpsFiles members)

Question 4

You are developing a streaming Speech to Text solution that will use the Speech SDK and MP3 encoding.
You need to develop a method to convert speech to text for streaming MP3 data.
How should you complete the code? To answer, select the appropriate options in the answer area.
NOTE: Each correct selection is worth one point.

Correct Answer:

Explanation:

Scenario Recap
You are building a streaming Speech-to-Text solution using the Speech SDK.
Input audio format: MP3 encoding
You must configure the audio stream format and the recognizer properly.
Code Analysis
Audio Format
For MP3 streams, the correct method is:
AudioStreamFormat.GetCompressedFormat(AudioStreamContainerFormat.MP3)
This creates an audio format object for compressed MP3 input.
Recognizer
Since the task is speech-to-text transcription, you need the SpeechRecognizer class.
Other options like KeywordRecognizer, SpeakerRecognizer, or SpeechSynthesizer are not appropriate (they handle keyword spotting, speaker identification, or text-to-speech).
Completed Code Snippet
var audioFormat = AudioStreamFormat.GetCompressedFormat(AudioStreamContainerFormat.MP3); var speechConfig = SpeechConfig.FromSubscription( " 18c51a87-3a69-47a8-aedc-a54745f708a1 " , " westus
" );
var audioConfig = AudioConfig.FromStreamInput(pushStream, audioFormat); using ( var recognizer = new SpeechRecognizer(speechConfig, audioConfig))
{
var result = await recognizer.RecognizeOnceAsync();
var text = result.Text;
}
Final Answer (Answer Area Selections)
AudioFormat: AudioStreamFormat.GetCompressedFormat
Recognizer: SpeechRecognizer
Microsoft References
Speech SDK - AudioStreamFormat
SpeechRecognizer class

Question 5

You are building an app that will analyze text by using the Azure Al Language service.
You need to configure the app to mask the telephone number and email details in a given document.
How should you complete the code? To answer, select the appropriate options in the answer area.
NOTE: Each correct selection is worth one point.

Correct Answer:

Explanation:

To mask (redact) phone numbers and email addresses in text using Azure AI Language, you should call the PII entity recognition operation and then print the redacted text that the service returns. In the SDKs, this corresponds to calling RecognizePiiEntities and reading the RedactedText from the result object. The PII feature automatically detects categories such as PhoneNumber and Email and returns a redacted version of the input (masked) in the redactedText/RedactedText field. This is exactly what the code snippet's "Masked Text" output is asking for.
Therefore:
Use RecognizePiiEntities to detect and redact PII in the document.
Output RedactedText to print the masked string.
Microsoft References
How-to: Detect and redact PII in text (overview and redaction behavior). Microsoft Learn Quickstart: Detect Personally Identifiable Information (shows PII detection and redacted output). Microsoft Learn NET reference: PiiEntityCollection.RedactedText property ("Gets the text of the input document with all PII redacted"). Microsoft Learn Python client overview: recognize_pii_entities operation for PII detection. Microsoft Learn

Recent Comments (The most recent comments are at the top.)

Kishan Kumar   
Sep 06, 2025

I want to join community

Kishan Kumar   
Sep 06, 2025

I want to join community

Kishan Kumar   
Sep 06, 2025

I want to join community

Kishan Kumar   
Sep 06, 2025

I want to join community

Add Comments

Your email address will not be published. Required fields are marked *

insert code
Type the characters from the picture.
Rating:

AI-102 Dumps Other Version

Microsoft.AI-102.v2026-03-17.q177

Microsoft.AI-102.v2025-11-08.q207

Microsoft.Itexamdownload.AI-102.v2022-08-29.by.hyman.127q.pdf

Microsoft.AI-102.v2022-04-20.q104

Latest Upload

HITRUST.CCSFP.v2026-05-01.q52
SAP.C_BCSBS_2502.v2026-05-01.q22
Fortinet.FCP_ZCS_AD-7.4.v2026-04-30.q31
Salesforce.Agentforce-Specialist.v2026-04-29.q163
Cisco.300-610.v2026-04-29.q123
CIPS.L5M15.v2026-04-29.q31
Lpi.101-500.v2026-04-29.q214
SAP.C_P2WFI_2023.v2026-04-28.q26
PaloAltoNetworks.NetSec-Pro.v2026-04-28.q21
Microsoft.AZ-400.v2026-04-28.q330
[×]

Download PDF File

Enter your email address to download Microsoft.AI-102.dumpsfiles Dumps

Email:

DumpsFiles

Our website provides the Largest and the most Latest vendors Certification Exam materials around the world.

Using dumps we provide to Pass the Exam, we has the Valid Dumps with passing guranteed just which you need.

  • DMCA
  • About
  • Contact Us
  • Privacy Policy
  • Terms & Conditions
©2026 DumpsFiles

www.dumpsfiles.com materials do not contain actual questions and answers from Cisco's certification exams.