Topic 3: Misc. Questions
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 have an Azure Cognitive Search service.
During the past 12 months, query volume steadily increased.
You discover that some search query requests to the Cognitive Search service are being
throttled.
You need to reduce the likelihood that search query requests are throttled.
Solution: You migrate to a Cognitive Search service that uses a higher tier.
Does this meet the goal?
A.
Yes
B.
No
Yes
Explanation: A simple fix to most throttling issues is to throw more resources at the search
service (typically replicas for query-based throttling, or partitions for indexing-based
throttling). However, increasing replicas or partitions adds cost, which is why it is important
to know the reason why throttling is occurring at all.
Reference:
https://docs.microsoft.com/en-us/azure/search/search-performance-analysis
You are building content for a video training solution.
You need to create narration to accompany the video content. The solution must use
Custom Neural Voice.
What should you use to create a custom neural voice, and which service should you use to
generate the narration? To answer, select the appropriate options in the answer area.
NOTE: Each correct answer is worth one point.
You are developing a new sales system that will process the video and text from a publicfacing
website.
You plan to monitor the sales system to ensure that it provides equitable results regardless
of the user's location or background.
Which two responsible AI principles provide guidance to meet the monitoring requirements? Each correct answer presents part of the solution. (Choose two.)
NOTE: Each correct selection is worth one point.
A.
transparency
B.
fairness
C.
inclusiveness
D.
reliability and safety
E.
privacy and security
fairness
inclusiveness
Explanation:
https://docs.microsoft.com/en-us/learn/modules/get-started-ai-fundamentals/8-understandresponsible-
ai
You have a Custom Vision resource named acvdev in a development environment.
You have a Custom Vision resource named acvprod in a production environment.
In acvdev, you build an object detection model named obj1 in a project named proj1.
You need to move obj1 to acvprod.
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.
You build a bot by using the Microsoft Bot Framework SDK.
You need to test the bot interactively on a local machine.
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 cor'ect order.
NOTE: More than one order of answer choices is correct. You will receive credit for any of
the correct orders you select.
You have a Computer Vision resource named contoso1 that is hosted in the West US
Azure region.
You need to use contoso1 to make a different size of a product photo by using the smart
cropping feature.
How should you complete the API URL? To answer, select the appropriate options in the
answer area.
NOTE: Each correct selection is worth one point.
Explanation:
westus.api.cognitive.microsoft.com
generateThumbnail
https://docs.microsoft.com/en-us/rest/api/computervision/3.1/generate-thumbnail/generatethumbnail#
examples
POST
https://westus.api.cognitive.microsoft.com/vision/v3.1/generateThumbnail?width=500&heig
ht=500&smartCropping=True
Ocp-Apim-Subscription-Key: {API key}
You are developing a method that uses the Computer Vision client library. The method will
perform optical character recognition (OCR) in images. The method has the following code.
During testing, you discover that the call to the GetReadResultAsync method occurs before the read operation is complete.
You need to prevent the GetReadResultAsync method from proceeding until the read
operation is complete.
Which two actions should you perform? Each correct answer presents part of the solution.
(Choose two.)
NOTE: Each correct selection is worth one point.
A.
Remove the Guid.Parse(operationId) parameter.
B.
Add code to verify the results.Status value.
C.
Add code to verify the status of the txtHeaders.Status value.
D.
Wrap the call to GetReadResultAsync within a loop that contains a delay.
Add code to verify the results.Status value.
Wrap the call to GetReadResultAsync within a loop that contains a delay.
Explanation:
Example code :
do
{
results = await client.GetReadResultAsync(Guid.Parse(operationId));
}
while ((results.Status == OperationStatusCodes.Running ||
results.Status == OperationStatusCodes.NotStarted));
Reference:
https://github.com/Azure-Samples/cognitive-services-quickstartcode/
blob/master/dotnet/ComputerVision/ComputerVisionQuickstart.cs
What ate two uses of data visualization? Each correct answer presents a complete
solution. NOTE: Each correct selection is worth one point.
A.
Communicate the significance of data.
B.
Represent trends and patterns over time.
C.
Implement machine learning to predict future values.
D.
Enforce business logic across reports
Communicate the significance of data.
Represent trends and patterns over time.
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 have an Azure Cognitive Search service.
During the past 12 months, query volume steadily increased.
You discover that some search query requests to the Cognitive Search service are being
throttled.
You need to reduce the likelihood that search query requests are throttled.
Solution: You add indexes.
Does this meet the goal?
A.
Yes
B.
No
No
Explanation:
Instead, you could migrate to a Cognitive Search service that uses a higher tier.
Note: A simple fix to most throttling issues is to throw more resources at the search service
(typically replicas for query-based throttling, or partitions for indexing-based throttling).
However, increasing replicas or partitions adds cost, which is why it is important to know the reason why throttling is occurring at all.
Reference:
https://docs.microsoft.com/en-us/azure/search/search-performance-analysis
You have receipts that are accessible from a URL.
You need to extract data from the receipts by using Form Recognizer and the SDK. The
solution must use a prebuilt model.
Which client and method should you use?
A.
the FormRecognizerClienc client and the ScarcRecognizeConcencFromUri method
B.
the FormTrainingClienc client and the ScarcRecognizeContentFromUri method
C.
the FormRecognizerClienc client and the ScarcRecognizeReceipcsFromUri method
D.
the FormTrainingClient client and the ScarcRecognizeReceipcsFromUri method
the FormTrainingClient client and the ScarcRecognizeReceipcsFromUri method
Explanation:
To analyze receipts from a URL, use the StartRecognizeReceiptsFromUri method
Example code:
private static async Task AnalyzeReceipt(
FormRecognizerClient recognizerClient, string receiptUri)
{
RecognizedFormCollection receipts = await
recognizerClient.StartRecognizeReceiptsFromUri(new
Uri(receiptUrl)).WaitForCompletionAsync();
Reference:
https://docs.microsoft.com/en-us/azure/applied-ai-services/formrecognizer/
quickstarts/client-library
Page 5 out of 26 Pages |
Previous |