Practice Free AI-102 Exam Online Questions
HOTSPOT
You plan to deploy an Azure OpenAI resource by using an Azure Resource Manager (ARM) template.
You need to ensure that the resource can respond to 600 requests per minute.
How should you complete the template? To answer, select the appropriate options in the answer area. NOTE: Each correct selection is worth one point.


You have an Azure Cognitive Search solution and a collection of handwritten letters stored as JPEG files.
You plan to index the collection. The solution must ensure that queries can be performed on the contents of the letters.
You need to create an indexer that has a skillset.
Which skill should you include?
- A . key phrase extraction
- B . optical character recognition (OCR)
- C . document extraction
- D . image analysis
Topic 3, Misc. Questions
DRAG DROP
You have 100 chatbots that each has its own Language Understanding model.
Frequently, you must add the same phrases to each model.
You need to programmatically update the Language Understanding models to include the new phrases.
How should you complete the code? To answer, drag the appropriate values to the correct targets. Each value may be used once, more than once, or not at all. You may need to drag the split bar between panes or scroll to view content. NOTE: Each correct selection is worth one point.

Explanation:
Box 1: AddPhraseListAsync
Example: Add phraselist feature
var phraselistId = await client.Features.AddPhraseListAsync(appId, versionId, new
PhraselistCreateObject
{
EnabledForAllModels = false,
IsExchangeable = true,
Name = "QuantityPhraselist",
Phrases = "few,more,extra"
});
Box 2: PhraselistCreateObject
Reference: https://docs.microsoft.com/en-us/azure/cognitive-services/luis/client-libraries-rest-api
You are developing a text processing solution.
You have the following function.

You call the function and use the following string as the second argument Our tour of London included a visit to Buckingham Palace.
What will be the output of the function?
- A . Our tour of London included a visit to Buckingham Palace
- B . London and Tour only
- C . Tour and visit only
- D . London and Buckingham Palace only
You are developing a solution to generate a word cloud based on the reviews of a company’s products.
Which Text Analytics REST API endpoint should you use?
- A . keyPhrases
- B . sentiment
- C . languages
- D . entities/recognition/general
A
Explanation:
Reference: https://docs.microsoft.com/en-us/azure/cognitive-services/text-analytics/overview
You have the following files:
• File1.pdf
• File2.jpg
• File3.docx
• File4.webp
• File5.png
Which files can you analyze by using Azure Al Content Understanding?
- A . File1.pdf and File3.docx only
- B . File1.pdf. File2.jpg, and FileS.png only
- C . File1.pdf, File2.jpg, and File3.docx only
- D . File1.pdf, File2.jpg. File3.docx and File5.png only
- E . Filel.pdf. File2.jpg. File3.docx File4.webp, and File5.png
You have an Azure subscription that contains an Azure Al Document Intelligence resource named All.
All contains the following models:
• Model 1: A custom model that extracts purchase order information
• Model2: A custom model that extracts sales order information
You plan to create a composed model named Model3 that will contain Model! and Model2.
You need to ensure that when a document is analyzed by Model3, the correct model is used to extract the order information.
What should you do?
- A . Assign a confidence score to each sub model in Model3.
- B . Label the fields in Model 1 and Model2.
- C . Provide the Document Intelligence endpoint name, key, and location.
- D . Train Model3 by using sample purchase order and sales order documents.
You have a SQL query that combines customer data and order data. The query includes calculated columns. You need to create a database object that would allow other users to rerun the same SOL query.
What should you create?
- A . an Index
- B . a view
- C . a scalar function
- D . a table
You have a SQL query that combines customer data and order data. The query includes calculated columns. You need to create a database object that would allow other users to rerun the same SOL query.
What should you create?
- A . an Index
- B . a view
- C . a scalar function
- D . a table
You have a Video Indexer service that is used to provide a search interface over company videos on your company’s website.
You need to be able to search for videos based on who is present in the video.
What should you do?
- A . Create a person model and associate the model to the videos.
- B . Create person objects and provide face images for each object.
- C . Invite the entire staff of the company to Video Indexer.
- D . Edit the faces in the videos.
- E . Upload names to a language model.
A
Explanation:
Video Indexer supports multiple Person models per account. Once a model is created, you can use it by providing the model ID of a specific Person model when uploading/indexing or reindexing a video. Training a new face for a video updates the specific custom model that the video was associated with.
Note: Video Indexer supports face detection and celebrity recognition for video content. The celebrity recognition feature covers about one million faces based on commonly requested data source such as IMDB, Wikipedia, and top LinkedIn influencers. Faces that aren’t recognized by the celebrity recognition feature are detected but left unnamed. Once you label a face with a name, the face and name get added to your account’s Person model. Video Indexer will then recognize this face in your future videos and past videos.
Reference: https://docs.microsoft.com/en-us/azure/media-services/video-indexer/customize-person-model-with-api
