ExamQuestions.com

Register
Login
Microsoft Azure Exam Certification (AI-102) Exam Questions

Microsoft

Microsoft Azure Exam Certification (AI-102)

90 / 166

Question 90:

You plan to use READ API in Azure in order to read printed and handwritten text from a given set of images accessible through a url. You have installed the client libraries and authenticated the computer vision client.You use the ReadAsync method to get the operation id. You then query the service to get read results. 
Given the scenario, review the code below and complete it choosing the most appropriate option 
<pre class="brush:java;">ReadOperationResult results;
Console.WriteLine(""Read File From the Url");
Console.WriteLine();
do
{
results = await client…………………………………(Guid.Parse(operationId));
}
</pre> 

Answer options:

A.AnalyzeImageByDomainInStream
B.AnalyzeImageByDomainInStreamAsync
C.GetReadResultAsync
D.ReadAsync