Courseiva

CCNA Describe features of computer vision workloads on Azure Questions

75 of 199 questions · Page 2/3 · Describe features of computer vision workloads on Azure · Answers revealed

76
MCQeasy

What is 'object detection' in computer vision and how does it differ from image classification?

A.Object detection and image classification produce the same output — both label the entire image
B.Object detection locates each object with a bounding box and class label; classification labels the whole image
C.Image classification processes images faster than object detection because it is simpler
D.Object detection only works on images with a single object; classification handles multiple objects
AnswerB

Object detection outputs a set of bounding-box coordinates around each recognized object along with a class label and often a confidence score for every instance in the image. Image classification, by contrast, produces a single label or probability distribution over class labels for the entire image without any spatial localization. Detection gives both location and identity, enabling tasks like counting or tracking objects, while classification simply categorizes the image's overall content.

Why this answer

Object detection goes beyond image classification by not only identifying the class of objects present but also localizing each one with a bounding box. In contrast, image classification assigns a single label to the entire image, regardless of how many objects are present. This distinction is fundamental in computer vision workloads on Azure, where Custom Vision and Computer Vision API offer both capabilities.

Exam trap

The trap here is that candidates may confuse object detection with image classification because both involve labeling objects, but the key differentiator is localization—object detection provides spatial coordinates (bounding boxes), while classification does not.

How to eliminate wrong answers

Option A is wrong because object detection and image classification do not produce the same output; classification labels the entire image, while detection outputs bounding boxes and labels for each object. Option C is wrong because while image classification is generally simpler and can be faster, the statement is not a defining difference—object detection is not inherently slower in all implementations, and the question asks for the functional difference, not performance. Option D is wrong because object detection is specifically designed to handle multiple objects in a single image, not just a single object; classification can also handle multiple objects but only produces one label for the whole scene.

77
MCQmedium

What is 'model export' in Azure Custom Vision and what formats are supported?

A.Exporting model training logs and metrics to Excel for analysis
B.Exporting trained models as ONNX, TensorFlow, CoreML, or Docker for offline/edge deployment
C.Exporting the training data to another Azure service for fine-tuning
D.Exporting a Custom Vision project as a YAML configuration file for source control
AnswerB

Exporting trained models as ONNX, TensorFlow, CoreML, or Docker is model export because it packages the learned weights and inference graph into formats that run on edge/offline devices — ONNX is cross-platform, TensorFlow targets Android/Linux, CoreML targets Apple devices, and Docker containers expose the model as a local REST API. This allows inference without cloud calls, meeting latency, privacy, or connectivity constraints.

Why this answer

Model export in Azure Custom Vision allows you to export a trained image classification or object detection model in formats like ONNX, TensorFlow, CoreML, or Docker container images. This enables the model to run offline on edge devices or local servers without requiring a continuous connection to the Azure cloud, which is critical for low-latency or disconnected scenarios.

Exam trap

The trap here is that candidates confuse 'model export' with exporting training data or logs, because Azure Custom Vision does offer data export options elsewhere, but the specific term 'model export' refers exclusively to the trained model artifact for offline deployment.

How to eliminate wrong answers

Option A is wrong because model export does not involve exporting training logs or metrics to Excel; those are accessed via training APIs or the Azure portal for analysis, not as an export feature. Option C is wrong because exporting the training data to another Azure service is not a built-in Custom Vision feature; data can be exported manually, but the 'model export' feature specifically exports the trained model artifact, not the dataset. Option D is wrong because Custom Vision does not export projects as YAML configuration files; project configuration is managed through the portal or SDK, and YAML exports are not a supported format for model deployment.

78
MCQeasy

What is the primary use case for Azure AI Document Intelligence's layout model?

A.Generating visual layouts for new document templates
B.Extracting the structural layout of documents including tables, text blocks, and positions
C.Converting documents between different file formats (PDF to DOCX)
D.Checking documents for grammatical and spelling errors
AnswerB

The layout model in Azure AI Document Intelligence is specifically designed to analyze the physical structure of a document, extracting paragraphs, headings, tables, and figures along with their bounding-box coordinates and reading order. It returns structured JSON that separates text content from spatial relationships, which enables downstream tasks like table extraction and document analysis. This capability is the core function of the layout model—it interprets how content is arranged on a page rather than merely recognizing the characters present.

Why this answer

Azure AI Document Intelligence's layout model is designed to extract the structural layout of documents, including tables, text blocks, and their spatial positions. This enables downstream processing like OCR, form understanding, and document analysis by preserving the original reading order and layout hierarchy.

Exam trap

The trap here is that candidates confuse the layout model's structural extraction with format conversion or content generation, leading them to pick options like A or C instead of recognizing its true purpose of spatial layout analysis.

How to eliminate wrong answers

Option A is wrong because generating visual layouts for new document templates is not a capability of the layout model; it is an extraction tool, not a design tool. Option C is wrong because converting documents between file formats (e.g., PDF to DOCX) is not a function of the layout model; format conversion is handled by separate document processing libraries or services. Option D is wrong because checking for grammatical and spelling errors falls under natural language processing (NLP) services like Azure AI Language, not the layout model, which focuses on spatial and structural extraction.

79
MCQmedium

A quality control team uses computer vision to inspect manufactured parts. They need to detect whether a part has any defects and also identify the type of defect (e.g., scratch, crack, dent) from an image. Which Azure Computer Vision capability should they use?

A.A: Image classification
B.B: Object detection
C.C: Semantic segmentation
D.D: Optical character recognition (OCR)
AnswerB

Object detection is correct because it jointly performs localization and classification by drawing bounding boxes around each defect and labeling it (e.g., 'scratch' or 'dent'). This enables quality teams to count multiple defect instances, identify their types, and record their exact coordinates for automated downstream actions. It is the standard computer vision task used in manufacturing defect inspection, including with Azure Custom Vision's object detection model.

Why this answer

Object detection is the correct capability because it not only identifies the presence of defects in an image but also localizes each defect with a bounding box and classifies it into specific types (e.g., scratch, crack, dent). This meets both requirements: detecting whether a part has defects and identifying the type of each defect.

Exam trap

The trap here is that candidates often confuse image classification with object detection, assuming that classifying the entire image as 'defective' is sufficient, but the question explicitly requires identifying the type of each defect, which necessitates localization and multi-class output.

How to eliminate wrong answers

Option A is wrong because image classification assigns a single label to the entire image (e.g., 'defective' or 'non-defective'), but it cannot identify multiple defect types or their locations within the same image. Option C is wrong because semantic segmentation assigns a class label to every pixel, which is overkill for defect type identification and does not inherently separate individual defect instances or provide bounding boxes. Option D is wrong because optical character recognition (OCR) extracts text from images, which is irrelevant to detecting physical defects like scratches, cracks, or dents.

80
MCQeasy

A nature conservation organization wants to create an app that automatically identifies different species of birds from photos uploaded by birdwatchers. They have thousands of labeled images of bird species. Which Azure service should they use to train a custom model?

A.Azure Computer Vision Image Analysis
B.Azure Custom Vision
C.Azure Face API
D.Azure Form Recognizer
AnswerB

Azure Custom Vision is a dedicated, low-code cognitive service for building your own image classification or object detection models. You upload labeled photos of each bird species, train an iteration, and then call the exported model endpoint from the app to classify new sightings. Because it is purpose-built for custom visual categories, it fits identifying many specific bird species far better than any prebuilt API.

Why this answer

Azure Custom Vision is the correct choice because it allows you to train a custom image classification model using your own labeled dataset of bird species. Unlike the pre-built Computer Vision Image Analysis service, Custom Vision specializes in fine-grained classification tasks where you need to distinguish between dozens or hundreds of visually similar categories, such as different bird species.

Exam trap

The trap here is that candidates confuse the general-purpose Computer Vision Image Analysis (which cannot be retrained) with Custom Vision (which is specifically designed for custom classification), leading them to pick option A.

Why the other options are wrong

A

Azure Computer Vision Image Analysis provides pre-built image analysis capabilities (e.g., object detection, tags) but does not support training custom models with user-provided labeled images for specific bird species.

C

Azure Face API is specialized for detecting, recognizing, and analyzing human faces, not bird species. It cannot be trained to identify different bird species from photos.

D

Azure Form Recognizer is designed for extracting text and structure from documents (e.g., invoices, forms), not for classifying bird species from photos.

81
MCQeasy

A construction company uses drone images to survey construction sites. They need an automated system that can identify specific types of heavy equipment (e.g., bulldozers, cranes, excavators) in an image and also draw precise pixel-level outlines around each equipment type. Which Azure Computer Vision capability should they use?

A.Object detection
B.Semantic segmentation
C.Image classification
D.Optical Character Recognition (OCR)
AnswerB

Semantic segmentation is a dense prediction task that assigns a class label to every pixel in the image, producing a pixel-accurate mask for each category such as soil, concrete, vegetation, or heavy equipment. This allows the system to outline irregular object boundaries precisely, even when equipment overlaps or blends into the background. Because it captures exact contours, it enables area measurements and change detection from drone imagery, which bounding-box methods cannot provide.

Why this answer

Semantic segmentation is the correct capability because it assigns a class label (e.g., bulldozer, crane, excavator) to every pixel in the image, producing precise pixel-level outlines around each equipment type. Object detection only provides bounding boxes, not pixel-level masks, while image classification labels the entire image without localization. OCR is irrelevant as it extracts text, not equipment shapes.

Exam trap

The trap here is that candidates confuse object detection (bounding boxes) with semantic segmentation (pixel-level masks), because both localize objects, but only segmentation provides the precise outlines required for detailed spatial analysis.

Why the other options are wrong

A

Object detection provides bounding boxes around objects, not pixel-level outlines. The question specifically requires precise pixel-level segmentation, which object detection cannot deliver.

C

Image classification assigns a single label to the entire image, but the question requires identifying multiple equipment types and drawing pixel-level outlines around each, which is beyond classification's capabilities.

D

OCR is designed to extract text from images, not to identify or outline heavy equipment in drone images.

82
MCQmedium

A warehouse deploys cameras to automatically process incoming packages. The system must read the serial numbers printed on each package label to update inventory records. The labels often have varied fonts and sizes, and may be slightly rotated. Which Azure Computer Vision capability should be used to extract the serial numbers?

A.Object detection
B.Optical Character Recognition (OCR)
C.Image classification
D.Facial recognition
AnswerB

Optical Character Recognition (OCR) is the correct choice because Azure Computer Vision's Read API uses deep learning models to extract printed and handwritten text from images, returning each word or line as a string alongside its bounding box and confidence score. In a warehouse scenario, OCR can accurately capture serial numbers from labels on incoming boxes, even when the label is rotated or partially obscured. This capability directly solves the business need, whereas the other computer vision tasks only produce object-level or face-level metadata and never decode alphanumeric content.

Why this answer

Optical Character Recognition (OCR) is the correct Azure Computer Vision capability because it is specifically designed to extract printed or handwritten text from images, including serial numbers with varied fonts, sizes, and rotations. Azure's OCR API (part of Computer Vision) can handle skewed or rotated text by automatically detecting and correcting orientation before recognizing characters, making it ideal for warehouse labels that are not perfectly aligned.

Exam trap

The trap here is that candidates may confuse object detection (which can 'see' labels) with OCR, not realizing that object detection only locates objects without reading any text content on them.

Why the other options are wrong

A

Object detection identifies and locates objects within an image but does not extract text content. The requirement is to read serial numbers, which requires text extraction, not object localization.

C

Image classification assigns a single label to an entire image (e.g., 'package' or 'label'), but cannot extract specific text like serial numbers from varied fonts and rotations.

D

Facial recognition is designed to identify or verify individuals by analyzing facial features, not to extract text from images. The question requires reading serial numbers, which is a text extraction task, not a face-related task.

83
MCQeasy

A historical society has scanned hundreds of books printed in the 19th century. They want to convert the scanned images into searchable, editable text. Which Azure Computer Vision capability should they use?

A.Optical Character Recognition (OCR)
B.Object detection
C.Image classification
D.Facial detection
AnswerA

Optical Character Recognition (OCR) is the correct service because it uses computer vision models to detect printed characters on scanned book pages and convert them into machine-readable, searchable, and editable text. Azure's Read API and Document Intelligence rely on OCR to preserve word order, line breaks, and bounding boxes, making the digitized books fully indexable.

Why this answer

Optical Character Recognition (OCR) is the Azure Computer Vision capability designed to extract printed or handwritten text from images and convert it into machine-readable, searchable, and editable text. For the historical society's scanned books, OCR can detect characters and words from the 19th-century prints and output them as digital text, enabling full-text search and editing.

Exam trap

The trap here is that candidates may confuse OCR with general image analysis capabilities like object detection or classification, not realizing OCR is the specific service for text extraction from images.

How to eliminate wrong answers

Option B (Object detection) is wrong because it identifies and locates objects (e.g., cars, animals) within an image, not text characters or words. Option C (Image classification) is wrong because it assigns a single label or category to an entire image (e.g., 'book cover'), rather than extracting specific text content. Option D (Facial detection) is wrong because it detects human faces and their attributes (e.g., age, emotion), which is irrelevant to converting printed text into editable format.

84
MCQmedium

A retail warehouse uses a camera system to locate and count boxes on shelves. The system needs to output the exact positions of each box by drawing a rectangular frame around it in the image. Which Azure Computer Vision capability should they use?

A.Object detection
B.Image classification
C.Semantic segmentation
D.Optical Character Recognition (OCR)
AnswerA

Object detection is a computer vision technique that identifies instances of defined classes within an image and localizes each instance with a bounding box. For a warehouse camera that must 'locate and frame' each box, object detection outputs the coordinates and dimensions of every detected box, enabling downstream tasks like robotic picking or inventory tracking. Unlike classification, it provides spatial localization rather than a single image-level label.

Why this answer

Object detection is the correct capability because it identifies and localizes multiple objects within an image by drawing bounding boxes around each detected instance. In this scenario, the system needs to locate and count individual boxes on shelves, which requires both classification (what is a box) and localization (where each box is), exactly what object detection provides.

Exam trap

The trap here is that candidates confuse semantic segmentation with object detection because both involve 'segments' or 'regions,' but segmentation does not separate individual instances of the same object type, making it unsuitable for counting distinct boxes.

Why the other options are wrong

B

Image classification assigns a single label to the entire image, but the question requires locating and drawing bounding boxes around individual boxes, which is object detection's function.

D

OCR extracts text from images, but the question asks for locating and drawing rectangular frames around boxes, which requires detecting objects (boxes) and their positions, not reading text.

85
MCQeasy

What does 'confidence score' mean in Azure AI Custom Vision object detection results?

A.The percentage of training images that contained this type of object
B.The model's certainty about a detection, used to set thresholds balancing false positives vs misses
C.The accuracy of the model measured on the test dataset during training
D.A quality rating assigned by human reviewers to confirm the detection is correct
AnswerB

A confidence score is the model's probabilistic estimate, per detection, that the bounding box actually contains the target object. Setting a threshold on this score creates an explicit precision/recall tradeoff: a higher threshold keeps only high-certainty detections (fewer false positives but more missed true objects), while a lower threshold catches more objects at the cost of more false positives. This score is computed at inference time for each individual detection, not as an aggregate training metric.

Why this answer

In Azure AI Custom Vision, the confidence score is a numerical value (0 to 1) that represents the model's certainty that a detected object is correctly identified and localized. This score allows you to set a threshold to filter out low-certainty detections, balancing false positives (detections with low confidence) against misses (true objects that fall below the threshold). It is not a measure of training data composition, test accuracy, or human review.

Exam trap

The trap here is that candidates confuse the confidence score with overall model accuracy or training data statistics, when in fact it is a per-prediction certainty value used to filter results.

How to eliminate wrong answers

Option A is wrong because the confidence score is not the percentage of training images containing that object; that would be a class distribution metric, not a per-detection certainty. Option C is wrong because the confidence score is a per-prediction value, not the overall model accuracy measured on a test dataset; test accuracy is a separate evaluation metric. Option D is wrong because the confidence score is computed by the model algorithmically, not assigned by human reviewers; human review is a separate validation step.

86
MCQmedium

What is 'visual question answering' (VQA) in multi-modal AI?

A.A quiz application that shows images and asks users multiple-choice questions
B.AI that answers natural language questions about the content of a specific image
C.An interview format where candidates answer questions while being recorded on video
D.Generating images in response to visual prompts provided by the user
AnswerB

VQA (Visual Question Answering) is a multimodal AI task that combines computer vision to extract objects, attributes, and spatial relationships from an image with natural language processing to interpret the question and generate a coherent answer, such as identifying a color, counting objects, or reasoning about a scene.

Why this answer

Visual Question Answering (VQA) is a multi-modal AI capability that combines computer vision and natural language processing. The system takes an image as input along with a natural language question about that image, and outputs a relevant answer. This is correct because VQA specifically requires the AI to understand both visual content and textual queries to generate a response, which is exactly what option B describes.

Exam trap

The trap here is that candidates confuse 'visual question answering' with 'image captioning' or 'image generation,' but VQA specifically requires answering a natural language question about an image, not describing it generically or creating new images.

How to eliminate wrong answers

Option A is wrong because it describes a quiz application where users answer questions about images, which is a human-driven activity, not an AI system that itself answers questions about images. Option C is wrong because it describes a human interview process with video recording, which has no relation to AI answering questions about image content. Option D is wrong because it describes image generation from prompts (text-to-image or image-to-image), which is the reverse direction of VQA—VQA takes an image and a question to produce an answer, not generate an image.

87
MCQeasy

A social media platform wants to automatically generate alternative text descriptions for images posted by users to improve accessibility for visually impaired users. Which Azure Computer Vision capability should be used?

A.Optical Character Recognition (OCR)
B.Image Captioning
C.Object Detection
D.Face Detection
AnswerB

Image Captioning is a multimodal AI task that combines computer vision and natural language generation to produce a grammatical, human-like description of an image's contents. It typically uses an encoder-decoder architecture, such as a CNN to extract visual features and a transformer or RNN to decode those features into a coherent caption. This makes it specifically designed to create alt-text that conveys the scene, actions, and relationships for accessibility.

Why this answer

Image Captioning is the correct capability because it generates human-readable descriptions of image content, which directly meets the requirement to produce alternative text for accessibility. Unlike other options, it synthesizes a complete sentence describing the scene, objects, and actions, making it ideal for screen readers.

Exam trap

The trap here is that candidates confuse Object Detection (which only lists objects) with Image Captioning (which generates a full description), leading them to choose C because they think identifying objects is sufficient for accessibility, but screen readers need natural language descriptions, not just object labels.

How to eliminate wrong answers

Option A is wrong because Optical Character Recognition (OCR) extracts text from images, not descriptions of visual content, so it cannot describe a photo of a landscape or object. Option C is wrong because Object Detection identifies and locates specific objects within an image but does not generate a coherent textual description of the overall scene. Option D is wrong because Face Detection only identifies human faces and their attributes, ignoring other image content and context needed for alternative text.

88
MCQeasy

What types of documents does Azure AI Document Intelligence's prebuilt 'receipt' model extract data from?

A.Only digital PDF receipts with standardized formatting
B.Sales receipts from stores and restaurants, extracting merchant details, items, and totals
C.Medical receipts and prescription records only
D.Electronic bank transfer receipts for financial transactions
AnswerB

The prebuilt receipt model is a domain-specific document extraction tool optimized for point-of-sale receipts from retail stores and restaurants. It identifies and extracts structured fields such as merchant name, transaction date, itemized line items, subtotal, tax, tip (when present), and the final total, returning them as key-value pairs in JSON output. This directly matches the intended use case and the fields described in the option, making it the correct answer.

Why this answer

Azure AI Document Intelligence's prebuilt 'receipt' model is specifically designed to extract key information from sales receipts, such as merchant details, transaction items, and totals. It uses optical character recognition (OCR) and deep learning models to parse both printed and handwritten receipts from stores and restaurants, handling various formats and layouts.

Exam trap

The trap here is that candidates may assume the receipt model is limited to a specific format or type of receipt, but it is designed for general sales receipts from stores and restaurants, not specialized documents like medical or bank records.

How to eliminate wrong answers

Option A is wrong because the receipt model is not limited to digital PDFs with standardized formatting; it can process scanned images, photos, and various receipt layouts, including those with non-standard formatting. Option C is wrong because the receipt model is not specialized for medical receipts or prescription records; those would require a different prebuilt model (e.g., the 'health insurance' or custom model). Option D is wrong because electronic bank transfer receipts are not the target of this model; the receipt model focuses on point-of-sale receipts, not financial transaction records from banking systems.

89
MCQeasy

What can Azure AI Vision's spatial analysis feature do?

A.Extract text from documents and images
B.Analyze video to detect people's presence and movement in physical spaces
C.Identify the 3D coordinates of objects in satellite imagery
D.Generate 3D models from 2D photographs
AnswerB

Spatial analysis, available within Azure Computer Vision, ingests video frames and uses deep learning models to detect the presence of people, count them, track their movement paths, and monitor occupancy in real-world environments like stores or factories. It outputs temporal events (e.g., a person entering a zone or crossing a line), which enables retail analytics, safety monitoring, and facility management—matching this correct answer.

Why this answer

Azure AI Vision's spatial analysis feature is designed to analyze video streams from cameras to detect the presence and movement of people in physical spaces. It uses computer vision models to track individuals, count occupancy, and understand movement patterns in real-time, enabling applications like retail analytics or workplace safety.

Exam trap

The trap here is that candidates confuse spatial analysis with general computer vision features like OCR or 3D reconstruction, assuming it can handle any image or video analysis task, when it is specifically focused on people detection and movement in physical spaces from live or recorded camera feeds.

How to eliminate wrong answers

Option A is wrong because extracting text from documents and images is the function of Azure AI Vision's OCR (Optical Character Recognition) capability, not spatial analysis. Option C is wrong because spatial analysis operates on video feeds from physical cameras, not satellite imagery, and it does not identify 3D coordinates of objects in such imagery. Option D is wrong because generating 3D models from 2D photographs is not a feature of spatial analysis; that would relate to photogrammetry or 3D reconstruction services, not Azure's spatial analysis.

90
MCQhard

An autonomous vehicle system needs to both read the speed limit text on traffic signs and detect the presence and location of pedestrians crossing the road. Which combination of Azure Computer Vision capabilities should be used?

A.Image Classification and OCR
B.Semantic Segmentation and OCR
C.Optical Character Recognition (OCR) and Object Detection
D.Face Detection and OCR
AnswerC

OCR is specialized for text extraction from images, enabling the system to read speed-limit numbers from road signs. Object detection uses bounding boxes and class labels to locate pedestrians in the scene. Together they cover the dual requirement: reading the speed and detecting the location of pedestrians, essential for safe autonomous driving.

Why this answer

The autonomous vehicle system requires two distinct capabilities: reading text from speed limit signs (OCR) and detecting the presence and location of pedestrians (Object Detection). OCR extracts text from images, while Object Detection identifies objects and provides bounding boxes around them, making option C the correct combination.

Exam trap

The trap here is that candidates confuse Semantic Segmentation with Object Detection, assuming pixel-level classification is needed for pedestrian location, but Object Detection provides the required bounding boxes for location without the computational overhead of per-pixel segmentation.

How to eliminate wrong answers

Option A is wrong because Image Classification assigns a single label to an entire image but does not provide bounding boxes or locations for multiple objects, so it cannot detect pedestrians' positions. Option B is wrong because Semantic Segmentation classifies every pixel into a category (e.g., road, pedestrian) but does not extract text from signs, and OCR alone cannot detect pedestrians. Option D is wrong because Face Detection specifically identifies human faces, not full pedestrian bodies, and cannot detect pedestrians crossing the road or read speed limit text.

91
MCQmedium

What is image classification and how is it different from object detection?

A.Image classification labels the whole image; object detection finds and locates multiple objects within it
B.Image classification is faster; object detection is slower but more accurate
C.Image classification works on videos; object detection works on static images only
D.They are the same task with different names
AnswerA

This option is correct. Image classification evaluates the whole image as a single unit and outputs one label (e.g., 'cat' for a photo containing a cat, even if other objects exist). Object detection goes further by finding multiple objects in the image and returning for each one a class label and a bounding box that specifies its location (e.g., 'cat at (x1,y1,x2,y2) and dog at (x3,y3,x4,y4)'). Thus the core difference is the granularity of the output: a single global label versus localized, per-object predictions.

Why this answer

Image classification assigns a single label to an entire image based on its dominant content, such as 'cat' or 'dog'. Object detection goes further by not only identifying multiple objects within an image but also drawing bounding boxes around each one, providing both class labels and spatial locations. This distinction is fundamental in computer vision workloads on Azure, where Custom Vision and Computer Vision API offer separate capabilities for classification and detection tasks.

Exam trap

The trap here is that candidates confuse the output granularity—thinking object detection is just a 'more detailed' version of classification rather than a fundamentally different task with spatial localization, leading them to choose Option B or D.

How to eliminate wrong answers

Option B is wrong because while image classification can be computationally simpler, the statement that object detection is 'slower but more accurate' is misleading—accuracy depends on the specific model and use case, not a general trade-off; object detection provides more detailed output (locations), not inherently higher accuracy. Option C is wrong because both image classification and object detection can work on videos (e.g., frame-by-frame analysis) and static images; there is no restriction that classification is for videos and detection only for static images. Option D is wrong because image classification and object detection are fundamentally different tasks—classification labels the whole image, while detection identifies and localizes multiple objects, so they are not the same task with different names.

92
MCQeasy

What industries benefit most from Azure AI Document Intelligence's capabilities?

A.Only the entertainment industry for processing movie scripts
B.Finance, healthcare, legal, government, and any industry processing high volumes of documents
C.Only manufacturing for quality control inspection
D.Only retail for product catalog management
AnswerB

Azure AI Document Intelligence is a cloud-based document-processing service that uses OCR and pretrained/custom models to extract key-value pairs, tables, and entities from scanned or digital documents. Its design is horizontal because the underlying layout and text-extraction models are not tied to one vertical, so finance, healthcare, legal, and government all benefit from high-volume document automation. Therefore, the correct answer calls out the broad applicability and any industry processing high volumes of documents.

Why this answer

Azure AI Document Intelligence (formerly Form Recognizer) is designed to extract, analyze, and structure data from documents at scale using prebuilt and custom models. Industries like finance, healthcare, legal, and government process massive volumes of forms, invoices, medical records, and contracts, making them the primary beneficiaries of automated document processing.

Exam trap

The trap here is that candidates may assume Document Intelligence is limited to a single vertical (like entertainment or manufacturing), when in fact it is a general-purpose service for any industry that handles structured or semi-structured documents.

How to eliminate wrong answers

Option A is wrong because the entertainment industry is not the sole beneficiary; Document Intelligence is built for any high-volume document processing, not just movie scripts. Option C is wrong because manufacturing quality control typically relies on computer vision for object detection and defect analysis, not document extraction. Option D is wrong because retail product catalog management is only one narrow use case, and Document Intelligence is designed for broad document types across many industries.

93
MCQhard

An autonomous vehicle team needs a system that not only identifies objects like cars and pedestrians but also creates a precise pixel-level mask for each individual object instance, even when objects overlap. Which Azure Computer Vision capability should they use?

A.Image classification
B.Object detection
C.Semantic segmentation
D.Instance segmentation
AnswerD

It combines object detection with pixel-level segmentation, assigning a unique mask to each distinct object instance even when same-class objects overlap or touch. For a self-driving vehicle, this means every car, pedestrian, cyclist, etc., gets its own precise silhouette, enabling boundary estimation, separate tracking, and safe maneuvering. This directly supplies the instance-level separation the team needs for counting and localizing each object to a pixel-level accuracy.

Why this answer

Instance segmentation (Option D) is the correct choice because it combines object detection with semantic segmentation to identify each individual object instance and generate a precise pixel-level mask for it, even when objects overlap. This capability is essential for autonomous vehicles to distinguish between multiple cars or pedestrians that may partially occlude each other, enabling safe navigation.

Exam trap

The trap here is that candidates confuse semantic segmentation (which labels every pixel by class but not by instance) with instance segmentation, leading them to choose Option C when the question explicitly requires per-instance masks for overlapping objects.

Why the other options are wrong

A

Image classification assigns a single label to the entire image, not identifying individual objects or creating pixel-level masks for instances, especially overlapping ones.

B

Object detection provides bounding boxes around objects but does not generate pixel-level masks, which are required for precise instance separation, especially when objects overlap.

C

Semantic segmentation assigns the same class label to all pixels of a given category (e.g., all cars), but does not distinguish between individual object instances. The question requires per-instance pixel masks, especially for overlapping objects, which is the defining feature of instance segmentation.

94
MCQmedium

What is 'brand detection' in Azure AI Vision?

A.Detecting counterfeit products by analysing product images
B.Identifying well-known brand logos and their locations within images
C.Analysing brand sentiment from customer review text
D.Detecting when Azure resources have been tagged with incorrect brand naming conventions
AnswerB

Azure AI Vision's brand detection is a specialized image-analysis capability that scans an image for well-known brand logos, identifies the brand, and returns the location of each detected logo as a bounding box. This enables automated brand monitoring in user-generated content, media libraries, or retail shelf images, for use cases like media monitoring, content moderation, and marketing analytics.

Why this answer

Brand detection in Azure AI Vision is a specialized feature that uses computer vision models to identify well-known brand logos within images and return their locations as bounding box coordinates. It is part of the Image Analysis API, specifically under the 'brands' visual feature, and does not involve text analysis, resource tagging, or counterfeit detection.

Exam trap

The trap here is that candidates confuse 'brand detection' with general object detection or text analysis, mistakenly thinking it involves counterfeit detection (A) or sentiment analysis (C), when in fact it is a specific logo-recognition feature within Azure AI Vision's Image Analysis API.

How to eliminate wrong answers

Option A is wrong because brand detection identifies logos, not counterfeit products; counterfeit detection would require custom model training or additional verification logic beyond the built-in brand detection capability. Option C is wrong because brand detection operates on visual image content, not text; sentiment analysis from customer reviews is a natural language processing (NLP) task handled by Azure AI Language, not Azure AI Vision. Option D is wrong because brand detection analyzes image content for logos, not Azure resource tags or naming conventions; resource tagging is an Azure governance feature unrelated to computer vision.

95
MCQeasy

A library wants to digitize a collection of old printed books by converting scanned pages into searchable, editable text. Which Azure Computer Vision capability should they use?

A.Image Analysis (descriptions and tags)
B.Optical Character Recognition (OCR)
C.Object detection
D.Face detection
AnswerB

Azure AI Vision's Optical Character Recognition (OCR) capability, specifically the Read API, detects printed and handwritten digits, letters, and words and transcribes them into machine-readable text with page structure. It extracts the raw character content and groups words into lines and blocks, making it possible to generate searchable PDFs or run full-text queries. This is precisely what a library requires when converting scanned book pages into editable and searchable text.

Why this answer

Optical Character Recognition (OCR) is the Azure Computer Vision capability specifically designed to extract printed or handwritten text from images and convert it into machine-readable, searchable, and editable text. For digitizing old printed books, OCR can process scanned pages to produce digital text that can be indexed and edited, directly meeting the library's requirement.

Exam trap

The trap here is that candidates may confuse Image Analysis (which can describe a scene containing text) with OCR (which specifically extracts the text itself), leading them to choose option A when the task requires editable text output.

How to eliminate wrong answers

Option A is wrong because Image Analysis provides descriptions and tags for visual content (e.g., objects, scenes, colors) but does not extract text characters from images. Option C is wrong because Object detection identifies and locates objects within an image (e.g., chairs, cars) but cannot read or convert text. Option D is wrong because Face detection identifies human faces in images and provides attributes like age or emotion, which is unrelated to text extraction from scanned documents.

96
MCQeasy

A city transportation department wants to use a live camera feed at a bus stop to estimate how many people are waiting for the bus. Which Azure Computer Vision capability should they use?

A.A. Optical Character Recognition (OCR)
B.B. Face detection
C.C. Object detection
D.D. Semantic segmentation
AnswerC

Object detection is the correct approach because it is designed to locate and classify each occurrence of a predefined object class—such as 'person'—within an image or video frame, outputting a bounding box and a confidence score for each instance. Modern detectors like YOLO or Faster R-CNN use features from the entire body, not just the face, so they can detect people regardless of their orientation or whether their face is visible. In a live camera feed, object detection models run at real-time speeds and can count every detected person by tallying the number of bounding boxes labeled 'person', making it ideal for the transportation department's need.

Why this answer

Object detection is the correct capability because it can identify and locate multiple people in a live camera feed, providing bounding boxes around each person. This allows the system to count the number of individuals waiting at the bus stop, which is the core requirement. Optical Character Recognition (OCR) extracts text, face detection identifies faces but not necessarily counts people in a crowd, and semantic segmentation classifies each pixel but is overkill for simple counting.

Exam trap

The trap here is that candidates might confuse face detection with people counting, but face detection fails when faces are not visible, whereas object detection with the 'person' class is more robust for counting people in a crowd.

How to eliminate wrong answers

Option A is wrong because Optical Character Recognition (OCR) is designed to extract printed or handwritten text from images, not to detect or count people. Option B is wrong because face detection identifies faces and can count faces, but it may miss people whose faces are not visible (e.g., turned away or partially occluded), making it unreliable for accurate crowd counting. Option D is wrong because semantic segmentation assigns a class label to every pixel in an image, which is more granular than needed for counting people and is computationally heavier than object detection for this task.

97
MCQmedium

A retail company wants to use security cameras to automatically detect when products are removed from shelves. They need to identify the specific product type (e.g., a cereal box, a soda can) and count how many units are taken. Which Azure Computer Vision capability should they use?

A.Optical Character Recognition (OCR)
B.Object detection
C.Image tagging
D.Face detection
AnswerB

Object detection is a computer vision task that produces both the category label and a bounding box for every instance of an object in an image. When applied to security camera frames, a model can be trained to recognize specific retail products, and by counting the predicted bounding boxes, the system can automatically tally how many units of each product are visible on shelves or in transit. This spatial localization distinguishes it from image-level classification and enables the inventory-counting automation the retail company needs.

Why this answer

Object detection is the correct capability because it can both locate objects within an image (via bounding boxes) and classify them into specific categories (e.g., cereal box, soda can). This allows the system to identify the product type and count the number of units removed from shelves, which aligns directly with the requirement.

Exam trap

The trap here is that candidates often confuse image tagging (which labels the whole scene) with object detection (which identifies and locates individual objects), leading them to choose option C when the question explicitly requires counting and identifying specific product types.

How to eliminate wrong answers

Option A is wrong because Optical Character Recognition (OCR) extracts text from images, not objects or product types. Option C is wrong because image tagging assigns descriptive labels to the entire image (e.g., 'grocery store') but does not provide bounding boxes or per-object counts. Option D is wrong because face detection is specialized for identifying human faces, not inanimate objects like products on shelves.

98
MCQmedium

What is 'retail intelligence' using computer vision and what business value does it provide?

A.AI that recommends products to online shoppers based on browsing history
B.Using store video to analyse traffic flow, dwell time, queue length, and planogram compliance
C.An AI system that processes retail POS transaction data to forecast sales
D.Sentiment analysis of customer reviews from retail websites to improve products
AnswerB

Retail intelligence in Azure is implemented through computer vision services such as Azure AI Vision Spatial Analysis, which detects and tracks people in store camera feeds to measure traffic flow, dwell time, queue length, and planogram compliance. The system runs video frames through object detection and tracking algorithms to compute aggregate metrics about shopper behavior and store conditions. This matches the exact definition of retail intelligence, which brings online-analytics-style data richness to brick-and-mortar stores.

Why this answer

Retail intelligence using computer vision involves analyzing video feeds from in-store cameras to extract actionable insights such as customer traffic flow, dwell time at shelves, queue lengths, and planogram compliance. This is a classic computer vision workload on Azure, often implemented using Azure Video Indexer or Custom Vision, which processes visual data rather than transactional or textual data.

Exam trap

The trap here is that candidates confuse computer vision with other AI workloads like recommendation engines or NLP, assuming any retail AI is 'retail intelligence' without recognizing the specific visual data source.

How to eliminate wrong answers

Option A is wrong because it describes a recommendation engine based on browsing history, which relies on collaborative filtering or content-based filtering, not computer vision. Option C is wrong because it refers to processing POS transaction data for sales forecasting, which is a time-series analytics task, not a computer vision workload. Option D is wrong because sentiment analysis of customer reviews uses natural language processing (NLP), not computer vision, to analyze text.

99
MCQmedium

What is 'image embedding' in computer vision and how is it used in visual search?

A.Inserting an image into a Word document or web page as an embedded object
B.Converting images to vectors that capture visual meaning for similarity search and retrieval
C.Compressing images before embedding them in a database to reduce storage costs
D.Annotating images with GPS coordinates embedded in the file metadata
AnswerB

Image embeddings are produced by passing an image through a trained neural network (such as a convolutional or vision-transformer model) that maps the pixel content into a high-dimensional numeric vector. In that vector space, images that are visually or semantically similar land closer together, which is why distance measures like cosine similarity power reverse image search, product matching, and duplicate detection. This is a learned representation, not a file operation.

Why this answer

Image embedding converts images into dense vector representations (embeddings) that capture semantic visual features such as shapes, colors, and textures. In visual search, these embeddings enable similarity comparisons by calculating distances (e.g., cosine similarity) between query image vectors and a pre-indexed database of image vectors, allowing retrieval of visually similar images even without textual metadata.

Exam trap

The trap here is confusing 'embedding' as a general computing term (e.g., embedding an object in a document) with the specific machine learning concept of vector embeddings that capture semantic meaning for similarity search.

How to eliminate wrong answers

Option A is wrong because inserting an image into a document as an embedded object is a file-embedding operation, not a computer vision technique for representing visual content. Option C is wrong because compressing images reduces file size but does not produce a vector representation that captures semantic meaning for similarity search. Option D is wrong because annotating images with GPS coordinates adds geospatial metadata, not a vector embedding that encodes visual features for retrieval.

100
MCQhard

A manufacturing company uses Azure Computer Vision to analyze assembly line images. They need to identify specific product defects (e.g., scratches, dents) and also read serial numbers printed on the products in various fonts. Which combination of Azure Computer Vision features should they use?

A.Image Analysis (object detection) and OCR
B.Custom Vision (object detection) and OCR
C.Face API and OCR
D.Image Analysis (tags) and OCR
AnswerB

Custom Vision's object detection capability lets you train a model on your own labeled dataset of defective and non-defective parts, producing bounding boxes around each defect with confidence scores. This transfer-learning approach adapts to your specific product line, unlike generic prebuilt services. OCR is then used in parallel to extract the serial number, giving you a pipeline that both locates flaws and reads the identifier—fully satisfying the stated requirements.

Why this answer

The scenario requires two distinct capabilities: identifying specific defect types (scratches, dents) and reading variable-font serial numbers. Custom Vision's object detection model can be trained on labeled defect images to recognize those specific patterns, while Azure's OCR (part of Computer Vision's Read API) extracts printed text regardless of font. Combining these two features directly addresses both requirements.

Exam trap

The trap here is that candidates assume the built-in Image Analysis object detection can be customized for defects, but it is a pre-trained general model, whereas Custom Vision is required for custom training.

How to eliminate wrong answers

Option A is wrong because Image Analysis's built-in object detection is a general-purpose model that cannot be trained to recognize custom defects like scratches or dents; it only detects common objects (e.g., person, car). Option C is wrong because Face API is designed solely for human face detection, recognition, and analysis, not for product defects or text extraction. Option D is wrong because Image Analysis's tagging feature assigns descriptive labels (e.g., 'metal', 'industrial') based on pre-trained categories, not custom defect identification, and cannot be trained for specific product flaws.

101
MCQmedium

A retail chain wants to automatically detect which specific products are missing from store shelves by analyzing images from in-store cameras. Each product has a distinct shape and label. Which Azure Computer Vision capability is most appropriate for this task?

A.A) Image Classification
B.B) Object Detection
C.C) Optical Character Recognition (OCR)
D.D) Facial Recognition
AnswerB

Object detection both localizes and classifies each object in an image by outputting bounding boxes and class labels for every detected instance. Architectures like Faster R-CNN or YOLO generate region proposals or grid-based predictions, allowing the system to count and identify each product on a shelf. By comparing the detected products against an expected planogram, the system can pinpoint exactly which specific items are absent.

Why this answer

Object Detection (Option B) is the correct choice because it can identify and locate multiple products within an image by drawing bounding boxes around each detected object. This allows the system to determine which specific products are missing by comparing detected items against an expected inventory list. Image Classification would only label the entire image, not individual products, while OCR focuses on text extraction and Facial Recognition identifies people.

Exam trap

The trap here is that candidates often confuse Image Classification with Object Detection, thinking that classifying the entire image as 'shelf with products' is sufficient, but the task requires locating and identifying individual missing products, which only Object Detection can do.

How to eliminate wrong answers

Option A is wrong because Image Classification assigns a single label to the entire image (e.g., 'shelf with products'), but cannot distinguish or locate individual products to detect which ones are missing. Option C is wrong because Optical Character Recognition (OCR) extracts text from images, but products are identified by shape and label, not solely by text; OCR would fail for products without readable text or with non-textual labels. Option D is wrong because Facial Recognition is designed to identify or verify individuals by facial features, not to detect inanimate objects like products on shelves.

102
MCQeasy

A logistics company scans thousands of packages daily. They need an automated system to read handwritten shipping labels to sort packages correctly. Which Azure Computer Vision capability should they use?

A.Image Analysis (descriptions and tags)
B.Optical Character Recognition (OCR)
C.Object Detection
D.Face API
AnswerB

Azure AI Vision's OCR (via the Read API) is specifically built to extract printed and handwritten text from images, returning both the text string and its bounding-box coordinates. For shipping labels, this is exactly what is needed to capture addresses, tracking numbers, and other alphanumeric content accurately, even under uneven lighting or slight rotation.

Why this answer

Optical Character Recognition (OCR), because the scenario requires extracting handwritten text from images of shipping labels to automate sorting. OCR is the specific Azure Computer Vision capability designed to detect and read printed or handwritten text from images, returning machine-readable text that can be used for downstream processing.

Exam trap

The trap here is that candidates may confuse Image Analysis (which can describe scenes) with OCR, but Image Analysis does not extract text—it only provides visual descriptions and tags.

Why the other options are wrong

A

Image Analysis provides descriptions and tags for image content but does not extract text from images, which is required for reading handwritten shipping labels.

D

Face API is designed for detecting and recognizing human faces, not for reading text on shipping labels. The question specifically requires reading handwritten text, which is outside Face API's capabilities.

103
MCQmedium

A security company needs to monitor a warehouse using video cameras. They want to detect whether any persons are present in a given frame and also know their approximate locations. Which Azure Computer Vision capability should they use?

A.Image classification
B.Object detection
C.Semantic segmentation
D.Optical Character Recognition (OCR)
AnswerB

Object detection is specifically designed to locate and classify multiple objects within an image. Algorithms like YOLO, Faster R-CNN, or SSD output both class labels (e.g., 'person') and bounding box coordinates for each detected instance. This directly satisfies the security company's need to know that persons are present and where they are positioned in the warehouse. The bounding boxes provide approximate locations, which perfectly matches the stated requirement.

Why this answer

Object detection is the correct choice because it not only identifies whether persons are present in a video frame but also provides bounding box coordinates indicating their approximate locations. This capability is specifically designed to locate multiple objects of interest within an image, which directly matches the requirement of detecting persons and knowing where they are.

Exam trap

The trap here is that candidates confuse object detection with image classification, thinking that simply labeling an image as containing a person is sufficient, but the question explicitly requires 'approximate locations' which only object detection provides.

How to eliminate wrong answers

Option A is wrong because image classification assigns a single label to the entire image (e.g., 'person present') but does not provide any location information for detected objects. Option C is wrong because semantic segmentation assigns a class label to every pixel in the image, which is overkill for simply locating persons and does not differentiate between individual instances of the same class. Option D is wrong because Optical Character Recognition (OCR) is designed to extract text from images, not to detect or locate persons.

104
MCQmedium

Which Azure AI service enables you to train a custom image classification model with your own labeled images?

A.Azure AI Vision (pre-built)
B.Azure AI Custom Vision
C.Azure Machine Learning
D.Azure AI Face
AnswerB

Azure AI Custom Vision is the correct choice because it is a purpose-built Azure Cognitive Services offering that lets you create, train, and publish custom image classification and object detection models using your own uploaded, labeled images. You can quickly define custom classes, train the model through the user interface or SDK, and iterate on training data without writing custom machine learning code. After training, it exposes a REST prediction endpoint for your application, making it the streamlined, out-of-the-box service for this scenario.

Why this answer

Azure AI Custom Vision (option B) is the correct service because it is specifically designed to allow users to upload their own labeled images, train a custom image classification model, and then deploy it via a REST API endpoint. Unlike the pre-built Azure AI Vision service, Custom Vision provides the ability to fine-tune a model on domain-specific visual concepts using transfer learning, making it ideal for bespoke classification tasks.

Exam trap

The trap here is that candidates confuse the pre-built Azure AI Vision service (which cannot be retrained) with the Custom Vision service, assuming that 'AI Vision' includes custom training capabilities, when in fact Custom Vision is a separate Azure resource with a distinct training workflow.

How to eliminate wrong answers

Option A is wrong because Azure AI Vision (pre-built) offers only pre-trained models for general image analysis (e.g., object detection, OCR, landmark recognition) and does not allow you to train a custom model with your own labeled images. Option C is wrong because Azure Machine Learning is a broader platform for building, training, and deploying any type of machine learning model (including custom vision models), but it requires manual implementation of deep learning frameworks and is not a dedicated, out-of-the-box service for image classification with labeled images like Custom Vision. Option D is wrong because Azure AI Face is a specialized service for detecting and analyzing human faces (e.g., age, emotion, identity) and cannot be used to train a custom image classification model for arbitrary objects or scenes.

105
MCQeasy

A quality control manager at a bottling plant needs an automated system to inspect images of bottles coming off the production line. The system must determine whether each bottle has a correctly sealed cap or is defective (cap missing or crooked). The manager has a set of labeled images showing both acceptable and defective bottles. Which Azure Computer Vision service should they use to build a model that classifies each bottle image as 'acceptable' or 'defective'?

A.Azure Face API
B.Azure Custom Vision (Image Classification)
C.Azure Form Recognizer
D.Azure OCR (Read API)
AnswerB

Azure Custom Vision (Image Classification) is the correct choice because it enables you to upload a labeled dataset of bottle cap images and train a custom model that outputs a categorical prediction, such as 'acceptable' or 'defective'. As part of Azure Cognitive Services, it leverages transfer learning from pre-trained neural networks, so even a small number of examples can produce a usable classifier without requiring you to build a machine learning pipeline from scratch. This directly fulfills the automated visual quality-control requirement.

Why this answer

Azure Custom Vision (Image Classification) is the correct service because it allows you to upload labeled images of bottles (acceptable and defective) and train a custom image classification model to distinguish between the two classes. This service is specifically designed for scenarios where you need to classify images into user-defined categories without requiring deep learning expertise.

Exam trap

The trap here is that candidates may confuse Azure Custom Vision with Azure OCR or Form Recognizer because all three involve image analysis, but only Custom Vision allows training a custom classifier for non-text visual features like bottle cap integrity.

Why the other options are wrong

A

Azure Face API is designed for detecting, analyzing, and recognizing human faces, not for classifying industrial objects like bottle caps. It cannot be trained on custom images of bottles to distinguish acceptable vs. defective caps.

C

Azure Form Recognizer is designed for extracting structured data from documents (e.g., invoices, forms), not for classifying images of bottles as acceptable or defective based on visual features like cap presence.

D

Azure OCR (Read API) extracts text from images, but the task requires classifying bottle caps as acceptable or defective based on visual features, not text recognition.

106
MCQhard

What is 'zero-shot object detection' in computer vision?

A.Object detection that runs with zero latency for real-time applications
B.Detecting objects described in text without any training examples of that specific class
C.Detection that works on black and white images (zero colour channels)
D.An object detection model with zero false positives on the test set
AnswerB

Zero-shot object detection uses a vision-language embedding space in which image regions and text descriptions are projected into the same representational space. At inference, the model scores each region against the embedding of the provided text prompt and outputs bounding boxes for regions with high alignment. Because the target class is defined semantically by text rather than by labelled training images, the detector can find object categories that were never seen during training.

Why this answer

Zero-shot object detection refers to a model's ability to detect objects in images based on a textual description of the target class, without having been trained on any labeled examples of that specific class. This is achieved by leveraging a joint embedding space where visual features and text features are aligned, allowing the model to generalize to unseen categories at inference time.

Exam trap

The trap here is confusing the term 'zero-shot' with performance metrics like latency, image color depth, or accuracy, rather than understanding it as a training paradigm where the model generalizes to unseen classes via natural language descriptions.

How to eliminate wrong answers

Option A is wrong because zero-shot object detection does not imply zero latency; latency depends on model architecture, hardware, and optimization, not on the zero-shot capability. Option C is wrong because zero-shot refers to the absence of training examples for a class, not to the number of color channels in the input image; models can process grayscale or color images regardless. Option D is wrong because zero-shot object detection makes no claim about false positive rate; a model can have false positives even in a zero-shot setting, and achieving zero false positives is an unrealistic performance metric.

107
MCQeasy

What is 'face detection' vs 'face identification' in Azure AI Vision?

A.Face detection and identification are the same feature with different names
B.Detection locates faces and returns attributes; identification matches faces to a known person database
C.Detection works on live video; identification works only on still images
D.Face detection requires a paid tier; identification is available in the free tier
AnswerB

The Azure Face API Detect operation first localizes one or more faces in an image by returning bounding-box coordinates, then optionally extracts attributes such as age, emotion, or head pose. In contrast, the Identify operation takes a detected face's unique faceId and compares it against a PersonGroup or LargePersonGroup that has been pre-enrolled with known individuals, returning the best-matching person or an empty result. This 'detect-then-identify' pipeline is why the core distinction is localization/attribute extraction versus association with a known identity, and why identification requires a registered database plus the responsible AI gating that Microsoft applies to facial recognition scenarios.

Why this answer

Face detection in Azure AI Vision locates human faces in an image and returns attributes such as bounding box coordinates, landmarks (e.g., eyes, nose), and optional attributes like age or emotion. Face identification, part of the Azure Face API, goes a step further by matching a detected face against a secured person database (PersonGroup) to verify or recognize a specific individual. This distinction is fundamental: detection finds faces, identification assigns an identity.

Exam trap

The trap here is that candidates confuse the terms 'detection' and 'identification' as interchangeable, when Azure explicitly separates them as two distinct API operations with different capabilities and pricing tiers.

How to eliminate wrong answers

Option A is wrong because face detection and identification are distinct operations with different purposes and API endpoints; detection uses the 'Detect' operation, while identification uses the 'Identify' operation against a PersonGroup. Option C is wrong because both detection and identification work on still images and video frames; Azure AI Vision supports both modes for each, with no restriction that detection is only for live video or identification only for still images. Option D is wrong because both face detection and identification require a paid (S0) tier of the Face API; the free (F0) tier is limited to a low number of transactions per month and does not support identification at all.

108
MCQeasy

What is 'background removal' in Azure AI Vision and what is it used for?

A.Removing background noise from audio in video recordings
B.Automatically separating the foreground subject from the image background
C.Deleting metadata embedded in image files before uploading to Azure
D.Removing blurry or out-of-focus areas from photographs
AnswerB

Automatically separating the foreground subject from the image background is the correct description of the Azure AI Vision Background Removal capability. It uses a computer vision model to segment the image into a subject mask and a background layer, producing a cut-out of the main object that can be overlaid on a new scene or used for product photography. The result is a transparent-background image or a foreground/background pair, which is exactly what the Background Removal API returns.

Why this answer

Background removal in Azure AI Vision uses deep learning models to automatically detect and separate the primary foreground subject (e.g., a person, object, or animal) from the rest of the image. The service outputs either a cut-out image with a transparent background or a binary mask, enabling downstream tasks like compositing, product catalog creation, or privacy-focused image processing. This is a core computer vision capability, not related to audio, metadata, or image sharpness.

Exam trap

The trap here is that candidates confuse 'background removal' with general image cleanup tasks like noise reduction or blur removal, or mistakenly associate it with audio processing because of the word 'background' in a different context.

How to eliminate wrong answers

Option A is wrong because background removal in Azure AI Vision operates on images, not audio; removing background noise from audio is a speech or audio processing task, not a computer vision feature. Option C is wrong because deleting metadata (e.g., EXIF data) is a file management or privacy operation, not a computer vision capability; Azure AI Vision does not remove metadata as part of its image analysis. Option D is wrong because removing blurry or out-of-focus areas is an image enhancement or deblurring task, not the foreground/background segmentation that background removal performs.

109
MCQmedium

What is 'multi-modal AI' and how does Azure AI Vision support it?

A.AI that processes data in multiple programming languages simultaneously
B.AI that processes and relates multiple data types (text, images, audio) together
C.Deploying AI models across multiple Azure regions for global availability
D.Using multiple AI models in sequence where each model processes a different step
AnswerB

This correctly defines multimodal AI: a single model or model family that ingests tokens from more than one data modality—such as text, images, audio, and sometimes video—and learns to align them in a shared embedding space. Because the model jointly processes these modalities, it can capture cross-modal relationships like matching a text query to an image, answering questions about a picture, or correlating audio with visual events. This fusion of information enables tasks that would be impossible with separate unimodal models, such as visual question answering, image-text retrieval, and audio-visual analysis.

Why this answer

Multi-modal AI refers to systems that can process and relate multiple types of data—such as text, images, and audio—simultaneously. Azure AI Vision supports this by providing pre-built models and APIs that extract information from images and video, which can then be combined with text or audio data in a multi-modal pipeline, enabling richer analysis like image captioning or visual question answering.

Exam trap

The trap here is that candidates confuse 'multi-modal' with 'multi-model' or 'multi-region'—Azure AI-900 often tests the precise definition of multi-modal as handling multiple data types (text, image, audio) together, not just using multiple models or deploying across regions.

How to eliminate wrong answers

Option A is wrong because multi-modal AI is not about processing data in multiple programming languages; that describes polyglot programming or multi-language support, not data modality. Option C is wrong because deploying AI models across multiple Azure regions for global availability is a geo-redundancy or high-availability strategy, not a characteristic of multi-modal AI. Option D is wrong because using multiple AI models in sequence where each processes a different step describes a pipeline or chained architecture, not the simultaneous processing and relating of multiple data types that defines multi-modal AI.

110
MCQmedium

A logistics warehouse uses a conveyor belt system to move packages. They need to automatically read the alphanumeric serial numbers printed on labels attached to each box. The labels may have different fonts and be somewhat dusty. Which Azure Computer Vision feature should they use?

A.Image Classification
B.Optical Character Recognition (OCR) using the Read API
C.Object Detection
D.Image Analysis (captioning and tagging)
AnswerB

The Azure AI Vision Read API performs OCR by detecting and extracting text from images, converting handwritten or printed characters into machine-readable strings. In this warehouse conveyor scenario, each serial number on a box label can be captured by a camera and transcribed into an alphanumeric value exactly as printed, even under uneven lighting, slight rotation, or varied label fonts. Because the goal is to record a specific identifier rather than categorize or describe the box, OCR is the only service that directly returns the serial number itself.

Why this answer

The Read API, part of Azure Computer Vision's OCR capabilities, is specifically designed to extract printed and handwritten text from images, including alphanumeric serial numbers. It can handle varying fonts and degraded image quality (e.g., dusty labels) by using deep-learning models optimized for text recognition. This makes it the correct choice for reading serial numbers from conveyor belt packages.

Exam trap

The trap here is that candidates confuse Object Detection (finding objects) with OCR (reading text), or assume Image Classification can handle text extraction, when in fact only the Read API is designed for text recognition under challenging conditions.

Why the other options are wrong

A

Image Classification categorizes the entire image into predefined classes (e.g., 'box', 'label'), but cannot extract specific alphanumeric text from labels, especially with varied fonts and dust.

C

Object Detection identifies and locates objects (e.g., boxes, people) in an image, but it cannot read alphanumeric text. The requirement is to read serial numbers, which requires OCR, not object detection.

D

Image Analysis (captioning and tagging) generates descriptive labels and captions for images, but it cannot extract specific alphanumeric serial numbers from labels, especially with varied fonts and dust.

111
MCQhard

What is 'few-shot learning' in the context of Azure AI Custom Vision model training?

A.Training a model using only a small subset of available compute resources
B.Training an accurate vision model with very few labelled examples using transfer learning
C.A technique for running multiple small training experiments in parallel
D.Limiting training to the first few hundred iterations regardless of convergence
AnswerB

This is correct because Azure Custom Vision supports few-shot vision training by starting from a pre-trained model and fine-tuning it with just a small number of labelled images—often as few as 15 per class. Transfer learning lets the convolutional base retain generic feature extractors (edges, shapes, textures) while only the final classification head adapts to the new categories. That is the essence of few-shot learning: achieving high accuracy from very limited labelled examples.

Why this answer

Few-shot learning in Azure AI Custom Vision refers to training an accurate vision model with very few labeled examples by leveraging transfer learning. This approach uses a pre-trained neural network (e.g., ResNet) as a starting point, allowing the model to learn new visual concepts from as few as 2–5 images per class, significantly reducing the data collection burden.

Exam trap

The trap here is confusing 'few-shot learning' with resource-saving techniques like reduced compute or early stopping, when the core concept is about achieving high accuracy with minimal labeled data through transfer learning.

How to eliminate wrong answers

Option A is wrong because it describes reducing compute resources, not the data efficiency technique of few-shot learning. Option C is wrong because it describes parallel training experiments, which is a resource optimization strategy unrelated to few-shot learning. Option D is wrong because it describes early stopping based on iteration count, which is a training termination heuristic, not a method for achieving accuracy with minimal labeled data.

112
MCQmedium

A logistics company needs to automatically read handwritten addresses from package labels using cameras on a conveyor belt. The handwriting varies greatly in style, size, and orientation. Which Azure Computer Vision capability should they use?

A.Image Analysis (describing the image content)
B.OCR (Read API)
C.Face API
D.Custom Vision
AnswerB

The Read API is a specialized OCR subservice within Azure AI Vision, optimized to extract both printed and handwritten text from images and documents. It returns structured results with line-level and word-level bounding boxes, confidence scores, and recognized text, making it ideal for reading individual addresses on packages or letters. Because it explicitly supports handwriting and handles varying scripts and layouts, it is the correct Azure service for automatically reading handwritten addresses.

Why this answer

The OCR (Read API) is specifically designed to extract text from images, including handwritten text, and is optimized for varied styles, sizes, and orientations. Unlike standard OCR, the Read API uses deep-learning models to handle unstructured documents and real-world scenarios like package labels on a conveyor belt.

Exam trap

The trap here is that candidates confuse the general-purpose OCR (Read API) with Image Analysis, which can detect printed text in some cases but is not designed for handwritten or irregular text extraction.

How to eliminate wrong answers

Option A is wrong because Image Analysis describes the content of an image (objects, scenes, tags) but does not extract text, especially handwritten text. Option C is wrong because Face API is dedicated to detecting, recognizing, and analyzing human faces, not text. Option D is wrong because Custom Vision is used to train custom image classifiers or object detectors on specific visual features, not for general-purpose text extraction from varied handwriting.

113
MCQeasy

A parking management company uses cameras at the entrance and exit of a lot. They need to automatically read the license plate numbers of each car as it enters and exits. Which Azure Computer Vision capability is specifically designed for this task?

A.Optical Character Recognition (OCR)
B.Object detection
C.Image classification
D.Facial recognition
AnswerA

OCR (Optical Character Recognition) is a purpose-built AI capability in Azure AI Vision that extracts printed and handwritten text from images, including the alphanumeric characters on a vehicle's license plate. The Read API pipeline detects text regions, classifies each character, and returns the string in a structured response, so it can identify the plate number accurately without any custom model training. Because the license plate is literally text, OCR is the correct and most efficient service for this task.

Why this answer

Optical Character Recognition (OCR) is the Azure Computer Vision capability specifically designed to extract printed or handwritten text from images, including license plate numbers. In this scenario, the cameras capture images of cars entering and exiting, and OCR processes those images to read the alphanumeric characters on the license plates. This is the exact use case for OCR, as it can handle varied fonts, angles, and lighting conditions common in parking lot environments.

Exam trap

The trap here is that candidates often confuse object detection with OCR, thinking that detecting a license plate as an object is sufficient, but OCR is required to actually read the alphanumeric text on the plate.

Why the other options are wrong

B

Object detection identifies and locates objects in an image (e.g., cars, pedestrians), but it does not read text. The task requires reading license plate numbers, which is a text extraction task, not object localization.

C

Image classification assigns a single label to an entire image (e.g., 'car'), but cannot extract specific text like license plate numbers from the image.

D

Facial recognition is designed to identify or verify individuals based on facial features, not to read text or alphanumeric characters on license plates.

114
MCQmedium

A transportation company wants to automatically identify whether an image contains a car, a truck, or a motorcycle. The system should output a single label for the entire image. Which computer vision capability in Azure should they use?

A.Object detection
B.Image classification
C.Optical Character Recognition (OCR)
D.Semantic segmentation
AnswerB

Image classification is the correct choice because it maps an entire input image to a single semantic label, such as 'delivery truck' or 'sedan', by evaluating the dominant visual features. The model is trained on labeled vehicle photos and outputs a probability distribution over the possible vehicle types, letting the transportation company quickly determine whether an image shows a particular category. This aligns directly with the requirement to identify the vehicle type without needing to localize objects or annotate individual pixels.

Why this answer

Image classification assigns a single label to an entire image based on its dominant content. Since the requirement is to output one label (car, truck, or motorcycle) per image, this maps directly to Azure's Custom Vision image classification capability, which trains a model to categorize whole images into predefined classes.

Exam trap

The trap here is that candidates confuse object detection (which finds and labels multiple objects) with image classification (which labels the whole image), especially when the question mentions multiple vehicle types, leading them to incorrectly choose object detection.

Why the other options are wrong

A

Object detection identifies and localizes multiple objects within an image with bounding boxes, but the question requires a single label for the entire image, not multiple labels or locations.

C

OCR is designed to extract text from images, not to classify the type of vehicle (car, truck, motorcycle) in an image. The question requires identifying the object category for the entire image, which is image classification, not text recognition.

D

Semantic segmentation assigns a label to every pixel in the image, not a single label for the entire image. The requirement is to output one label per image, which is image classification.

115
MCQeasy

What is the Azure AI Face service's 'liveness detection' feature used for?

A.Detecting whether a person is alive based on their vital signs
B.Determining whether a face is from a live person or a spoofing attempt (photo/video/mask)
C.Counting how many people are in a live video stream
D.Monitoring whether a person remains present during a video call
AnswerB

Liveness detection prevents authentication spoofing attacks by verifying the face is from a real, live person present at the camera.

Why this answer

Azure AI Face's liveness detection is specifically designed to differentiate between a real, live human face and spoofing artifacts such as printed photos, video replays, or 3D masks. It analyzes subtle cues like micro-movements, texture, and depth to verify the presence of a living person, preventing unauthorized access in facial recognition systems.

Exam trap

The trap here is that candidates confuse liveness detection with general presence detection or vital sign monitoring, leading them to choose options A or D, which describe unrelated features from other Azure services.

How to eliminate wrong answers

Option A is wrong because liveness detection does not measure vital signs like heart rate or blood pressure; it relies on visual cues to assess liveness, not biometric health indicators. Option C is wrong because counting people in a live video stream is a separate capability of the Azure Video Indexer or Computer Vision service, not a function of Face liveness detection. Option D is wrong because monitoring whether a person remains present during a video call is a feature of Azure Communication Services or presence detection, not the Face service's liveness detection, which focuses on spoof prevention at the moment of capture.

116
MCQeasy

A logistics company receives thousands of handwritten shipping labels daily. They need an automated solution to extract the destination address, sender name, and package weight from these labels. Which prebuilt Azure Computer Vision capability should they use?

A.Optical Character Recognition (OCR)
B.Object detection
C.Image classification
D.Facial recognition
AnswerA

OCR extracts text (including handwriting) from images, perfect for reading shipping labels.

Why this answer

Azure Computer Vision's Optical Character Recognition (OCR) API is specifically designed to extract printed or handwritten text from images. In this scenario, the handwritten shipping labels contain textual data (destination address, sender name, package weight), and OCR can read and digitize that text for automated processing. The other options address different visual tasks—object detection, classification, or facial recognition—none of which extract text content.

Exam trap

The trap here is that candidates may confuse OCR with object detection, thinking that 'extracting' information from an image is the same as identifying objects, but OCR is the only service that reads text characters from images.

Why the other options are wrong

B

Object detection identifies and locates objects within an image, but it cannot extract text content like addresses or names. The requirement is to read handwritten text, which is a text extraction task, not object localization.

C

Image classification assigns a single label to an entire image, but the task requires extracting multiple specific text fields (address, name, weight) from handwritten labels, which OCR is designed for.

D

Facial recognition is designed to identify or verify individuals from images, not to extract text or structured data like addresses, names, or weights from handwritten labels.

117
MCQmedium

A retail store uses ceiling-mounted cameras to analyze customer traffic flow. They need to detect when a person enters a specific aisle and determine the direction they are walking. Which Azure Computer Vision capability should they use?

A.Image Analysis dense captioning
B.Facial recognition
C.People counting (Spatial Analysis)
D.Optical Character Recognition (OCR)
AnswerC

People counting via Spatial Analysis is an Azure Computer Vision capability specifically designed to detect and track individuals in a video stream, providing counts of people entering, exiting, or dwelling in a given zone. It uses person detection and cross-frame tracking algorithms to follow the same individual across consecutive frames, enabling calculation of movement direction and flow patterns. This directly matches the retail store's need to analyze customer movement using ceiling-mounted cameras, offering actionable metrics like queue length, wait time, and foot-traffic routes without identifying individuals.

Why this answer

Spatial Analysis, part of Azure Computer Vision, uses ceiling-mounted cameras to track people's movement and direction in a physical space. It specifically provides people counting and trajectory analysis, making it ideal for detecting when a person enters an aisle and determining their walking direction.

Exam trap

The trap here is that candidates may confuse general image analysis or facial recognition with the specialized spatial tracking capability, not realizing that Spatial Analysis is the only Azure service designed for real-time people counting and direction detection in physical spaces.

How to eliminate wrong answers

Option A is wrong because Image Analysis dense captioning generates descriptive captions for images, not real-time spatial tracking of people's movement. Option B is wrong because Facial recognition identifies or verifies individuals by their face, not tracking movement or direction in a physical space. Option D is wrong because Optical Character Recognition (OCR) extracts text from images, not people detection or motion analysis.

118
MCQmedium

What is 'product recognition' in Azure AI Vision for retail scenarios?

A.Scanning product barcodes to look up inventory information
B.Identifying retail products and checking shelf placement compliance using computer vision
C.Generating product descriptions from images for e-commerce listings
D.Detecting counterfeit or damaged products in a manufacturing quality line
AnswerB

This is the correct answer because product recognition in Azure AI (e.g., Custom Vision or Azure AI Vision Image Analysis) is designed to detect and label retail products from shelf images, allowing automated assessment of planogram compliance. The model identifies each product by its visual features and can compare detected placement against the expected layout, indicating whether items are out of stock, misaligned, or incorrectly placed. This directly matches the scenario of using computer vision for retail product identification and shelf placement verification.

Why this answer

Product recognition in Azure AI Vision for retail scenarios is specifically designed to identify retail products and check shelf placement compliance using computer vision. It uses object detection and image analysis to recognize products in images or video streams, then compares their placement against a predefined planogram to ensure items are correctly stocked and positioned. This capability helps retailers automate inventory management and optimize shelf layouts.

Exam trap

The trap here is that candidates confuse product recognition with general object detection or image tagging, but the exam specifically tests the retail-focused use case of identifying products and verifying shelf compliance against a planogram.

How to eliminate wrong answers

Option A is wrong because scanning product barcodes to look up inventory information relies on barcode scanning technology, not computer vision-based product recognition; Azure AI Vision product recognition identifies products visually without requiring barcodes. Option C is wrong because generating product descriptions from images for e-commerce listings is a feature of Azure AI Vision's image captioning or content moderation, not the specialized product recognition API for retail. Option D is wrong because detecting counterfeit or damaged products in a manufacturing quality line falls under anomaly detection or custom vision models, not the prebuilt product recognition capability designed for retail shelf analysis.

119
MCQeasy

A real estate company wants to create an application that automatically generates floor plans from photographs of rooms. The application needs to identify and delineate every pixel in the image that corresponds to walls, doors, windows, and furniture. Which Azure Computer Vision capability should the company use?

A.Object Detection
B.Semantic Segmentation
C.Image Classification
D.Optical Character Recognition (OCR)
AnswerB

Semantic Segmentation labels every pixel of the input image with a class such as wall, door, window, or furniture, producing a dense, pixel-aligned mask. This per-pixel classification is what lets the app reconstruct the precise boundaries and spatial layout needed to draw a floor plan. It goes beyond coarse object locations because it preserves irregular shapes, wall thicknesses, and doorway openings with pixel-level accuracy.

Why this answer

Semantic segmentation is the correct choice because it classifies every pixel in an image into predefined categories (e.g., walls, doors, windows, furniture), producing a pixel-level mask. This is exactly what the application needs to delineate each structural element and object in the room photograph, enabling accurate floor plan generation.

Exam trap

The trap here is that candidates confuse object detection (bounding boxes) with semantic segmentation (pixel-level masks), mistakenly thinking detection can delineate walls and doors, but only segmentation provides the per-pixel classification required for floor plan generation.

Why the other options are wrong

A

Object Detection identifies and locates objects within an image using bounding boxes, but it does not classify every pixel. The requirement to delineate every pixel for walls, doors, windows, and furniture demands pixel-level classification, which is provided by Semantic Segmentation, not Object Detection.

C

Image classification assigns a single label to the entire image, but the requirement is to delineate every pixel corresponding to walls, doors, windows, and furniture, which requires pixel-level segmentation.

D

OCR extracts text from images, but the requirement is to identify and delineate every pixel corresponding to walls, doors, windows, and furniture, which is a pixel-level classification task, not text recognition.

120
MCQmedium

What is 'depth estimation' in computer vision and what are its applications?

A.Measuring the depth of colour in an image (number of bits per pixel)
B.Inferring the distance of objects from the camera to produce a spatial depth map
C.Analysing how deeply a subject is embedded in a complex background scene
D.Determining how much detail is captured in a photograph based on lens quality
AnswerB

Depth estimation produces per-pixel distance measurements — enabling obstacle avoidance, 3D reconstruction, and AR scene understanding.

Why this answer

Depth estimation is a computer vision technique that infers the distance of objects from the camera, producing a spatial depth map where each pixel represents a distance value. This is commonly achieved using stereo vision (two cameras) or monocular depth estimation (single camera with deep learning models). It is a core feature of Azure Computer Vision's spatial analysis capabilities, enabling applications like augmented reality, autonomous navigation, and 3D scene reconstruction.

Exam trap

The trap here is that candidates confuse 'depth estimation' with image quality metrics (color depth or lens resolution) or with scene understanding terms like 'depth of field' or 'background embedding', rather than recognizing it as a spatial distance inference task.

How to eliminate wrong answers

Option A is wrong because it describes color depth (bits per pixel), which is a property of image encoding, not a computer vision technique for measuring spatial distance. Option C is wrong because it confuses depth estimation with semantic segmentation or object detection in cluttered scenes; 'depth' here refers to physical distance, not how deeply a subject is embedded in a background. Option D is wrong because it refers to photographic detail determined by lens quality (optical resolution), which is unrelated to the algorithmic inference of object distances from camera data.

121
Matchingmedium

Match each Azure AI service to its regional availability constraint.

Drag a concept onto its matching description — or click a concept then click the description.

Concepts
Matches

Limited to certain regions due to demand

Available in many regions

Some voices only in specific regions

Available globally

Available in most regions

Why these pairings

Regional availability for Azure AI services varies: Cognitive Services have feature-specific limitations, Machine Learning is broadly available but preview features may be restricted, and Bot Service is widely deployed except in some sovereign clouds.

122
MCQeasy

A government agency needs to digitize thousands of handwritten application forms so that the text can be searched and processed. Which Azure Computer Vision capability should they use?

A.Object detection
B.Optical Character Recognition (Read API)
C.Image classification
D.Face detection
AnswerB

The Read API in Azure Cognitive Services is an optical character recognition (OCR) service specifically designed to extract printed and handwritten text from images, PDFs, and scanned documents. It uses deep neural networks to identify individual words and lines, returning the text content along with bounding boxes and a confidence score for each element. For a government agency needing to digitize thousands of handwritten notes, the Read API is the correct choice because it transcribes handwriting into machine-readable text.

Why this answer

Optical Character Recognition (Read API), because the agency needs to extract printed or handwritten text from images of application forms and make it searchable and processable. The Read API is specifically designed for this purpose, handling both printed and handwritten text, and is part of Azure Computer Vision's OCR capabilities.

Exam trap

The trap here is that candidates may confuse image classification (which categorizes the whole image) with OCR, not realizing that only OCR extracts actual text content for searchability.

How to eliminate wrong answers

Option A is wrong because object detection identifies and locates objects (e.g., cars, animals) within an image, not text characters, so it cannot digitize handwritten text. Option C is wrong because image classification assigns a single label or category to an entire image (e.g., 'form' or 'document'), but it does not extract or recognize individual text characters for search and processing. Option D is wrong because face detection identifies human faces in images, analyzing attributes like age or emotion, and has no capability to read or digitize text.

123
MCQmedium

What is 'dense captioning' in Azure AI Vision v4.0?

A.Generating a very long and detailed caption for the entire image
B.Generating multiple region-specific captions each with a bounding box for different image areas
C.Adding caption text overlaid on top of the image like movie subtitles
D.Captions that include technical details like camera settings and lighting conditions
AnswerB

Dense captioning in Azure AI Vision detects objects or regions of interest within an image and generates a natural-language caption for each region, returning both the caption text and a bounding box indicating where that region is located. For example, an image with a dog and a bicycle would yield separate captions for the dog and the bicycle, each with its own bounding box coordinates. This region-level granularity provides richer context than a single whole-image caption and enables applications like accessibility, image search, and content analysis to reference specific parts of an image.

Why this answer

Dense captioning in Azure AI Vision v4.0 goes beyond describing the entire image; it identifies multiple distinct regions within the image and generates a separate caption for each region, along with a bounding box that pinpoints its location. This allows for granular understanding of complex scenes, such as recognizing 'a dog on a couch' and 'a lamp on a table' as separate, localized descriptions.

Exam trap

The trap here is that candidates confuse dense captioning with standard image captioning (Option A), assuming 'dense' simply means a longer or more detailed single caption, rather than recognizing it as a region-specific, multi-caption feature with bounding boxes.

How to eliminate wrong answers

Option A is wrong because dense captioning does not produce a single, very long caption for the whole image; that is the role of standard image captioning, not dense captioning. Option C is wrong because dense captioning does not overlay text onto the image like subtitles; it returns bounding box coordinates and captions as metadata, not as a visual overlay. Option D is wrong because dense captioning focuses on describing the content and context of image regions, not technical metadata like camera settings or lighting conditions, which are unrelated to the feature's purpose.

124
MCQhard

A manufacturing company wants to use Azure AI to detect surface defects on metal parts. The team has a small set of labeled images of defective and non-defective parts, and images will be taken under various lighting conditions and angles. They need a solution that can leverage a pre-trained model and adapt it to their specific defect types with minimal new training data. Which approach should they take?

A.A. Use Custom Vision to train a classification or object detection model with transfer learning
B.B. Use the Optical Character Recognition (OCR) API
C.C. Use the Describe Image API (Image Captioning)
D.D. Use the Face API
AnswerA

Custom Vision is purpose-built for custom visual inspection: it applies transfer learning from a deep convolutional neural network pre-trained on generic image datasets (e.g., ResNet variants) to your specific defect photos. You only need to provide labeled examples of surface defects and acceptable parts; the service fine-tunes the model to classify each image or localize defects with bounding boxes via object detection. This is exactly the workflow required for detecting scratches, dents, or discoloration on metal surfaces, and it can be done with a relatively small dataset.

Why this answer

Custom Vision allows you to use transfer learning, which starts from a pre-trained model and fine-tunes it on your small labeled dataset of defective and non-defective parts. This approach is ideal when you have limited training data and need to adapt the model to specific defect types under varying lighting and angles, as Custom Vision supports both classification and object detection for surface defects.

Exam trap

The trap here is that candidates may confuse the general-purpose image analysis APIs (OCR, captioning, face) with Custom Vision's specialized ability to train custom models using transfer learning, assuming any Azure AI service can be adapted to a custom task without understanding the underlying training mechanism.

Why the other options are wrong

B

The OCR API extracts text from images, not surface defects on metal parts, which are visual patterns unrelated to text.

C

The Describe Image API generates captions describing the overall content of an image, but it cannot detect or classify specific surface defects on metal parts. It lacks the ability to learn new defect types from labeled training data.

D

The Face API is designed for detecting and analyzing human faces, not for detecting surface defects on metal parts. It cannot identify manufacturing defects.

125
MCQmedium

What is 'video indexer' (Azure Video Indexer) and what insights does it extract?

A.A tool that compresses videos to reduce storage costs in Azure Blob Storage
B.A service that extracts transcripts, faces, speakers, topics, and scenes from video content
C.A database index that speeds up queries on video metadata tables
D.A tool for creating video presentations from a series of images and text
AnswerB

Video Indexer is a cloud service that uses pre-built AI models to analyze both audio and video, extracting a wide range of insights. These include speech-to-text transcripts with timestamps, face detection and identification, speaker diarization, topic extraction, and scene segmentation. The output is a structured, searchable metadata file that enables content discovery, accessibility, and automated metadata generation for media workflows.

Why this answer

Azure Video Indexer is a cloud-based service that uses AI to analyze video and audio content. It extracts rich insights such as transcripts (speech-to-text), identified faces, speaker diarization, topics, scenes, and even sentiment, making it a comprehensive media intelligence tool rather than a storage or indexing utility.

Exam trap

The trap here is that candidates confuse Azure Video Indexer with a storage or database optimization tool, because the word 'indexer' misleadingly suggests indexing for performance, whereas it is actually an AI-based video analysis service for extracting metadata and insights.

How to eliminate wrong answers

Option A is wrong because Azure Video Indexer does not compress videos; compression for storage is handled by Azure Media Services or Blob Storage lifecycle policies, not by Video Indexer. Option C is wrong because Video Indexer is not a database index; it is an AI service that analyzes video content, while database indexing for metadata is a separate concept in Azure Cosmos DB or SQL. Option D is wrong because creating video presentations from images and text is a function of tools like Azure Video Analyzer for Media or PowerPoint, not the core purpose of Video Indexer, which focuses on extracting insights from existing videos.

126
MCQmedium

What is object detection, and how does it differ from image classification?

A.Object detection identifies what is in an image; image classification also identifies where objects are located
B.Object detection identifies and locates multiple objects with bounding boxes; image classification labels the whole image
C.Object detection and image classification are the same task
D.Object detection is used only for face recognition
AnswerB

This option is correct because it captures the core difference between the tasks. Object detection returns multiple predictions, each consisting of a class label and a bounding box that localizes the object, allowing a single image to contain many detected objects of different categories. Image classification is a global decision that maps the whole image to one label from a fixed set, with no attempt to locate or separate individual objects.

Why this answer

Object detection goes beyond image classification by not only identifying what objects are present in an image but also localizing each object with a bounding box. Image classification assigns a single label to the entire image, whereas object detection can handle multiple objects of different classes simultaneously. This makes object detection suitable for tasks like counting objects or tracking their positions.

Exam trap

The trap here is that candidates often confuse the terms 'classification' and 'detection' by thinking detection only identifies objects without localization, or they assume object detection is a subset of classification—when in fact detection includes both identification and localization.

How to eliminate wrong answers

Option A is wrong because it reverses the definitions: image classification labels the whole image, not the location of objects, while object detection identifies both what and where. Option C is wrong because object detection and image classification are distinct tasks with different outputs—classification outputs a single label, detection outputs multiple labels with coordinates. Option D is wrong because object detection is not limited to face recognition; it is used for a wide range of applications such as vehicle detection, defect inspection, and medical imaging.

127
MCQhard

A logistics company uses drone imagery to monitor a busy container yard. They need to count the exact number of individual shipping containers, even when containers are partially stacked on top of each other or overlapping in the image. Which Azure Computer Vision capability should they choose to achieve the most accurate individual object separation?

A.Image classification
B.Object detection
C.Instance segmentation
D.Semantic segmentation
AnswerC

Instance segmentation is the correct choice because it performs pixel-level classification that distinguishes each individual object instance, not just object classes. The model outputs a segmentation mask for every detected object separately, so even when containers overlap or touch in busy drone imagery, each container is assigned its own unique mask. Counting is then a simple matter of counting the number of distinct instance masks, which yields the accurate count the logistics company needs.

Why this answer

Instance segmentation is the correct choice because it not only detects each individual object in an image but also generates a pixel-level mask for each instance, allowing the model to distinguish between overlapping or stacked objects like shipping containers. This capability provides the most accurate separation of individual containers, even when they partially occlude each other, by assigning unique masks to each instance rather than grouping all containers into a single class.

Exam trap

The trap here is that candidates confuse semantic segmentation (which labels all pixels of a class as one group) with instance segmentation (which separates individual objects), leading them to pick D when they need per-object counting.

Why the other options are wrong

A

Image classification assigns a single label to the entire image, so it cannot count or separate individual objects, especially overlapping containers.

B

Object detection provides bounding boxes around objects, but it cannot separate individual instances when containers overlap or are stacked, as it treats overlapping detections as separate objects without pixel-level distinction.

D

Semantic segmentation classifies each pixel into a category (e.g., 'container'), but does not distinguish between individual objects of the same class. Overlapping containers would be merged into a single blob, preventing accurate counting of individual containers.

128
MCQeasy

A company wants to automate the processing of expense reports by extracting printed text from images of receipts. Which Azure Computer Vision capability should they use?

A.Object detection
B.OCR (Read API)
C.Semantic segmentation
D.Image Analysis (description generation)
AnswerB

Correct. The Read API (part of Azure AI Vision) is specifically designed to extract printed and handwritten text from images and PDFs, returning each text string along with bounding boxes and confidence scores. It performs optical character recognition (OCR) at the character, word, and line level, making it the appropriate service when the goal is to digitize the printed information on expense reports, such as line items, totals, and dates. This is the core step in automating expense report extraction.

Why this answer

The OCR (Read API) is the correct Azure Computer Vision capability for extracting printed text from images of receipts. It is specifically designed to detect and extract text from images and documents, supporting both printed and handwritten text, making it ideal for automating expense report processing.

Exam trap

The trap here is that candidates may confuse object detection (which finds objects like a receipt) with OCR (which reads the text on the receipt), leading them to select object detection for a text extraction task.

How to eliminate wrong answers

Option A is wrong because object detection identifies and locates objects within an image (e.g., a receipt in a photo) but does not extract the printed text from those objects. Option C is wrong because semantic segmentation assigns pixel-level labels to image regions (e.g., separating receipt from background) but does not perform text extraction. Option D is wrong because Image Analysis (description generation) produces human-readable captions describing the image content, not extracting specific text characters.

129
MCQmedium

A logistics company wants to automatically extract the tracking numbers, delivery addresses, and sender names from scanned shipping labels. Which prebuilt Azure Computer Vision capability should they use?

A.Object Detection
B.Optical Character Recognition (OCR)
C.Image Classification
D.Face Detection
AnswerB

Optical Character Recognition (OCR) is the correct choice because it is specifically designed to digitize printed or handwritten text from images. Azure's Computer Vision OCR/Read API detects text regions, recognizes characters, and returns a machine-readable string, enabling automatic extraction of tracking numbers from shipping labels without manual data entry. This makes it the only option that directly addresses the requirement of reading text from an image.

Why this answer

(Optical Character Recognition, or OCR) is correct because the task requires extracting text (tracking numbers, addresses, sender names) from scanned images. Azure Computer Vision's OCR API is specifically designed to detect and read printed or handwritten text from images, returning the text content along with bounding boxes. Object Detection, Image Classification, and Face Detection do not extract text, making OCR the appropriate prebuilt capability.

Exam trap

The trap here is that candidates may confuse Object Detection (which finds objects) with OCR (which finds text), or assume Image Classification can read text, when in fact only OCR is designed for text extraction from images.

Why the other options are wrong

A

Object Detection identifies and locates objects within an image (e.g., boxes, vehicles), but it cannot read or extract text like tracking numbers or addresses from labels.

C

Image Classification assigns a single label to an entire image (e.g., 'shipping label'), but it cannot extract specific text fields like tracking numbers or addresses.

D

Face detection identifies human faces in images, but the question requires extracting text (tracking numbers, addresses, names) from shipping labels, which is a text extraction task, not face detection.

130
MCQmedium

What is the Azure AI Custom Vision service's 'compact' domain used for?

A.Training models on a compact (small) dataset with fewer than 50 images
B.Producing exportable models optimized for deployment on edge devices with limited compute
C.Creating more compact API responses with less metadata
D.Training models that use less storage in Azure blob containers
AnswerB

Compact domains are a family of Custom Vision model architectures specifically designed for export to lightweight inference formats such as ONNX, TensorFlow Lite, and CoreML. These models are significantly smaller and require fewer compute resources, allowing them to run offline directly on edge devices like cameras, drones, or IoT hardware with limited memory and CPU. This is the intended purpose of compact domains: trade a bit of accuracy for a deployment-ready model that performs local, low-latency inference without a cloud round-trip.

Why this answer

The Azure AI Custom Vision service's 'compact' domain is specifically designed to produce models that can be exported to formats like TensorFlow, ONNX, or CoreML for deployment on edge devices with limited compute, memory, and power. This domain trades some accuracy for a smaller model footprint, enabling real-time inference on devices such as cameras, drones, or IoT gateways.

Exam trap

The trap here is that candidates confuse 'compact' with 'small dataset' or 'reduced API output', when in fact it specifically refers to the model's exportability and optimization for offline edge deployment.

How to eliminate wrong answers

Option A is wrong because the 'compact' domain refers to the model architecture and exportability, not the dataset size; Custom Vision can train on datasets of any size, and the minimum recommended is typically 15-30 images per class, not 50. Option C is wrong because the 'compact' domain has no effect on API response metadata; API response size is controlled by parameters like `maxNumPredictions` or `iterationId`, not the training domain. Option D is wrong because the 'compact' domain does not affect storage in Azure blob containers; storage consumption depends on the number of training images and iterations, not the domain type.

131
MCQmedium

A library wants to automatically generate descriptive alt text for hundreds of historical photographs in their digital archive. For each photo, the system should produce a natural-language description that includes objects present (e.g., 'a horse', 'a carriage'), the action being performed (e.g., 'pulling'), and the scene type (e.g., 'city street'). Which Azure Computer Vision capability should they use?

A.Image Analysis (Describe image)
B.Optical Character Recognition (OCR)
C.Object detection
D.Face detection
AnswerA

The describe feature of Image Analysis creates natural-language captions summarizing the content of an image, including objects and actions.

Why this answer

The Image Analysis 'Describe image' capability is designed to generate human-readable captions that summarize the content of an image, including objects, actions, and scene context. This directly matches the library's requirement to produce natural-language descriptions for historical photographs, as it uses a combination of object detection and scene understanding to output a full sentence.

Exam trap

Microsoft often tests the distinction between 'Describe image' (which outputs a full sentence) and 'Object detection' (which only outputs labels and bounding boxes), causing candidates to confuse a component feature with the end-to-end captioning capability.

How to eliminate wrong answers

Option B (Optical Character Recognition) is wrong because it extracts text from images, not objects, actions, or scene types; it would only help if the photos contained written captions. Option C (Object detection) is wrong because it only identifies and locates objects within an image (e.g., bounding boxes and labels) but does not generate a natural-language description or infer actions or scene types. Option D (Face detection) is wrong because it specifically identifies human faces and their attributes (e.g., age, emotion) and does not describe objects, actions, or broader scene context.

132
MCQmedium

A retail company wants to build a system that can verify the identity of customers by comparing their live photo with an uploaded government-issued ID photo. Which Azure Computer Vision service should they use to perform the face comparison?

A.Azure Computer Vision - Image Analysis
B.Azure Face API
C.Azure Custom Vision
D.Azure Form Recognizer
AnswerB

Azure Face API is the correct choice because it provides a dedicated face verification endpoint that performs 1:1 matching. The service detects facial landmarks in a live photo, extracts a unique face embedding, and compares it against a reference photo (such as an ID document) to compute a similarity score against a configurable confidence threshold. This is precisely the identity-verification scenario the retail company needs.

Why this answer

The Azure Face API is specifically designed for face detection, verification, and comparison tasks. It can compare a live photo against a reference photo (such as a government-issued ID) using its 'Verify' operation, which returns a confidence score indicating whether the two faces belong to the same person. This makes it the correct choice for identity verification scenarios.

Exam trap

The trap here is that candidates may confuse the general-purpose Azure Computer Vision - Image Analysis service with the specialized Face API, assuming that any computer vision service can perform face comparison, when in fact only the Face API provides dedicated face verification functionality.

Why the other options are wrong

A

Azure Computer Vision - Image Analysis can extract tags, descriptions, and objects from images, but it does not provide face comparison or verification capabilities. The question specifically requires comparing a live photo with an ID photo, which is a face verification task that only the Face API supports.

C

Azure Custom Vision is designed for training custom image classification or object detection models, not for pre-built face verification tasks like comparing a live photo to an ID photo. The question requires a ready-to-use face comparison service, which Custom Vision does not provide out of the box.

D

Azure Form Recognizer is designed to extract text and structure from documents (e.g., forms, invoices), not to compare faces or verify identity against a photo.

133
MCQmedium

What is Optical Character Recognition (OCR) and which Azure AI service provides it?

A.Speech recognition; provided by Azure AI Speech
B.Technology that extracts text from images; provided by Azure AI Vision
C.Language translation; provided by Azure AI Translator
D.Handwriting analysis for personality assessment; provided by Azure AI Face
AnswerB

Optical Character Recognition (OCR) is the technology that extracts text from images, and in Azure it is provided by the Azure AI Vision service through the Read API. The Read API analyzes images, PDFs, and TIFF files to detect text regions, then returns the recognized words, their bounding boxes, and confidence scores. It supports both printed and handwritten text, making it the direct answer to the question's description of extracting text from images. Unlike translation or speech processing, OCR operates purely on visual input to produce machine-readable text.

Why this answer

Optical Character Recognition (OCR) is the technology that extracts printed or handwritten text from images, such as scanned documents or photos, and converts it into machine-readable text. This capability is provided by the Azure AI Vision service, specifically through its Read API, which can process both printed and handwritten text from a variety of image formats.

Exam trap

The trap here is that candidates often confuse OCR with speech recognition or translation, but the key distinction is that OCR specifically extracts text from visual sources like images, not audio or language conversion.

How to eliminate wrong answers

Option A is wrong because speech recognition converts spoken language into text, not text from images, and is provided by Azure AI Speech, not Azure AI Vision. Option C is wrong because language translation converts text from one language to another, not extracting text from images, and is provided by Azure AI Translator. Option D is wrong because handwriting analysis for personality assessment is not a standard OCR capability; Azure AI Face is used for facial recognition and analysis, not text extraction.

134
MCQmedium

What is the Responsible AI principle most relevant to Azure AI Face's attribute prediction features?

A.Reliability — ensuring Face API returns consistent results across all images
B.Fairness and privacy — preventing bias across demographic groups and avoiding surveillance misuse
C.Inclusiveness — ensuring Face API works for users of all abilities
D.Transparency — documenting how Face API determines attribute values
AnswerB

Fairness and privacy are the correct responsible AI concerns because Microsoft explicitly cited research showing facial attribute classifiers like gender and age had higher error rates for women and people with darker skin, which violates fairness. Privacy is equally central because attributes such as emotion and age can be used for intrusive surveillance, profiling, and non-consensual inference about individuals. In June 2022, Microsoft restricted these Face API capabilities specifically to reduce those harms.

Why this answer

Azure AI Face's attribute prediction features (e.g., age, emotion, hair color) have been restricted or retired due to concerns about demographic bias and potential misuse for surveillance. The Responsible AI principle of Fairness and privacy directly addresses these issues by requiring that AI systems avoid bias across demographic groups and prevent applications like unauthorized tracking or profiling, which is why this principle is most relevant.

Exam trap

The trap here is that candidates may confuse Transparency (documentation) with the ethical requirement to actually remove biased or privacy-invasive features, not just explain them.

How to eliminate wrong answers

Option A is wrong because Reliability focuses on consistent performance and error handling, not on the ethical concerns of bias or privacy that led to the restriction of Face API attributes. Option C is wrong because Inclusiveness ensures the system works for users of all abilities (e.g., accessibility features), which is unrelated to the demographic bias and surveillance risks inherent in attribute prediction. Option D is wrong because Transparency involves documenting how the system works, but the core issue with Face API attributes is not a lack of documentation—it is the ethical violation of fairness and privacy that caused Microsoft to retire these features.

135
MCQmedium

What is 'people counting' in Azure AI Vision spatial analysis?

A.Counting how many different people have used a digital service over a time period
B.Using video AI to count people in zones for occupancy, footfall, and queue management
C.Identifying and counting employees who have completed mandatory training
D.Counting the number of faces detected in a photo album for tagging purposes
AnswerB

People counting applies spatial analysis to video — enabling real-time occupancy monitoring and footfall analytics.

Why this answer

People counting in Azure AI Vision spatial analysis uses video AI to detect and track individuals within defined zones, enabling accurate measurement of occupancy, footfall, and queue lengths. This is a core computer vision capability that processes live or recorded video streams to count people in real time, supporting retail, workplace, and public safety scenarios.

Exam trap

The trap here is that candidates confuse 'people counting' with generic face detection or user analytics, but Azure AI Vision spatial analysis specifically requires video input and spatial zone configuration, not static images or digital logs.

How to eliminate wrong answers

Option A is wrong because it describes digital service user analytics, not video-based spatial analysis; Azure AI Vision people counting operates on camera feeds, not digital service logs. Option C is wrong because it refers to HR training compliance tracking, which is unrelated to computer vision and spatial analysis. Option D is wrong because it describes face detection in static images for photo tagging, whereas people counting in spatial analysis focuses on counting individuals in video zones over time, not identifying or tagging faces.

136
MCQeasy

What is 'invoice analysis' in Azure AI Document Intelligence?

A.Analysing invoice data to predict future payment defaults by customers
B.Extracting vendor, customer, line items, dates, and totals from vendor invoice images
C.Generating invoices from pricing data stored in a database
D.Comparing invoice totals against purchase orders to detect discrepancies
AnswerB

This is precisely what invoice analysis means in the context of Azure AI Document Intelligence. The prebuilt invoice model uses OCR and trained field extraction to turn scanned or digital vendor invoices into structured JSON with normalized fields like VendorName, CustomerName, InvoiceDate, and line item details, along with confidence scores. This conversion from document to structured output is the defining characteristic of an invoice analysis solution.

Why this answer

Invoice analysis in Azure AI Document Intelligence is a prebuilt model specifically designed to extract structured data from vendor invoices. It uses optical character recognition (OCR) and deep learning to identify and extract key fields such as vendor name, customer name, line items, invoice date, due date, and totals. This enables automated data entry and downstream processing without manual effort.

Exam trap

The trap here is that candidates confuse 'invoice analysis' (extracting data from invoice images) with downstream business processes like fraud detection, invoice generation, or reconciliation, which are not part of the Document Intelligence service's prebuilt capabilities.

How to eliminate wrong answers

Option A is wrong because predicting payment defaults is a predictive analytics or machine learning task, not a document extraction capability of Azure AI Document Intelligence. Option C is wrong because generating invoices from database data is a business logic or application development task, not a document analysis or extraction feature. Option D is wrong because comparing invoice totals against purchase orders is a reconciliation or audit process that would require additional logic or integration, not a built-in feature of the invoice analysis model.

137
MCQmedium

Which Azure AI service allows you to analyze medical images for clinical decision support?

A.Azure AI Custom Vision with medical training data
B.Azure AI Health Insights and specialized medical imaging AI
C.Azure AI Translator for medical documents
D.Azure AI Speech for dictation only
AnswerB

Azure AI Health Insights is purpose-built for healthcare workloads, bringing together capabilities such as Radiology Insights and clinical text analysis to support clinical decision-making. It integrates with medical imaging data and EHR/FHIR systems, enabling specialized analysis of imaging studies alongside other health data. This combination of healthcare domain knowledge, DICOM-aware processing, and clinical validation makes it the appropriate choice for medical imaging analysis, unlike general-purpose audio, text, or image services.

Why this answer

Azure AI Health Insights includes specialized medical imaging AI capabilities designed to analyze radiology and other medical images for clinical decision support. This service is built on domain-specific models trained on medical data, unlike general-purpose computer vision services.

Exam trap

The trap here is that candidates may assume Azure AI Custom Vision can be used for medical imaging by simply training it on medical data, but the exam expects knowledge of the dedicated, pre-built medical imaging service (Azure AI Health Insights) that is specifically designed for clinical decision support.

How to eliminate wrong answers

Option A is wrong because Azure AI Custom Vision is a general-purpose image classification and object detection service that requires custom training data; it does not come pre-trained with medical domain knowledge for clinical decision support. Option C is wrong because Azure AI Translator is a text translation service, not an image analysis service, and cannot process medical images. Option D is wrong because Azure AI Speech is for speech-to-text and text-to-speech, not image analysis, and its dictation functionality is unrelated to medical imaging.

138
MCQmedium

A beverage company uses a camera system to inspect bottles on a conveyor belt. The system must automatically identify which bottles are defective (e.g., cracked or chipped) and which are acceptable, based on the overall appearance of each bottle. The company has thousands of labeled images of bottles (defective and non-defective). Which Azure Computer Vision service should they use to train a custom model?

A.Custom Vision – Object detection
B.Custom Vision – Image classification
C.Optical Character Recognition (OCR)
D.Face API
AnswerB

Image classification in Custom Vision assigns a single label to the entire image, which is exactly the task of categorizing each bottle as defective or acceptable. The model learns from labeled photos of bottles that exhibit cracks, chips, or deformities versus intact ones, enabling a binary decision without needing to locate specific flaws. This fits the requirement that the system simply inspects bottles and flags defects.

Why this answer

The scenario requires classifying each bottle image into one of two categories (defective or acceptable) based on overall appearance. Custom Vision – Image classification is designed exactly for this: it trains a model on labeled images to predict a single label per image, making it ideal for binary or multi-class classification tasks like defect detection.

Exam trap

The trap here is that candidates confuse object detection with image classification, assuming that identifying defects requires bounding boxes, when the question only asks for overall bottle status (defective vs. acceptable) based on appearance.

Why the other options are wrong

A

The task is to classify each bottle as defective or acceptable based on overall appearance, not to locate defects within the image. Object detection would be overkill and misaligned with the requirement of a single label per bottle.

C

The question requires identifying defective vs. non-defective bottles based on overall appearance, which is a classification task, not text extraction. OCR is designed to extract text from images, not to classify objects or detect defects.

D

Face API is designed for detecting and analyzing human faces, not for inspecting bottle defects based on overall appearance.

139
MCQeasy

A warehouse uses video cameras to monitor a conveyor belt. They need to count the number of boxes passing by each hour to track throughput. Which Azure Computer Vision capability should they use?

A.Optical Character Recognition (OCR)
B.Face Detection
C.Image Classification
D.Object Detection
AnswerD

Object Detection finds and locates multiple objects in an image/video, enabling counting of boxes.

Why this answer

Object Detection is the correct capability because it can identify and locate multiple boxes within each video frame, allowing the system to count them as they move along the conveyor belt. Unlike image classification, which labels an entire image, object detection provides bounding boxes and counts for each detected object, making it ideal for real-time throughput tracking.

Exam trap

The trap here is that candidates confuse Image Classification with Object Detection, assuming that classifying an image as 'box' is sufficient, but classification cannot count multiple objects or provide their locations.

How to eliminate wrong answers

Option A is wrong because Optical Character Recognition (OCR) extracts text from images, not physical objects like boxes. Option B is wrong because Face Detection is specialized for identifying human faces, not inanimate objects such as boxes. Option C is wrong because Image Classification assigns a single label to an entire image, but cannot count or locate multiple instances of boxes within the same frame.

140
MCQhard

A robotic arm in a factory needs to pick parts from a bin. The system must identify each part and its exact outline to ensure precise grasping. Which Computer Vision capability should be used?

A.Object detection
B.Image classification
C.Semantic segmentation
D.Optical Character Recognition
AnswerC

Semantic segmentation performs dense, pixel-level labeling: every pixel in the image is assigned a class such as 'metal_part', creating a precise silhouette of each part even when parts touch or overlap. This per-pixel contour lets the robot compute the part's exact center of mass, orientation, and stable grasp points, which is exactly what a robotic arm needs when picking parts from a cluttered bin. Unlike coarse bounding boxes or whole-image labels, the mask preserves the true shape and boundary, enabling reliable 3D grasp planning.

Why this answer

Semantic segmentation is the correct capability because it classifies each pixel in an image, providing a precise outline of each part. This pixel-level classification is essential for a robotic arm to determine the exact shape and boundaries of parts for accurate grasping, unlike object detection which only provides bounding boxes.

Exam trap

The trap here is that candidates often confuse object detection (bounding boxes) with semantic segmentation (pixel-level masks), especially when the question emphasizes 'exact outline' — they may incorrectly choose object detection thinking it provides sufficient location information.

Why the other options are wrong

A

Object detection provides bounding boxes around objects but does not produce pixel-level outlines, which are required for precise grasping of irregularly shaped parts.

B

Image classification assigns a single label to the entire image, but the question requires identifying each part and its exact outline for precise grasping, which needs pixel-level segmentation.

D

Optical Character Recognition (OCR) is designed to extract text from images, not to identify parts or their outlines. The question requires identifying parts and their exact outlines for grasping, which is a segmentation task, not text recognition.

141
MCQmedium

What is 'video summarisation' in Azure Video Indexer and how does it work?

A.Generating a text transcript summary of what was said in the video
B.Automatically creating a highlight reel of the most informative video segments from a longer video
C.Compressing video file size while maintaining acceptable visual quality
D.Adding automatic chapter markers and timestamps to a video for navigation
AnswerB

Video summarisation leverages computer vision and audio analysis to detect salient events, objects, faces, and speech patterns across a long recording, scoring each segment for informativeness or novelty. The AI then selects the highest-scoring clips and assembles them into a single, shortened highlight reel that preserves the essence of the original video. This output is a new edited video file, not just metadata or a transcript, and it is the core capability described by the term 'video summarisation' in Azure Video Indexer.

Why this answer

Video summarization in Azure Video Indexer automatically creates a highlight reel by selecting the most informative and visually interesting segments from a longer video. It uses AI models to analyze visual content, audio, and scene dynamics to identify key moments, such as changes in activity, faces, or objects, and then stitches these segments into a concise summary. This is distinct from transcript generation or chapter markers, as it focuses on extracting a condensed video output rather than text or navigation aids.

Exam trap

The trap here is that candidates confuse 'video summarization' with 'transcript summarization' (Option A), because both involve summarization, but the key distinction is that video summarization outputs a video clip, not text.

How to eliminate wrong answers

Option A is wrong because generating a text transcript summary of spoken content is a separate feature called 'transcript summarization' or 'speech-to-text with summarization,' not video summarization, which produces a video output. Option C is wrong because compressing video file size while maintaining quality is a video encoding or compression task, unrelated to Azure Video Indexer's AI-driven content analysis and summarization. Option D is wrong because adding automatic chapter markers and timestamps is a feature known as 'scene segmentation' or 'chapter generation,' which provides navigation but does not create a condensed video highlight reel.

142
MCQhard

What is 'neural radiance field' (NeRF) technology and how does it relate to Azure AI Vision capabilities?

A.A technique for compressing neural network weights using magnetic fields
B.A method for learning 3D scene representations from multiple 2D photographs to enable novel view synthesis
C.A networking technology that transmits images with zero packet loss
D.A type of GPU shader program used for real-time 3D rendering in games
AnswerB

Neural Radiance Fields (NeRF) represent a scene as a continuous volumetric function, mapping a 3D position and 2D viewing direction to an emitted color and volume density. This function is encoded in a multilayer perceptron trained on multiple posed 2D photographs, and novel viewpoints are generated by ray-marching through the volume and integrating color/density along each ray. The result is photorealistic synthesis of perspectives never captured by the original camera.

Why this answer

Neural Radiance Fields (NeRF) use a neural network to learn a continuous 5D representation of a scene from a sparse set of 2D photographs, enabling the synthesis of novel views from arbitrary camera angles. This relates to Azure AI Vision capabilities because Azure's Computer Vision services can be integrated with NeRF-based models for advanced 3D reconstruction and volumetric rendering tasks, such as generating immersive 3D assets from 2D images in mixed reality or digital twin scenarios.

Exam trap

The trap here is that candidates may confuse NeRF with traditional 3D rendering techniques (like shaders or game engines) or unrelated networking concepts, rather than recognizing it as a neural 3D scene representation method for novel view synthesis.

How to eliminate wrong answers

Option A is wrong because NeRF does not involve compressing neural network weights using magnetic fields; that describes a hypothetical or unrelated concept, not a real computer vision technique. Option C is wrong because NeRF is not a networking technology; it is a 3D scene representation method, and zero packet loss is a networking reliability goal unrelated to NeRF. Option D is wrong because NeRF is not a GPU shader program for real-time game rendering; it is a neural rendering approach that typically requires offline training and inference, not real-time shader execution.

143
MCQmedium

A museum wants to automatically generate detailed descriptions of artwork for a mobile app. For each painting, the app should produce a natural-language description that includes the dominant colors, the objects present in the scene, and whether the scene is indoor or outdoor. Which Azure Computer Vision capability is best suited for this task?

A.Optical Character Recognition (OCR)
B.Image Analysis (Describe Image / Dense Captions)
C.Face API
D.Object Detection
AnswerB

The Image Analysis API, specifically its 'Describe Image' and 'Dense Captions' capabilities, uses vision-language models to generate human-readable sentences that summarize the entire image, including objects, colors, actions, and scene attributes such as indoor/outdoor setting. Dense Captions goes further by producing multiple captions for specific regions of the image, enabling richer, more detailed storytelling about each artifact or exhibit. This output directly satisfies the museum's requirement for automatic narration and is the correct choice.

Why this answer

Image Analysis with the Describe Image or Dense Captions API is specifically designed to generate human-readable sentences summarizing the content of an image, including dominant colors, objects, and scene attributes like indoor/outdoor. This capability uses pre-trained deep learning models to produce natural-language descriptions, making it the ideal choice for the museum's requirement of detailed, automated artwork descriptions.

Exam trap

The trap here is that candidates often confuse Object Detection (which only identifies objects and their locations) with the full scene understanding and natural-language generation provided by the Describe Image / Dense Captions API, leading them to select option D.

How to eliminate wrong answers

Option A (OCR) is wrong because it extracts text from images, not visual content like colors, objects, or scene type. Option C (Face API) is wrong because it focuses on detecting and analyzing human faces (e.g., age, emotion, landmarks), not general scene understanding or object descriptions. Option D (Object Detection) is wrong because it only identifies and locates specific objects within an image using bounding boxes, but does not generate natural-language descriptions or infer scene attributes like indoor/outdoor.

144
MCQmedium

A retail company wants to use Azure Computer Vision to monitor product availability on shelves. They need to detect the presence and location of any product (e.g., a box, a bottle) on a shelf image, but they do not need to identify the specific product brand or type. Which prebuilt Azure Computer Vision capability should they use?

A.Object detection
B.Image classification
C.Optical Character Recognition (OCR)
D.Semantic segmentation
AnswerA

Object detection is the correct choice because Azure Computer Vision's prebuilt object detection model identifies objects within an image and returns bounding box coordinates for each detected item, along with a class label and confidence score. This directly enables retail monitoring by pinpointing where products are located on shelves, counting them, and tracking stock levels. Unlike classification, it provides spatial localization, which is essential for item-level monitoring without needing custom model training.

Why this answer

Object detection is the correct choice because it identifies and locates multiple objects within an image by drawing bounding boxes around each detected item. For monitoring product availability on shelves, the company needs to know both the presence and position of products (e.g., boxes, bottles) without identifying specific brands or types, which aligns exactly with object detection's capability to output class labels (e.g., 'product') and coordinates.

Exam trap

The trap here is that candidates often confuse object detection with image classification, thinking classification can locate items, but classification only provides a single label for the whole image, not per-object positions.

Why the other options are wrong

B

Image classification assigns a single label to the entire image, but the question requires detecting the presence and location of multiple products on shelves, which object detection provides.

C

OCR extracts text from images, but the question requires detecting the presence and location of any product (e.g., a box, a bottle), not reading text on labels.

D

Semantic segmentation assigns a class label to every pixel, which provides pixel-level masks but is overkill for simply detecting the presence and location of products; object detection with bounding boxes is sufficient and more efficient for this use case.

145
MCQmedium

What is 'face attribute analysis' in Azure AI Face service?

A.Identifying the named person in a photograph using a face database
B.Estimating age, emotion, head pose, and appearance attributes from detected faces
C.Verifying whether a submitted selfie matches a government-issued ID document
D.Detecting whether a face has been digitally manipulated or deepfaked
AnswerB

This is correct because the Azure Face API's 'detect' operation with returnFaceAttributes returns exactly these estimates: age as a range, emotion confidence scores, head pose (pitch, roll, yaw), and appearance attributes such as glasses or facial hair. The service computes these values from the geometry and texture of a detected face, though Microsoft advises responsible AI cautions when interpreting emotion results.

Why this answer

Face attribute analysis in Azure AI Face service extracts a set of facial attributes from detected faces, including estimated age, emotion (e.g., happiness, sadness, anger), head pose (pitch, yaw, roll), and appearance traits like facial hair, glasses, and makeup. This is distinct from identification or verification tasks because it does not match faces against a database or compare two images; it simply returns metadata about the face itself.

Exam trap

The trap here is that candidates confuse 'face attribute analysis' with 'face identification' or 'face verification', because all three involve faces, but attribute analysis only extracts descriptive metadata and does not perform any matching or recognition against a database.

How to eliminate wrong answers

Option A is wrong because identifying a named person using a face database is 'face identification' (or 'face recognition'), not attribute analysis; it requires a PersonGroup and training, not just detection. Option C is wrong because verifying a selfie against a government ID is 'face verification' (a 1:1 comparison) or 'liveness detection', not attribute analysis; it involves comparing two face vectors for similarity. Option D is wrong because detecting digital manipulation or deepfakes is not a built-in feature of Azure AI Face service; it would require separate anti-spoofing or deepfake detection models, not standard attribute extraction.

146
MCQmedium

A retail store wants to use Azure Computer Vision to count the number of people entering a store from live video feeds. Which prebuilt Azure Computer Vision capability should they use?

A.Image classification
B.Object detection
C.People Detection
D.Optical Character Recognition (OCR)
AnswerC

People Detection is the prebuilt Azure AI Vision capability specifically trained to localize human bodies in images and video frames; it returns bounding boxes and a confidence score for every person it finds, so a count is simply the number of returned detections. Because the model is tuned for human figures, it handles partially obscured people and crowded retail scenes better than a general-purpose object detector, and it can be fed sequential frames to support visitor-count analytics. This purpose-built design is exactly why it is the correct choice for counting people.

Why this answer

People Detection is a specialized prebuilt capability within Azure Computer Vision that is designed specifically to detect and count people in images or video frames. Unlike generic object detection, it is optimized for identifying human figures regardless of pose or occlusion, making it ideal for counting store entries from live video feeds.

Exam trap

The trap here is that candidates often confuse 'Object Detection' with 'People Detection,' assuming the prebuilt object detection model can reliably count people, but Microsoft specifically offers People Detection as a separate, optimized API for this exact use case.

Why the other options are wrong

A

Image classification assigns a single label to an entire image, but the task requires detecting and counting multiple people in a video feed, which is a spatial detection problem.

B

Object detection identifies and locates objects in an image but does not specifically count people; it would require additional logic to filter for 'person' class and track across frames, whereas People Detection is optimized for counting people in crowds.

D

OCR is designed to extract text from images, not to detect or count people. The question requires counting people entering a store, which is a people detection task, not text recognition.

147
MCQmedium

An art gallery wants to build a mobile app that allows visitors to take a photo of a specific painting and receive detailed information about that artwork. The gallery has a library of high-quality images of each painting in their collection. Which Azure AI service should they use to build this identification capability?

A.Azure Custom Vision
B.Azure Computer Vision (pre-built image analysis)
C.Azure Face API
D.Azure Computer Vision (OCR)
AnswerA

Correct. Custom Vision enables you to train a custom image classifier using your own labeled images, which is exactly what the gallery needs to identify specific paintings.

Why this answer

Azure Custom Vision is the correct choice because it allows the gallery to train a custom image classification model using their library of high-quality painting images. This service enables the app to identify specific artworks from user-captured photos and return detailed information, as it is designed for custom classification scenarios where pre-built models are insufficient.

Exam trap

The trap here is that candidates confuse Azure Computer Vision's pre-built image analysis with Custom Vision, assuming the former can be customized for specific objects, but only Custom Vision supports training on custom datasets.

How to eliminate wrong answers

Option B is wrong because Azure Computer Vision (pre-built image analysis) provides general image tagging and description, but cannot be trained to recognize specific custom objects like individual paintings. Option C is wrong because Azure Face API is specialized for detecting and analyzing human faces, not for identifying artwork or objects. Option D is wrong because Azure Computer Vision (OCR) extracts text from images, which is irrelevant for identifying paintings by visual appearance.

148
MCQeasy

What information does Azure AI Face service provide about detected faces beyond just their location?

A.Only the coordinates of the face bounding box
B.Age estimate, emotion, head pose, and other facial attributes
C.The person's name and identity from a public database
D.Only whether the face belongs to a human or not
AnswerB

Azure AI Face, when called with the returnFaceAttributes parameter, delivers a compact face rectangle plus rich derived attributes: an estimated age range (not a verified birth date), a weighted emotion vector (anger, sadness, surprise, etc.), head pose angles (pitch, yaw, roll), and additional signals such as glasses, facial hair, and blur. These attributes come from deep neural networks trained on large face datasets, and they are probabilistic—so age and emotion are inferred, not measured precisely. The service returns these alongside the detected face location, giving developers more than just a raw crop.

Why this answer

Azure AI Face service can extract a wide range of facial attributes beyond just the bounding box coordinates. These include age estimate, emotion (e.g., happiness, sadness, surprise), head pose (pitch, yaw, roll), facial hair, glasses, and more, making option B correct.

Exam trap

The trap here is that candidates may assume the Face service only provides basic location data (bounding box) or mistakenly think it can look up identities from public databases like social media, when in fact it requires custom enrollment for identification.

How to eliminate wrong answers

Option A is wrong because the Face service does not return only bounding box coordinates; it can return a rich set of facial attributes. Option C is wrong because the Face service does not identify a person's name or identity from a public database; it requires prior enrollment in a private PersonGroup for identification. Option D is wrong because the service does not merely classify a face as human or not; it provides detailed attributes and can also perform verification and identification.

149
MCQhard

A parking lot management company uses security cameras to monitor vehicles. They need to both detect the presence of license plates in an image and read the alphanumeric characters on those plates. Which Azure Computer Vision capability should they use to achieve both requirements?

A.Image Analysis (describe image and detect objects)
B.Optical Character Recognition (OCR) - Read API
C.Face API
D.Custom Vision (object detection)
AnswerB

The OCR Read API detects text regions in an image, performs character recognition, and returns extracted strings along with word/line bounding boxes, which makes it ideal for both locating and reading license plates. Because license plates contain printed letters and digits, OCR directly produces the plate number as machine-readable text without needing a custom model. In Azure AI Vision, Read is the recommended OCR solution for images with embedded text.

Why this answer

(OCR - Read API) is correct because Azure's Read API is specifically designed to both detect the presence of text (including license plates) in an image and extract the alphanumeric characters from that text. This meets both requirements—detecting the plate and reading its characters—in a single call, using deep-learning-based recognition models optimized for printed and handwritten text.

Exam trap

The trap here is that candidates confuse object detection (which can locate a license plate) with OCR (which can both locate and read the text), leading them to pick Custom Vision or Image Analysis instead of the Read API.

How to eliminate wrong answers

Option A is wrong because Image Analysis (describe image and detect objects) can identify objects like a car or a license plate region, but it does not extract the alphanumeric characters from the plate; it only provides object labels and bounding boxes. Option C is wrong because Face API is specialized for detecting, analyzing, and recognizing human faces, not license plates or text. Option D is wrong because Custom Vision (object detection) can be trained to detect license plates as objects, but it does not natively read the alphanumeric characters on the plate; you would need a separate OCR step to extract the text.

150
MCQmedium

What is semantic segmentation in computer vision?

A.Detecting the boundaries of objects using rectangular boxes
B.Classifying each pixel in an image into a semantic category
C.Generating natural language descriptions of images
D.Extracting text from images using OCR
AnswerB

Semantic segmentation is a dense prediction task in which each pixel is assigned a class label from a fixed set of semantic categories, such as person, car, or background. Models like fully convolutional networks, U-Net, or DeepLab use spatial features and upsampling to produce an output map with the same resolution as the input. This pixel-wise classification gives a detailed scene understanding that is more granular than object-level or block-level annotations.

Why this answer

Semantic segmentation is a computer vision task that assigns a class label to every single pixel in an image, effectively partitioning the image into regions that correspond to different semantic categories (e.g., road, car, pedestrian). This is distinct from object detection, which only provides bounding boxes around objects, and from image captioning or OCR, which operate at a higher or different level of abstraction.

Exam trap

The trap here is that candidates often confuse semantic segmentation with object detection (Option A) because both involve identifying objects, but segmentation requires pixel-level precision rather than bounding boxes.

How to eliminate wrong answers

Option A is wrong because detecting boundaries of objects using rectangular boxes describes object detection, not semantic segmentation, which operates at the pixel level rather than with bounding boxes. Option C is wrong because generating natural language descriptions of images is image captioning, a different computer vision task that produces text, not pixel-level classification. Option D is wrong because extracting text from images using OCR is optical character recognition, which focuses on text extraction, not pixel-wise semantic labeling.

← PreviousPage 2 of 3 · 199 questions totalNext →

Ready to test yourself?

Try a timed practice session using only Describe features of computer vision workloads on Azure questions.