Practice Free AI-102 Exam Online Questions
What is the primary purpose of a data warehouse?
- A . to provide storage for transactional line-of-business (LOB) applications
- B . to provide transformation services between source and target data stores
- C . to provide read only storage of relational and non relational historical data
- D . to provide answers to complex queries that rely on data from multiple sources
HOTSPOT
You have a bot that was built by using the Microsoft Bot Framework composer as shown in the following exhibit.
Use the drop-down menus 10 select the answer choice that completes each statement based on the information presented in the graphic. NOTE: Each correct selection is worth one point.

DRAG DROP
You have a web app that uses Azure Cognitive Search.
When reviewing billing for the app, you discover much higher than expected charges. You suspect that the query key is compromised.
You need to prevent unauthorized access to the search endpoint and ensure that users only have read only access to the documents collection. The solution must minimize app downtime.
Which three actions should you perform in sequence? To answer, move the appropriate actions from the list of actions to the answer area and arrange them in the correct order.

Explanation:
Reference: https://docs.microsoft.com/en-us/azure/search/search-security-api-keys
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 create a new model, and then upload the new images and labels.
Does this meet the goal?
- A . Yes
- B . No
B
Explanation:
The model needs to be extended and retrained.
HOTSPOT
You are building an app that will translate speech by using the Azure Al Language service.
You need configure the app to translate the speech from English to Italian.
How should you complete the code? To answer, select the appropriate options in the answer area. NOTE: Each correct selection is worth one point.

HOTSPOT
You have an Azure subscription that has the following configurations:
• Subscription ID: 8d3591aa-96b8-4737-ad09-OOf9b1ed35ad
• Tenant ID: 3edfe572-cbS4-3ced-ae12-c5c177f39a12
You plan to create a resource that will perform sentiment analysis and optical character recognition
(OCR).
You need to use an HTTP request to create the resource in the subscription. The solution must use a single key and endpoint.
How should you complete the request? To answer, select the appropriate options in the answer area. NOTE: Each correct selection is worth one point.

HOTSPOT
You have an Azure subscription that contains an Azure Al Video Indexer account.
You need to add a custom brand and logo to the indexer and configure an exclusion for the custom brand.
How should you complete the REST API call? To answer, select the appropriate options in the answer area. NOTE: Each correct selection is worth one point.

HOTSPOT
You have an Azure subscription that contains an Azure Al Video Indexer account.
You need to add a custom brand and logo to the indexer and configure an exclusion for the custom brand.
How should you complete the REST API call? To answer, select the appropriate options in the answer area. NOTE: Each correct selection is worth one point.

HOTSPOT
You are building an app that will answer customer calls about the status of an order. The app will query a database for the order details and provide the customers with a spoken response.
You need to identify which Azure Al service APIs to use. The solution must minimize development effort.
Which object should you use for each requirement? To answer, select the appropriate options in the answer area. NOTE: Each correct selection is worth one point.

HOTSPOT
You are building a chatbot by using the Microsoft Bot Framework SDK.
You use an object named UserProfile to store user profile information and an object named ConversationData to store information related to a conversation.
You create the following state accessors to store both objects in state.
var userStateAccessors = _userState.CreateProperty<UserProfile>(nameof(UserProfile));
var conversationStateAccessors =
_conversationState.CreateProperty<ConversationData>(nameof(ConversationData));
The state storage mechanism is set to Memory Storage.
For each of the following statements, select Yes if the statement is true. Otherwise, select No. NOTE: Each correct selection is worth one point.

Explanation:
Box 1: Yes
You create property accessors using the CreateProperty method that provides a handle to the BotState object. Each state property accessor allows you to get or set the value of the associated state property.
Box 2: Yes
Box 3: No
Before you exit the turn handler, you use the state management objects’ SaveChangesAsync() method to write all state changes back to storage.
Reference: https://docs.microsoft.com/en-us/azure/bot-service/bot-builder-howto-v4-state