ExamQuestions.com

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

Microsoft

Microsoft Azure Exam Certification (AI-102)

146 / 166

Question 146:

You are tasked to identify the faces in a large set of images. You decide to use Computer Vision Image Analysis in Azure to detect the faces. Review the code snippet given below and complete it by choosing the correct values. (select two answers) 
<pre class="brush:java;">Console.WriteLine("Faces:");
foreach (var face in results.Faces)
{
Console.WriteLine($"A {face…………………….} of age {face.…………………….} at location {face.FaceRectangle.Left}, "+$"{face.FaceRectangle.Left}, {face.FaceRectangle.Top + face.FaceRectangle.Width}, " +$"{face.FaceRectangle.Top + face.FaceRectangle.Height}");
}
Console.WriteLine();
</pre> 

Answer options:

A.Confidence
B.Name
C.Gender
D.Score
E.Age