Our pass rate is high to 98.9% and the similarity percentage between our AI-102 study guide and real exam is 90% based on our seven-year educating experience. Do you want achievements in the Microsoft AI-102 exam in just one try? I am currently studying for the Microsoft AI-102 exam. Latest Microsoft AI-102 Test exam practice questions and answers, Try Microsoft AI-102 Brain Dumps First.
Check AI-102 free dumps before getting the full version:
NEW QUESTION 1
HOTSPOT
You are designing a conversation flow to be used in a chatbot.
You need to test the conversation flow by using the Microsoft Bot Framework Emulator. How should you complete the .chat file? To answer, select the appropriate options in the
answer area.
NOTE: Each correct selection is worth one point.
Solution:

Does this meet the goal?
- A. Yes
- B. Not Mastered
Answer: A
NEW QUESTION 2
You are developing an app that will use the Decision and Language APIs.
You need to provision resources for the app. The solution must ensure that each service is accessed by using a single endpoint and credential.
Which type of resource should you create?
- A. Language
- B. Speech
- C. Azure Cognitive Services
- D. Content Moderator
Answer: C
NEW QUESTION 3
HOTSPOT
Select the answer that correctly completes the sentence.
Solution:

Does this meet the goal?
- A. Yes
- B. Not Mastered
Answer: A
NEW QUESTION 4
You are developing a method for an application that uses the Translator API.
The method will receive the content of a webpage, and then translate the content into Greek (el). The result will also contain a transliteration that uses the Roman alphabet.
You need to create the URI for the call to the Translator API. You have the following URI. https://api.cognitive.microsofttranslator.com/translate?api-version=3.0
Which three additional query parameters should you include in the URI? Each correct answer presents part of the solution. (Choose three.)
NOTE: Each correct selection is worth one point.
- A. toScript=Cyrl
- B. from=el
- C. textType=html
- D. to=el
- E. textType=plain
- F. toScript=Latn
Answer: ADF
Explanation:
C: textType is an optional parameter. It defines whether the text being translated is plain text or HTML text (used for web pages).
D: to is a required parameter. It specifies the language of the output text. The target language must be one of the supported languages included in the translation scope.
F: toScript is an optional parameter. It specifies the script of the translated text. We use Latin (Roman alphabet) script.
Reference:
https://docs.microsoft.com/en-us/azure/cognitive-services/translator/reference/v3-0- translate
NEW QUESTION 5
You have an Azure subscription. The subscription contains an Azure OpenAI resource that hosts a GPT-3.5 Turbo model named Model1.
You configure Model1 to use the following system message: "You are an Al assistant that helps people solve mathematical puzzles. Explain your answers as if the request is by a 4- year-old."
Which type of prompt engineering technique is this an example of?
- A. few-shot learning
- B. affordance
- C. chain of thought
- D. priming
Answer: D
NEW QUESTION 6
HOTSPOT
Select the answer that correctly completes the sentence.
Solution:

Does this meet the goal?
- A. Yes
- B. Not Mastered
Answer: A
NEW QUESTION 7
HOTSPOT
You are developing the shopping on-the-go project. You need to build the Adaptive Card for the chatbot.
How should you complete the code? To answer, select the appropriate options in the answer area.
NOTE: Each correct selection is worth one point.
Solution:
Description automatically generated Box 1: name.en
Box 2: "$when": "${stockLevel != 'OK'}"
Product displays must include images and warnings when stock levels are low or out of stock.
Box 3:image.altText.en
Does this meet the goal?
- A. Yes
- B. Not Mastered
Answer: A
NEW QUESTION 8
HOTSPOT
Select the answer that correctly completes the sentence.
Solution:

Does this meet the goal?
- A. Yes
- B. Not Mastered
Answer: A
NEW QUESTION 9
HOTSPOT
Select the answer that correctly completes the sentence.
Solution:

Does this meet the goal?
- A. Yes
- B. Not Mastered
Answer: A
NEW QUESTION 10
DRAG DROP
Match the Azure services to the appropriate locations in the architecture.
To answer, drag the appropriate service from the column on the left to its location on the right. Each service may be used once, more than once, or not at all.
NOTE: Each correct match is worth one point.
Solution:

Does this meet the goal?
- A. Yes
- B. Not Mastered
Answer: A
NEW QUESTION 11
You create five bots by using Microsoft Bot Framework Composer.
You need to make a single bot available to users that combines the bots. The solution must support dynamic routing to the bots based on user input.
Which three actions should you perform? Each correct answer presents part of the solution.
NOTE: Each correct selection is worth one point.
- A. Create an Orchestrator model.
- B. Change the Recognizer/Dispatch type.
- C. Create a composer extension.
- D. Enable WebSockets.
- E. Create a custom recognizer JSON file.
- F. Install the Orchestrator package.
Answer: ABF
NEW QUESTION 12
You have the following C# method.
You need to deploy an Azure resource to the East US Azure region. The resource will be used to perform sentiment analysis.
How should you call the method?
- A. create_resource("res1", "ContentModerator", "S0", "eastus")
- B. create_resource("res1", "TextAnalytics", "S0", "eastus")
- C. create_resource("res1", "ContentModerator", "Standard", "East US")
- D. create_resource("res1", "TextAnalytics", "Standard", "East US")
Answer: B
Explanation:
To perform sentiment analysis, we specify TextAnalytics, not ContentModerator. Possible SKU names include: 'F0','F1','S0','S1','S2','S3','S4','S5','S6','S7','S8'
Possible location names include: westus, eastus
Reference:
https://docs.microsoft.com/en-us/powershell/module/az.cognitiveservices/new- azcognitiveservicesaccount
NEW QUESTION 13
You have an Azure Cognitive Search solution and an enrichment pipeline that performs Sentiment Analysis on social media posts.
You need to define a knowledge store that will include the social media posts and the Sentiment Analysis results.
Which two fields should you include in the definition? Each correct answer presents part of the solution.
NOTE: Each correct selection is worth one point.
- A. storageContainer
- B. tables
- C. storaeeConnectionString
- D. files
- E. objects
Answer: DE
NEW QUESTION 14
You are developing an application that will use Azure Cognitive Search for internal documents.
You need to implement document-level filtering for Azure Cognitive Search.
Which three actions should you include in the solution? Each correct answer presents part of the solution.
NOTE: Each correct selection is worth one point.
- A. Send Azure AD access tokens with the search request.
- B. Retrieve all the groups.
- C. Retrieve the group memberships of the user.
- D. Add allowed groups to each index entry.
- E. Create one index per group.
- F. Supply the groups as a filter for the search requests.
Answer: CDF
Explanation:
Your documents must include a field specifying which groups have access. This information becomes the filter criteria against which documents are selected or rejected from the result set returned to the issuer.
D: A query request targets the documents collection of a single index on a search service. CF: In order to trim documents based on group_ids access, you should issue a search
query with a group_ids/any(g:search.in(g, 'group_id1, group_id2,...')) filter, where
'group_id1, group_id2,...' are the groups to which the search request issuer belongs.
Reference:
https://docs.microsoft.com/en-us/azure/search/search-security-trimming-for-azure-search
NEW QUESTION 15
DRAG DROP
You train a Custom Vision model used in a mobile app.
You receive 1,000 new images that do not have any associated data.
You need to use the images to retrain the model. The solution must minimize how long it takes to retrain the model.
Which three actions should you perform in the Custom Vision portal? To answer, move the appropriate actions from the list of actions to the answer area and arrange them in the correct order.
Solution:
1) upload all the images 2.) Get suggested tags 3.) Review the suggestions and confirm the tags
Does this meet the goal?
- A. Yes
- B. Not Mastered
Answer: A
NEW QUESTION 16
......
Thanks for reading the newest AI-102 exam dumps! We recommend you to try the PREMIUM Allfreedumps.com AI-102 dumps in VCE and PDF here: https://www.allfreedumps.com/AI-102-dumps.html (213 Q&As Dumps)
