Exam AI-103 Topic 1 Question 153 Discussion

Actual exam question for Microsoft's AI-103 exam
Question #: 153
Topic #: 1
Hotspot Question
You develop a test method to verify the results retrieved from a call to the Azure Vision in Foundry Tools API. The call is used to analyze the existence of company logos in images. The call returns a collection of brands named brands.
You have the following code segment:

For each of the following statements, select Yes if the statement is true. Otherwise, select No.
NOTE: Each correct selection is worth one point.

Suggested Answer:


Explanation:
Box 1: Yes
The code segment correctly filters for and displays the name (and coordinates) of each detected brand only if the model's confidence score is 75 percent or higher.The expression if brand.confidence >= 0.75 guarantees that only brands meeting or exceeding this threshold are printed.
Box 2: Yes
The code segment will display the coordinates. Specifically, it prints the x and y values of the rectangle's top-left corner alongside its width (w) and height (h) for any detected brand with a confidence score equal to or greater than 0.75 (75%).
The provided code uses the properties directly to extract the bounding box:
brand.rectangle.x and brand.rectangle.y: The coordinates of the top-left corner of the bounding box.
brand.rectangle.w and brand.rectangle.h: The width and height of the bounding box.
Box 3: No
See Box 2 above.
Reference:
https://learn.microsoft.com/en-us/azure/ai-services/computer-vision/concept-brand-detection

by Abner at Aug 14, 2026, 09:01 PM

Comments

Chosen Answer:
This is a voting comment (?) , you can switch to a simple comment.
Switch to a voting comment New
Nick name: Submit Cancel
A voting comment increases the vote count for the chosen answer by one.

Upvoting a comment with a selected answer will also increase the vote count towards that answer by one. So if you see a comment that you already agree with, you can upvote it instead of posting a new comment.

0
0
0
10