Courseiva

CCNA Describe features of computer vision workloads on Azure Questions

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

1
MCQeasy

What does the Azure AI Vision 'Image Analysis' capability return when analyzing an image?

A.Only the file size and dimensions of the image
B.Descriptions, objects, tags, and other semantic information about the image content
C.Only a single category label for the entire image
D.A 3D point cloud of the scene
AnswerB

Azure AI Vision Image Analysis generates a multi-faceted semantic understanding of an image: it produces human-readable natural language descriptions (captions), identifies individual objects with bounding boxes, assigns a broad set of relevant tags from a large vocabulary, and can detect additional attributes such as brands or landmarks. This goes far beyond a single label, providing rich contextual information about content.

Why this answer

Azure AI Vision's Image Analysis capability uses pre-trained deep learning models to extract rich semantic information from images, including human-readable descriptions, a list of detected objects with bounding boxes, and a set of relevant tags. This goes far beyond basic metadata, making option B correct because it accurately captures the breadth of semantic outputs the service provides.

Exam trap

The trap here is that candidates confuse basic image metadata (file size, dimensions) with the semantic analysis outputs of Azure AI Vision, leading them to choose option A, or they assume the service only returns a single label (option C) because they think of simpler classification models rather than the multi-output analysis capability.

How to eliminate wrong answers

Option A is wrong because Image Analysis does not return file size or dimensions; those are basic metadata properties handled by storage services, not the computer vision API. Option C is wrong because the service returns multiple category labels, tags, and descriptions, not just a single category label for the entire image. Option D is wrong because Azure AI Vision does not generate 3D point clouds; that capability is associated with depth-sensing cameras or specialized 3D reconstruction services, not the 2D image analysis API.

2
MCQmedium

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

A.Optical Character Recognition (OCR)
B.Image Analysis
C.Face detection
D.Custom Vision
AnswerA

Optical Character Recognition (OCR) is the correct choice because the Azure AI Computer Vision OCR/Read API is specifically built to extract printed and handwritten text from images and documents, returning machine-readable character strings. Unlike general image analysis, OCR focuses entirely on localizing and recognizing text, producing line-level bounding boxes, confidence scores, and raw text output. For a logistics company digitizing thousands of handwritten shipping labels, OCR is the prebuilt, ready-to-use service that directly satisfies the text-extraction requirement without custom training.

Why this answer

Optical Character Recognition (OCR), because the task requires extracting text (destination address, sender name, package weight) from handwritten shipping forms. Azure's OCR API, part of Computer Vision, is specifically designed to detect and read printed and handwritten text from images, making it the appropriate capability for this document processing scenario.

Exam trap

The trap here is that candidates may confuse Image Analysis (which can detect text in images via the 'tags' or 'description' features) with the dedicated OCR capability, but Image Analysis does not provide the precise text extraction and bounding box coordinates that OCR offers.

Why the other options are wrong

B

Image Analysis provides general information about images (objects, colors, etc.) but does not extract specific text like addresses or names from handwritten forms.

C

Face detection identifies human faces in images, but the question requires extracting text (address, name, weight) from handwritten forms, which is not a face-related task.

D

Custom Vision is used for training custom image classification or object detection models, not for extracting text from images. The question specifically requires extracting handwritten text, which is a text extraction task, not a custom vision model task.

3
MCQmedium

A home security system uses a camera to detect common household objects such as a person, a pet, a bag, or a package. The system needs to identify the presence and location (bounding box) of these objects in images. The development team wants to use a prebuilt Azure AI service without any custom training. Which Azure Computer Vision capability should they use?

A.Optical Character Recognition (OCR)
B.Image Analysis – Object Detection
C.Image Analysis – Image Captioning
D.Custom Vision
AnswerB

The prebuilt Image Analysis Object Detection feature in Azure AI Vision can identify common household objects (e.g., chairs, TVs, pets) and return their bounding-box coordinates along with confidence scores. It requires zero custom training or labeled data, directly satisfying the team's requirement to detect and locate everyday items. This makes it the correct choice for a home security system that needs object awareness out of the box.

Why this answer

(Image Analysis – Object Detection) is correct because the requirement is to identify both the presence and location (bounding box) of common household objects in images using a prebuilt Azure AI service without custom training. Azure Computer Vision's Image Analysis – Object Detection provides pre-trained models that can detect multiple objects, including people, pets, bags, and packages, and return their bounding box coordinates, exactly matching the scenario.

Exam trap

The trap here is that candidates may confuse Image Captioning (which describes the scene) with Object Detection (which provides precise locations), or assume Custom Vision is needed when the prebuilt Object Detection model already covers the required object categories.

Why the other options are wrong

A

Optical Character Recognition (OCR) extracts text from images, not objects like people or pets. The requirement is to detect objects and their bounding boxes, not text.

C

Image Captioning generates a textual description of the entire image, but does not identify specific objects with bounding boxes, which is required for detecting presence and location of objects like a person or package.

D

Custom Vision requires custom training with labeled images, but the question specifies using a prebuilt Azure AI service without any custom training.

4
MCQmedium

What is 'smart cropping' in Azure AI Vision and how is it different from simple cropping?

A.Cropping images faster using GPU-accelerated image processing
B.AI-guided cropping that keeps the most important content in frame regardless of aspect ratio
C.Automatically cropping out people's faces from images for privacy protection
D.Cropping images to remove background noise and irrelevant context
AnswerB

Smart cropping identifies the visually important region — ensuring thumbnails include the subject rather than cutting it off.

Why this answer

Smart cropping in Azure AI Vision uses AI to analyze the image content and intelligently determine the most important region, then crops the image to any specified aspect ratio while keeping that region in frame. This differs from simple cropping, which merely removes pixels from the edges without understanding the image's semantic content. The AI model identifies salient objects, faces, or text to ensure the cropped result remains visually meaningful.

Exam trap

The trap here is that candidates confuse smart cropping with simple performance optimizations or privacy features, rather than recognizing it as an AI-driven content-preserving technique that adapts to any aspect ratio.

How to eliminate wrong answers

Option A is wrong because smart cropping is not about processing speed or GPU acceleration; it is about content-aware cropping guided by AI. Option C is wrong because smart cropping does not automatically remove faces for privacy; that would be a separate feature like face blurring or anonymization. Option D is wrong because smart cropping does not remove background noise or irrelevant context; it preserves the most important content, which may include background elements if they are salient.

5
MCQmedium

What does it mean to 'export' a model from Azure AI Custom Vision?

A.Sharing the model configuration with other Azure subscriptions
B.Downloading the trained model as a file for offline inference on edge devices
C.Moving the model from Custom Vision to Azure Machine Learning
D.Submitting the model for Microsoft certification review
AnswerB

The trained model is bundled into a downloadable file in formats such as ONNX, TensorFlow Lite, or CoreML, allowing it to run inside an app or on an edge device without making cloud API calls. This enables low-latency, offline inference for scenarios like industrial inspection or mobile photo sorting, while protecting data privacy by keeping images on-premises. That is exactly what Custom Vision's Export command does.

Why this answer

Exporting a model from Azure AI Custom Vision means downloading the trained model as a file (e.g., TensorFlow, ONNX, CoreML, or Docker container) so it can be run locally on edge devices without requiring an internet connection to the cloud API. This enables offline inference, reduced latency, and data privacy for scenarios like manufacturing or retail.

Exam trap

The trap here is that candidates confuse 'export' with 'sharing' or 'moving' the model to another Azure service, when in fact export specifically means downloading a deployable file for offline/edge use.

How to eliminate wrong answers

Option A is wrong because sharing model configuration with other Azure subscriptions is done via resource sharing or RBAC, not through an export operation; export produces a file, not a subscription transfer. Option C is wrong because moving the model to Azure Machine Learning would involve registering the model in AML, but Custom Vision's export feature is specifically for downloading a file for offline use, not for moving to another Azure service. Option D is wrong because submitting the model for Microsoft certification review is not a feature of Custom Vision; certification is unrelated to the export functionality.

6
MCQhard

A wildlife research team uses drone imagery to monitor penguin populations in a remote area. The penguins are small, blend into the rocky background, and are often only partially visible. The team has a limited set of 500 labeled drone images showing penguins. They want to build a system that accurately detects and counts penguins. Which approach should they take using Azure AI services?

A.Use the pre-built Computer Vision object detection API directly.
B.Train a Custom Vision object detection model using the labeled images.
C.Use the Computer Vision Image Analysis API with the 'dense captioning' feature.
D.Train a Custom Vision image classification model with the labeled images.
AnswerB

Custom Vision enables training a specialized object detection model with a small set of labeled images. With only one object class ('penguin'), 500 images are more than sufficient to achieve good accuracy for detection and counting.

Why this answer

The pre-built Computer Vision object detection API is optimized for common objects and may not perform well on small, camouflaged penguins in rocky terrain. Custom Vision allows the team to train a dedicated object detection model using their 500 labeled images, enabling the model to learn the specific visual features of penguins in this challenging environment. This approach is ideal for domain-specific detection tasks where off-the-shelf models lack accuracy.

Exam trap

The trap here is that candidates confuse image classification with object detection, assuming a single label per image can solve a counting problem, or overestimate the generic API's ability to handle niche, low-contrast objects without custom training.

Why the other options are wrong

A

The pre-built Computer Vision object detection API is not trained on penguins in rocky terrain and would fail to accurately detect partially visible, small penguins blending into the background, especially with only 500 labeled images for fine-tuning.

D

Image classification assigns a single label to the entire image, not detecting or localizing individual objects. Since the team needs to count penguins that are small and partially visible, object detection is required to identify each penguin's location.

7
MCQmedium

An e-commerce website wants to automatically remove the background from product photos uploaded by sellers so that items appear on a consistent plain background. Which Azure Computer Vision capability should they use?

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

Background removal is the correct service because it performs pixel-level semantic segmentation, classifying every pixel as either foreground subject or background and then producing an image with the background removed (often with a transparency mask). Unlike object detection, it does not return bounding boxes or labels; it actually alters the photo by isolating the main product for e-commerce display, which directly meets the stated requirement.

Why this answer

Background Removal is the correct capability because it is specifically designed to isolate the foreground subject from the background in an image, producing a transparent or solid-color background. This directly meets the requirement of automatically removing backgrounds from product photos to create a consistent plain background. Azure's Background Removal API uses deep learning models trained on millions of images to segment the primary object from its surroundings.

Exam trap

The trap here is that candidates often confuse Object Detection (which identifies objects) with Background Removal (which segments the entire foreground), leading them to choose D because they think detecting the product is sufficient to remove the background.

Why the other options are wrong

A

OCR extracts text from images, not background removal. The question asks for removing backgrounds from product photos, which is a segmentation task, not text extraction.

C

Image Captioning generates descriptive text for an image, not background removal. The question specifically requires removing the background from product photos, which is a segmentation task, not a captioning task.

D

Object Detection identifies and locates objects in an image, but does not remove backgrounds. The question specifically requires background removal, which is a distinct capability.

8
MCQeasy

A retail company wants to use Azure Computer Vision to automatically monitor shelf inventory. They need to detect whether items are present on a shelf and count the number of items, without needing to identify the specific product type. Which prebuilt Computer Vision capability should they use?

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

Object detection is the correct approach because it identifies each object instance within an image and returns a bounding box and confidence score for every detection. By counting the number of bounding boxes returned—even when all detections share the same class label (e.g., 'product')—you can accurately count items on a shelf. Azure Computer Vision's prebuilt object detection API is specifically designed for this scenario, providing both count and spatial location for each item.

Why this answer

Object detection (Option C) is the correct prebuilt Computer Vision capability because it can both locate items within an image using bounding boxes and count them, without requiring identification of the specific product type. This aligns directly with the requirement to detect presence and count items on a shelf, as object detection outputs the coordinates and count of detected objects, not their classification into fine-grained categories.

Exam trap

The trap here is that candidates confuse object detection with image classification, assuming that classifying the shelf as 'stocked' or 'empty' is sufficient, but the question explicitly requires counting individual items, which only object detection can provide.

Why the other options are wrong

A

OCR extracts text from images, but the question requires detecting and counting items on a shelf without identifying product type, which is not text-based.

D

Semantic segmentation assigns a class label to every pixel in an image, which is overkill for simply detecting and counting items on a shelf; object detection is more efficient for identifying and localizing individual items without needing pixel-level precision.

9
MCQeasy

Which Azure AI service can read text from a photo of a street sign taken by a mobile device?

A.Azure AI Speech
B.Azure AI Vision (Read API / OCR)
C.Azure AI Language
D.Azure AI Translator
AnswerB

Azure AI Vision's Read API is purpose-built for OCR, using a convolutional neural network pipeline to detect text regions, recognize characters, and output bounding boxes, line/word confidence scores, and recognized text. It extracts both printed and handwritten text from real-world photos of signs, which is exactly what the scenario requires.

Why this answer

Azure AI Vision's Read API (part of the Computer Vision service) is designed to extract printed and handwritten text from images, including photos of street signs. It uses optical character recognition (OCR) to detect and digitize text, making it the correct choice for reading text from a mobile device photo.

Exam trap

The trap here is that candidates may confuse Azure AI Vision's OCR capabilities with Azure AI Language's text analysis features, or mistakenly think Azure AI Speech can process visual text, when in fact only the Read API within Azure AI Vision is designed for extracting text from images.

How to eliminate wrong answers

Option A is wrong because Azure AI Speech focuses on speech-to-text, text-to-speech, and speech translation, not on extracting text from images. Option C is wrong because Azure AI Language provides natural language processing (e.g., sentiment analysis, key phrase extraction) but does not perform OCR or image-based text extraction. Option D is wrong because Azure AI Translator translates text between languages but cannot read or extract text from images.

10
MCQeasy

A company needs to automatically extract text from scanned invoices that contain both printed text and handwritten notes. Which Azure AI service is specifically designed to handle this type of document?

A.Azure Face API
B.Azure AI Document Intelligence (formerly Form Recognizer)
C.Azure Custom Vision
D.Azure Video Indexer
AnswerB

Azure AI Document Intelligence is the correct service because it is purpose-built for extracting text, including hand-written characters, and structured data from documents like invoices. It combines optical character recognition (OCR) with prebuilt domain-specific models that parse key-value pairs, tables, and line items from scanned invoices, going beyond raw text to deliver semantic understanding. This service directly meets the requirement to automatically extract text from scanned invoices.

Why this answer

Azure AI Document Intelligence (formerly Form Recognizer) is specifically designed to extract text, key-value pairs, and tables from scanned documents, including invoices with both printed text and handwritten notes. It uses optical character recognition (OCR) combined with deep learning models to handle mixed content, making it the correct choice for this scenario.

Exam trap

The trap here is that candidates may confuse Azure AI Document Intelligence with general OCR services like Azure AI Vision's Read API, but Document Intelligence is specifically optimized for structured document extraction with prebuilt models for invoices, receipts, and forms.

Why the other options are wrong

A

Azure Face API is designed for facial recognition and analysis, not for extracting text from documents, especially those with mixed printed and handwritten content.

C

Azure Custom Vision is designed for image classification and object detection, not for extracting text from documents, especially mixed printed and handwritten text.

D

Azure Video Indexer is designed to extract insights from video and audio content, not from scanned documents like invoices. It cannot process text from images or handwritten notes.

11
MCQmedium

What is the difference between Azure AI Vision and Azure AI Custom Vision in terms of when to use each?

A.Use Azure AI Vision for large images; use Custom Vision for small images
B.Use Azure AI Vision for general image analysis; use Custom Vision when you need specialized domain-specific recognition
C.Use Azure AI Vision only in production; Custom Vision only in development
D.Use Azure AI Vision for images from cameras; Custom Vision for images from documents
AnswerB

Azure AI Vision is the right choice when you need immediate, pre-trained analysis of everyday images—identifying objects, reading printed or handwritten text, generating captions, or checking for offensive content. Custom Vision is required when your classification targets are specialized or unique, such as detecting defective parts in a factory, distinguishing plant diseases, or recognizing specific animal breeds, because Azure AI Vision does not contain these categories. In short, choose Vision for general inspection and Custom Vision for purpose-built domain recognition.

Why this answer

Azure AI Vision is a pre-trained service for general image analysis tasks like object detection, OCR, and description generation, requiring no custom training. Azure AI Custom Vision allows you to train a model on your own labeled images for specialized, domain-specific recognition tasks, such as identifying unique product defects or rare animal species. Option B correctly captures this distinction: use Azure AI Vision for broad, out-of-the-box capabilities and Custom Vision when you need tailored recognition for your specific use case.

Exam trap

The trap here is that candidates confuse 'general vs. specialized' with superficial attributes like image size or source, leading them to pick options that sound plausible but miss the core functional difference between pre-trained and custom-trained models.

How to eliminate wrong answers

Option A is wrong because the difference is not about image size; both services can handle images of varying sizes, and Azure AI Vision has specific size limits (e.g., 4 MB for analysis) while Custom Vision also has its own constraints. Option C is wrong because both services can be used in production and development; Custom Vision is often used in development to train a model, then deployed to production, and Azure AI Vision is used in both stages for general analysis. Option D is wrong because the distinction is not about the source of images (camera vs. documents); Azure AI Vision can analyze images from cameras or documents (e.g., OCR on scanned documents), and Custom Vision can be trained on any image type, including document images for custom classification.

12
MCQmedium

What is the primary use case for Azure AI Vision's 'image retrieval' using multimodal embeddings?

A.Storing images in Azure Blob Storage with automatic tagging
B.Enabling natural language image search and finding visually similar images using semantic understanding
C.Automatically resizing images for different screen sizes
D.Detecting copyrighted images in user-uploaded content
AnswerB

This is the core capability enabled by multimodal embeddings, which map images and text into a shared vector space where cosine similarity measures semantic meaning. For example, an embedding model like Azure AI Vision or OpenAI CLIP can encode the query 'red car on a road' and an image of a red car driving on a scenic highway, then return that image as a top hit even if the metadata or labels do not contain those exact words. The same semantic representation also allows finding images visually similar to a reference photo, because near-identical concepts have close vector positions. This combination of cross-modal text-to-image retrieval and image-to-image similarity is precisely what multimodal embeddings are built for.

Why this answer

Azure AI Vision's image retrieval using multimodal embeddings is designed to enable natural language image search and find visually similar images by leveraging semantic understanding. It converts both images and text into vector embeddings in a shared semantic space, allowing queries like 'a red car on a beach' to retrieve relevant images without relying on exact keyword matches or pre-defined tags.

Exam trap

The trap here is that candidates confuse 'image retrieval using multimodal embeddings' with simpler image tagging or metadata-based search, overlooking that the core innovation is semantic understanding across modalities rather than keyword or tag matching.

How to eliminate wrong answers

Option A is wrong because storing images in Azure Blob Storage with automatic tagging is a separate capability (e.g., using Azure Computer Vision's image tagging or custom vision), not the primary use case of multimodal embeddings for retrieval. Option C is wrong because automatically resizing images for different screen sizes is a media processing task, often handled by Azure Media Services or Content Delivery Network, not by AI Vision's image retrieval. Option D is wrong because detecting copyrighted images in user-uploaded content is typically done with content moderation or fingerprinting services (e.g., Azure Content Moderator or custom hash-based systems), not by multimodal embeddings which focus on semantic similarity search.

13
MCQmedium

What is 'video action recognition' in computer vision?

A.Recognising which video format (MP4, MOV) an uploaded file uses
B.Identifying human activities (running, cooking, falling) from temporal patterns across video frames
C.Detecting when inappropriate actions are performed in user-generated video content
D.Tracking when viewers take actions (like, share, comment) in response to a video
AnswerB

Action recognition in computer vision specifically classifies what a person is doing by analysing sequences of frames, where the model learns spatiotemporal features from movement and pose changes over time. Detecting running, cooking, or falling requires modelling motion dynamics and temporal dependencies, not just static object appearances. This capability underlies sports analytics, elderly fall detection, and automated surveillance behaviour monitoring.

Why this answer

Video action recognition is a computer vision technique that analyzes sequences of video frames to identify and classify human activities based on temporal patterns and motion cues. Option B correctly describes this as identifying activities like running, cooking, or falling from temporal patterns across frames, which is the core definition used in Azure Video Indexer and other AI services.

Exam trap

The trap here is confusing a specific application (like content moderation in Option C) with the general computer vision capability, leading candidates to pick a narrower, use-case-driven answer instead of the broad technical definition.

How to eliminate wrong answers

Option A is wrong because it describes file format detection (e.g., MP4 vs. MOV), which is a trivial metadata check, not a computer vision task involving visual content analysis. Option C is wrong because it describes a specific application (moderation of inappropriate actions), not the general capability of recognizing any predefined action from temporal patterns.

Option D is wrong because it describes user engagement analytics (likes, shares, comments), which is a social media metric, not a computer vision workload analyzing video content.

14
MCQmedium

A quality inspection system uses cameras to examine metal parts for surface defects. The system must identify the exact location and shape of each scratch, dent, or crack. Which Azure Computer Vision capability is best suited for this?

A.Image Classification
B.Object Detection
C.Semantic Segmentation
D.Dense Captioning
AnswerC

Semantic segmentation classifies every pixel of the image into a predefined class, producing a dense label map of the same resolution as the input. With a U-Net or DeepLab model, each pixel belonging to a crack, inclusion, or non-defective metal is predicted precisely, so the model can directly output the exact shape, orientation, and boundary of every defect. This pixel-level output is what enables accurate area computation and downstream decision-making in an automated inspection line.

Why this answer

Semantic segmentation is the correct choice because it classifies every pixel in an image, allowing the system to precisely delineate the exact location, shape, and boundaries of surface defects like scratches, dents, or cracks on metal parts. This pixel-level granularity is essential for quality inspection where the geometry of each defect must be measured and analyzed.

Exam trap

The trap here is that candidates often confuse Object Detection (bounding boxes) with Semantic Segmentation (pixel-level masks), failing to recognize that only segmentation can capture the exact shape of irregular defects like cracks or dents.

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 the location or shape of individual defects. Option B is wrong because Object Detection draws bounding boxes around objects, which is too coarse for irregularly shaped defects like scratches or cracks that require pixel-accurate boundaries. Option D is wrong because Dense Captioning generates descriptive captions for image regions, but it does not produce a pixel-level segmentation map needed to precisely outline defect shapes.

15
MCQeasy

What does the 'image analysis' API in Azure AI Vision return when given an image?

A.The raw pixel data of the image in a compressed format
B.Rich metadata including captions, detected objects, tags, colour analysis, and content flags
C.A score from 1 to 10 rating the aesthetic quality of the photograph
D.A list of similar images found across the web
AnswerB

Azure AI Vision's Analyze Image API returns precisely this rich metadata: a human-readable caption and tags, detected objects with bounding-box coordinates, dominant foreground/background/accent colors, and moderation scores for adult, racy, or violent content. These outputs come as a structured JSON response that can be consumed directly by applications for accessibility, search indexing, or content governance. This is the intended output of the image-analysis pipeline, which uses pre-trained neural networks to interpret visual features.

Why this answer

The Image Analysis API in Azure AI Vision returns rich metadata about the image content, including captions, detected objects, tags, color analysis, and content moderation flags. This is because the API applies pre-trained deep learning models to extract semantic information from the image, not raw pixel data or aesthetic scores.

Exam trap

The trap here is that candidates confuse the Image Analysis API with other Azure services like the Custom Vision API (which requires training) or the Bing Image Search API, leading them to choose options that describe unrelated functionalities.

How to eliminate wrong answers

Option A is wrong because the Image Analysis API does not return raw pixel data; it returns metadata about the image content, and pixel data would be irrelevant for computer vision analysis. Option C is wrong because the API does not provide an aesthetic quality score; it focuses on content recognition and description, not subjective ratings. Option D is wrong because the API does not perform reverse image search or return similar images from the web; that functionality is provided by the Bing Image Search API, not Azure AI Vision.

16
MCQeasy

What is the purpose of Azure AI Vision's 'thumbnail generation' feature?

A.Reducing file sizes of images for faster web page loading
B.Generating crop-focused preview images that highlight the most important content area
C.Creating thumbnail-sized AI model icons for the Azure portal
D.Generating multiple image variations in different artistic styles
AnswerB

Smart thumbnail generation in Azure AI Vision automatically analyzes the image to identify the region of interest—often a face, object, or salient scene element—and then produces a cropped preview that keeps that content in focus. This avoids the classic problem of center cropping, which can cut off the subject when the aspect ratio changes. The result is a preview image that shows the most important content, which is exactly what this option describes.

Why this answer

Azure AI Vision's thumbnail generation feature analyzes the image content to identify the most important region (e.g., a person's face or a prominent object) and then crops the image around that region to produce a focused preview. This is distinct from simple resizing or compression, as it uses AI-based spatial analysis to preserve the key subject while discarding irrelevant background areas.

Exam trap

The trap here is that candidates confuse 'thumbnail generation' with simple image resizing or compression, missing the key differentiator that Azure AI Vision uses AI to intelligently crop around the most important content rather than just scaling down the entire image.

How to eliminate wrong answers

Option A is wrong because thumbnail generation does not primarily reduce file sizes for faster loading; that is the purpose of image compression or resizing services, not the AI-driven cropping feature. Option C is wrong because the feature generates thumbnails of user-uploaded images, not icons for Azure portal UI elements. Option D is wrong because thumbnail generation produces a single cropped version, not multiple variations in different artistic styles (that would be a style transfer or generative AI capability).

17
MCQmedium

What is 'health and safety monitoring' using computer vision and what scenarios does it address?

A.An employee wellness programme that tracks steps and exercise using wearables
B.Using computer vision to detect PPE compliance, hazards, restricted zone entry, and safety violations
C.AI-powered medical diagnosis from health data captured by wearable sensors
D.Monitoring employee screen time and break patterns for ergonomic health compliance
AnswerB

This is correct because computer vision workloads in Azure can analyze live or recorded video frames to detect hard hats, safety vests, fire, smoke, and unauthorized entries into restricted zones. Custom Vision and Azure Video Analyzer can be trained on labeled images of personal protective equipment and workplace hazards, then trigger real-time alerts when violations occur. This aligns directly with the AI-900 scenario of safety monitoring to reduce workplace accidents.

Why this answer

Health and safety monitoring using computer vision involves analyzing video feeds or images to automatically detect compliance with personal protective equipment (PPE) requirements, identify workplace hazards, monitor restricted zone entries, and flag safety violations. This is a core computer vision workload on Azure, leveraging services like Azure Video Indexer or Custom Vision to process visual data in real time, enabling proactive safety enforcement without human intervention.

Exam trap

The trap here is that candidates confuse general AI health monitoring (like wearables or ergonomic software) with computer-vision-specific safety monitoring, leading them to pick options that involve non-visual sensor data or administrative tracking rather than image/video analysis.

How to eliminate wrong answers

Option A is wrong because it describes an employee wellness program using wearable step trackers, which relies on sensor data and not computer vision analysis of visual inputs. Option C is wrong because it refers to AI-powered medical diagnosis from wearable sensor health data, which is a healthcare AI scenario, not computer vision for physical safety monitoring. Option D is wrong because it involves monitoring screen time and break patterns for ergonomic compliance, which typically uses software logging or activity tracking, not computer vision to detect physical hazards or PPE.

18
MCQmedium

What is the purpose of training data labeling in computer vision model development?

A.Adding watermarks to images for copyright protection
B.Adding ground-truth annotations to training images so the model learns what to predict
C.Compressing images to reduce storage costs during training
D.Filtering out low-quality or blurry training images
AnswerB

Data labeling consists of adding human-verified ground-truth annotations to each training image, such as an image-level class label or object bounding boxes, so that the model has a clear target output to learn. During training, the model's prediction is compared with these labels to compute a loss, and backpropagation adjusts the model to associate input pixel patterns with the correct semantic meaning. Without such annotations, the images have no supervisory signal and the model cannot learn how to map inputs to desired outputs.

Why this answer

Training data labeling is the process of adding ground-truth annotations (e.g., bounding boxes, segmentation masks, or class labels) to each training image. This supervised learning step provides the model with the correct answer for each example, enabling it to learn the mapping from image features to the desired output during training. Without labeled data, the model cannot be trained to recognize objects, classify scenes, or detect anomalies in computer vision tasks.

Exam trap

The trap here is that candidates confuse data cleaning (filtering bad images) or data preprocessing (compression) with the core supervised learning requirement of providing ground-truth annotations, leading them to select options that describe peripheral data management tasks rather than the essential labeling step.

How to eliminate wrong answers

Option A is wrong because adding watermarks is a post-processing step for copyright protection, not a training data preparation task; it does not provide any supervisory signal for model learning. Option C is wrong because compressing images reduces file size and storage costs but discards pixel detail that the model needs to learn visual patterns; labeling is about annotation, not compression. Option D is wrong because filtering out low-quality images is a data cleaning step that improves dataset quality, but it is not the same as labeling; labeling specifically adds semantic annotations to the images that remain.

19
MCQeasy

A logistics company receives thousands of handwritten shipping labels each day. They want to use Azure AI to automatically read the handwritten addresses and convert them into digital text. Which Azure Cognitive Services capability should they use?

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

Optical character recognition (OCR) directly extracts the textual characters from a shipping label image, converting handwritten names and addresses into machine-readable text. Azure AI Vision's Read API and OCR engines detect character shapes stroke-by-stroke, even for cursive or messy handwriting, and output the recognized words in a structured format. This is precisely what the logistics company needs to digitize thousands of handwritten labels.

Why this answer

Optical character recognition (OCR) is the correct Azure Cognitive Services capability because it is specifically designed to extract printed or handwritten text from images and convert it into machine-readable digital text. In this scenario, the logistics company needs to read handwritten addresses from shipping labels, which is a classic OCR workload. Azure's Computer Vision OCR API (including the Read API) can handle both printed and handwritten text, making it the ideal choice for this task.

Exam trap

Microsoft often tests the distinction between OCR and image classification, where candidates mistakenly choose image classification because they think 'reading text' is a form of classifying the image content, but OCR is a specialized text extraction service, not a classification task.

Why the other options are wrong

A

Image classification assigns a single label to an entire image (e.g., 'handwritten label'), but it cannot extract the specific text content from the addresses. The requirement is to read and digitize handwritten text, which requires OCR.

C

Object detection identifies and locates objects within an image (e.g., boxes, vehicles), but it does not extract text. The question specifically requires reading handwritten addresses, which is a text extraction task, not object localization.

D

Face detection identifies human faces in images, not text. The question requires reading handwritten addresses, which is a text recognition task, not face detection.

20
MCQeasy

Which Azure AI service can analyze an image and return a description of its contents in natural language?

A.Azure AI Language
B.Azure AI Vision (Computer Vision)
C.Azure AI Speech
D.Azure Bot Service
AnswerB

Azure AI Vision can analyze images and generate natural language descriptions, identify objects, and extract text from images.

Why this answer

Azure AI Vision (Computer Vision) includes an image analysis API that can generate a human-readable description of an image's contents. This feature uses deep learning models to identify objects, actions, and scenes, then produces a natural language caption describing the image. The correct answer is B because this is the specific service designed for image understanding and description generation.

Exam trap

The trap here is that candidates confuse Azure AI Language (which handles text) with Azure AI Vision, assuming that 'natural language' output implies a language service, when in fact the image-to-text description is a core feature of the Vision service.

How to eliminate wrong answers

Option A is wrong because Azure AI Language is focused on text analytics, sentiment analysis, and language understanding, not image analysis. Option C is wrong because Azure AI Speech handles speech-to-text, text-to-speech, and speech translation, with no capability to analyze images. Option D is wrong because Azure Bot Service is a framework for building conversational AI agents, not for processing or describing visual content.

21
MCQmedium

What is 'Azure AI Vision's landmark detection' and what does it return?

A.Detecting important milestones in a project timeline using AI
B.Identifying well-known physical landmarks (Eiffel Tower, Big Ben) in photographs with a confidence score
C.Creating highlighted markers on maps showing user-defined points of interest
D.Detecting major architectural features of any building regardless of whether it is famous
AnswerB

This is exactly what Azure AI Vision's built-in landmark detection was designed to do. The service takes a photograph, uses deep learning to detect recognizable globally famous locations, and returns the landmark name along with a confidence score indicating how strongly the image matches the known location. It also provides bounding boxes and can handle multiple landmarks in one image, enabling automatic location tagging for travel and photo-management applications.

Why this answer

Azure AI Vision's landmark detection is a pre-built computer vision capability that identifies well-known physical landmarks (e.g., Eiffel Tower, Big Ben) in images. It returns the landmark name along with a confidence score indicating the likelihood of the match, enabling applications like automated photo tagging or travel content enrichment.

Exam trap

The trap here is confusing 'landmark detection' with generic object detection or architectural feature recognition, leading candidates to choose Option D, which incorrectly assumes any building can be identified.

How to eliminate wrong answers

Option A is wrong because it describes project management milestones, not physical landmarks; Azure AI Vision operates on visual image data, not abstract timelines. Option C is wrong because it describes user-defined map markers, which is a geospatial feature unrelated to Azure AI Vision's pre-trained landmark detection model. Option D is wrong because landmark detection only recognizes famous, pre-trained landmarks, not arbitrary architectural features of any building; it requires the landmark to be in the service's curated database.

22
MCQmedium

What does Azure AI Vision's 'dense captioning' feature do?

A.Creates very long detailed captions for entire images
B.Generates natural language descriptions for multiple regions within a single image
C.Extracts text from dense text-heavy images like documents
D.Analyzes the density of objects in an image for crowd counting
AnswerB

Dense captioning identifies regions of interest in an image and generates a localized caption for each region.

Why this answer

Azure AI Vision's dense captioning feature goes beyond generating a single caption for the entire image. It analyzes the image to identify multiple distinct regions (e.g., a person, a car, a building) and generates a natural language description for each region, along with bounding box coordinates. This is correct because the feature's core purpose is to provide granular, region-level descriptions, not just a single long caption.

Exam trap

The trap here is that candidates confuse 'dense captioning' with generating a single, verbose caption for the whole image (Option A), when in fact it produces multiple, region-specific descriptions.

How to eliminate wrong answers

Option A is wrong because dense captioning does not create 'very long detailed captions' for the entire image; it generates multiple shorter captions for specific regions. Option C is wrong because extracting text from dense text-heavy images is the function of Azure AI Vision's OCR (Optical Character Recognition) feature, not dense captioning. Option D is wrong because analyzing the density of objects for crowd counting is a separate capability often associated with object detection or specialized crowd analysis models, not the dense captioning feature.

23
MCQmedium

What is Azure AI Content Safety used for in computer vision scenarios?

A.Compressing images to reduce storage costs
B.Detecting harmful or inappropriate content in images for content moderation
C.Enhancing image quality and resolution
D.Converting images to text descriptions for accessibility
AnswerB

Azure AI Content Safety is the correct service when the goal is content moderation: its image model analyzes visuals and returns category and severity assessments for harmful content such as sexual imagery, violence, hate, and self-harm. This enables automated screening and human-review workflows to block or flag inappropriate images before they are published or served to users. The service is specifically designed around risk classification rather than general-purpose image recognition, which is why detecting harmful content is its intended use case.

Why this answer

Azure AI Content Safety is designed to detect harmful or inappropriate content in images, such as violence, hate speech, self-harm, or sexually explicit material. In computer vision scenarios, it analyzes visual features to classify content into severity levels, enabling automated content moderation. This directly supports safe user-generated content platforms by flagging or blocking prohibited imagery.

Exam trap

The trap here is that candidates confuse Azure AI Content Safety with Azure AI Vision's image analysis features, mistakenly thinking it handles enhancement or description tasks, when in fact it is strictly a content moderation service for detecting harmful material.

How to eliminate wrong answers

Option A is wrong because compressing images to reduce storage costs is handled by Azure Storage features or image optimization services, not by AI Content Safety, which focuses on content analysis rather than file size reduction. Option C is wrong because enhancing image quality and resolution is a task for Azure AI Vision's super-resolution or image enhancement capabilities, not for content safety moderation. Option D is wrong because converting images to text descriptions for accessibility is performed by Azure AI Vision's image captioning or OCR features, not by Content Safety, which does not generate descriptive text.

24
MCQmedium

A logistics company uses security cameras to monitor boxes on warehouse shelves. They need an AI solution that can count the number of boxes on each shelf and also identify if any box is red (indicating a priority shipment). Which Azure Computer Vision capability should they use?

A.Image Analysis (object detection)
B.Optical Character Recognition (OCR)
C.Face detection
D.Spatial analysis
AnswerA

Azure AI Vision's Image Analysis object detection scans the image for instances of common objects and returns a bounding box, class label, and confidence score for each detected instance. Because it detects multiple objects in a single call, it can count how many boxes appear in the camera view and extract visual properties such as color, which directly supports the logistics monitoring scenario. Unlike image classification, object detection localizes each object instead of merely labeling the whole image.

Why this answer

Image Analysis with object detection can identify and localize multiple objects (boxes) within an image, count them, and detect specific attributes like color (red boxes) by analyzing pixel values in the detected bounding boxes. This directly meets the requirement to count boxes and identify priority shipments based on color.

Exam trap

The trap here is that candidates may confuse object detection with OCR or spatial analysis, thinking text extraction or motion tracking could somehow count boxes or detect colors, when in fact object detection is the only option that can both localize objects and support color analysis.

How to eliminate wrong answers

Option B is wrong because Optical Character Recognition (OCR) extracts text from images, not objects or colors; it cannot count boxes or detect red boxes. Option C is wrong because Face detection is specialized for locating human faces, not inanimate objects like boxes, and cannot identify colors or count non-face items. Option D is wrong because Spatial analysis focuses on tracking movement and presence of people or objects in a video feed over time, not static counting or color detection in single images.

25
MCQmedium

What is 'image captioning' in Azure AI Vision and how is it different from image tagging?

A.Captioning adds user-written descriptions; tagging uses AI to detect objects automatically
B.Captioning generates a natural language sentence describing the scene; tagging returns individual concept keywords
C.Captioning works on video; tagging works only on still images
D.Image tagging is more accurate than captioning because it uses simpler classification
AnswerB

Captioning in Azure AI Vision uses an image-to-text model to produce a grammatically complete sentence that describes the whole scene, such as “A cat sitting on a sofa.” Tagging instead runs a multi-label classification model that returns a discrete list of concept keywords (for example, cat, sofa, indoor) with confidence scores. The sentence gives narrative context for accessibility or storytelling, whereas the keyword list is optimized for indexing, search, and automated filtering. This difference in output format—one generated sentence versus many discrete labels—is the core definitional distinction.

Why this answer

Image captioning in Azure AI Vision uses a deep learning model to analyze the entire scene and generate a coherent, natural language sentence describing the image content, such as 'a group of people playing soccer in a park.' In contrast, image tagging returns a list of individual keywords or concepts (e.g., 'soccer,' 'grass,' 'people') without forming a complete sentence. This distinction is fundamental to understanding the different outputs of these two Azure AI Vision features.

Exam trap

The trap here is that candidates often confuse image captioning with manual annotation or assume tagging is always more accurate, when in fact the key difference is the output format—a full sentence versus a list of keywords—not the method of input or accuracy level.

How to eliminate wrong answers

Option A is wrong because image captioning does not rely on user-written descriptions; it automatically generates captions using AI models, not manual input. Option C is wrong because both image captioning and image tagging work on still images, not video; Azure Video Indexer is used for video analysis. Option D is wrong because accuracy is not inherently higher for tagging; both features use different models and serve different purposes, and captioning can be equally accurate for its task of generating descriptive sentences.

26
MCQeasy

What is 'ID document recognition' in Azure AI Document Intelligence?

A.Verifying whether a provided ID document is genuine or a counterfeit
B.Extracting structured fields (name, DOB, document number) from passports and identity cards
C.Assigning employee ID numbers to workers in an HR management system
D.Recognising which employees are present using their ID badge photos
AnswerB

Azure AI Document Intelligence's prebuilt ID model is purpose-built to perform OCR and semantic field extraction on government-issued identity documents, returning structured key-value pairs such as name, date of birth, and document number. This is the exact capability used in KYC and customer-onboarding workflows, where structured data is needed for downstream systems. It is the correct match because it directly describes extracting fields from passports and identity cards.

Why this answer

ID document recognition in Azure AI Document Intelligence is a prebuilt model designed to extract structured fields such as name, date of birth, document number, and expiration date from passports, driver licenses, and identity cards. It uses optical character recognition (OCR) and trained machine learning models to parse the document layout and return key-value pairs, not to verify authenticity or perform identity matching.

Exam trap

The trap here is confusing document data extraction with identity verification or facial recognition, leading candidates to select options that imply authentication or person identification rather than structured field extraction.

How to eliminate wrong answers

Option A is wrong because ID document recognition does not perform forgery detection or authenticity verification; it only extracts structured data from the document. Option C is wrong because assigning employee ID numbers is a business process unrelated to document analysis; Azure AI Document Intelligence does not generate or assign identifiers. Option D is wrong because recognizing employees from ID badge photos is a facial recognition or object detection task, not a document analysis capability; ID document recognition processes the text on the document, not the person in the photo.

27
MCQeasy

A company wants to use Azure Computer Vision to automatically analyze images of handwritten forms and extract the text for data entry. Which prebuilt Azure Computer Vision capability should they use?

A.Optical Character Recognition (OCR)
B.Image Analysis
C.Face API
D.Object Detection
AnswerA

Optical Character Recognition (OCR) in Azure Computer Vision, specifically the Read API, is the correct service because it is purpose-built to extract text from images, including both printed and handwritten content. It converts visual text into machine-readable strings with bounding boxes, line/word confidence scores, and language detection. Unlike broader image analysis or object detection, OCR directly processes character shapes and patterns rather than scene semantics.

Why this answer

Azure Computer Vision's Optical Character Recognition (OCR) capability is specifically designed to extract printed or handwritten text from images, including forms. It uses the Read API, which is optimized for text-heavy documents and supports handwritten text recognition, making it the correct choice for this scenario.

Exam trap

The trap here is that candidates often confuse Image Analysis (which can detect text in images as a general feature) with the dedicated OCR capability, but Image Analysis does not provide the same level of handwritten text extraction accuracy or structured output as the Read API.

Why the other options are wrong

B

Image Analysis provides general descriptions, tags, and metadata about images, but it does not extract text from handwritten forms. The question specifically requires text extraction from handwritten content, which is the domain of OCR.

C

The Face API is designed for detecting and analyzing human faces, not for extracting text from handwritten forms. The question specifically requires OCR for text extraction.

D

Object Detection identifies and locates objects within images, but it does not extract text. The question specifically requires extracting text from handwritten forms, which is the domain of OCR.

28
MCQmedium

A museum wants to automatically generate descriptive tags for its digital art collection. They need to identify objects, themes, and artistic styles in the images without any custom training. Which Azure Computer Vision feature should they use?

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

The prebuilt Image Analysis API in Azure AI Computer Vision uses transformer-based models trained on massive image datasets to extract rich semantic metadata. It automatically generates descriptive tags for objects, scenes, actions, and abstract concepts, and it also produces human-readable captions and detects brands, landmarks, and image types. This service requires zero custom training or labeled data from the museum, making it the only listed option that directly addresses the need to auto-generate descriptive tags from artwork and exhibits without building a custom solution.

Why this answer

Azure AI Computer Vision Image Analysis provides pre-built models that can automatically generate descriptive tags for images, identifying objects, themes, and artistic styles without any custom training. This feature uses a set of thousands of recognizable objects, living beings, scenery, and actions, making it ideal for the museum's requirement to tag digital art without custom model development.

Exam trap

The trap here is that candidates may confuse Custom Vision (which requires training) with the pre-built Image Analysis feature, mistakenly thinking custom training is needed for domain-specific tasks like art tagging, when in fact the pre-built model already covers common objects and themes.

Why the other options are wrong

A

The question specifies 'without any custom training,' but Azure AI Custom Vision requires custom training to identify specific objects, themes, or styles. The museum needs pre-built capabilities, which Image Analysis provides.

C

The Face service is specialized for detecting, analyzing, and recognizing human faces, not for identifying objects, themes, or artistic styles in images.

D

Azure AI Form Recognizer is designed for extracting structured data from documents (e.g., invoices, forms), not for generating descriptive tags from images. The museum's need for object, theme, and style identification without custom training requires a general image analysis service, which Form Recognizer does not provide.

29
MCQmedium

What capability does Azure AI Vision's 'celebrity recognition' feature provide?

A.Automatically scheduling meetings with celebrities based on their availability
B.Identifying well-known public figures in images and returning their names with confidence scores
C.Generating fictional celebrity lookalikes for entertainment applications
D.Verifying celebrity identities for event access control
AnswerB

Azure Computer Vision's celebrity recognition applies a specialized domain model trained on thousands of well-known public figures to detect, localize, and label celebrities in images. For each recognized face it returns the celebrity's name with a confidence score, enabling media tagging, content indexing, and marketing analytics. This exactly matches the definition of the capability, making it the correct answer for this question.

Why this answer

Azure AI Vision's celebrity recognition feature is a specialized domain-specific model that identifies well-known public figures (e.g., actors, politicians, athletes) within images. It returns the recognized celebrity's name along with a confidence score, enabling applications like media indexing or social media analysis. This capability is built on top of the general object detection and facial recognition models, but is pre-trained on a curated dataset of celebrity faces.

Exam trap

The trap here is that candidates confuse celebrity recognition (a pre-built, domain-specific model for identifying famous people) with general facial recognition or verification, which are separate capabilities in Azure AI Vision with different use cases and APIs.

How to eliminate wrong answers

Option A is wrong because Azure AI Vision does not have any scheduling or calendar integration capabilities; it is an image analysis service, not a productivity or meeting management tool. Option C is wrong because the feature does not generate or synthesize fictional lookalikes; it only identifies real, known individuals from a pre-defined database. Option D is wrong because celebrity recognition is not designed for identity verification or access control; it lacks the liveness detection and high-accuracy matching required for security scenarios, and Azure Face API (with person groups) would be used for that purpose.

30
MCQmedium

A logistics company needs to automatically read shipping labels on packages. The labels contain printed text in various fonts and sizes, as well as handwritten addresses. Which Azure Computer Vision capability should they use to extract the text from the labels?

A.Image Analysis
B.Face API
C.Optical Character Recognition (OCR) - Read API
D.Custom Vision
AnswerC

The Optical Character Recognition (OCR) - Read API is the correct choice: it is a dedicated OCR engine within Azure AI Vision designed to extract printed and handwritten text from images and PDFs. It handles varied fonts, low-contrast labels, skewed orientations, and returns structured line/word results with confidence scores, which are directly usable to populate tracking and address fields.

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, handling varied fonts, sizes, and styles. This makes it the correct choice for reading shipping labels that contain both printed text and handwritten addresses.

Exam trap

The trap here is that candidates often confuse Image Analysis (which can detect text in images but not extract it reliably from mixed formats) with the dedicated OCR Read API, or they mistakenly think Custom Vision can be trained for text extraction when it is designed for custom visual patterns.

How to eliminate wrong answers

Option A is wrong because Image Analysis provides general image descriptions, object detection, and tags, but does not include text extraction from mixed printed and handwritten content. Option B 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 classification or object detection models, not for out-of-the-box text extraction from labels.

31
MCQhard

A medical research team needs to analyze CT scans to identify and outline the exact boundaries of lung nodules. Which Azure Computer Vision capability should they use?

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

Semantic segmentation performs dense pixel-wise classification, assigning every pixel (or voxel in a 3D CT volume) to a semantic class such as “nodule” or “background.” The output is a segmentation mask in which each nodule’s boundary follows the exact shape visible in the image, enabling accurate measurements of diameter, volume, and shape. This pixel-level output is precisely what is required to outline lung nodules on CT scans.

Why this answer

Semantic segmentation is the correct capability because it classifies each pixel in an image, enabling precise delineation of object boundaries. For CT scans, this allows the model to outline the exact shape and contour of lung nodules, which is essential for medical analysis. Image classification and object detection only provide labels or bounding boxes, not pixel-level boundaries.

Exam trap

The trap here is that candidates confuse object detection with semantic segmentation, assuming bounding boxes are sufficient for boundary outlining, but the exam tests the distinction between rectangular region identification and pixel-level precision.

How to eliminate wrong answers

Option A is wrong because image classification assigns a single label to the entire image, not identifying or outlining individual objects like nodules. Option B is wrong because object detection provides bounding boxes around objects, which are rectangular and cannot capture the irregular, precise boundaries of lung nodules. Option D is wrong because OCR extracts text from images, which is irrelevant to analyzing CT scans for nodule boundaries.

32
MCQhard

A manufacturing company wants to use Azure Computer Vision to inspect products on an assembly line for defects. They have a labeled dataset with images of defective and non-defective products. They need to not only classify products as defective or not, but also identify the exact location of the defect (e.g., a crack) in the image. Which Azure Computer Vision capability should they use?

A.Custom Vision object detection
B.Custom Vision image classification
C.Azure Face API
D.Optical Character Recognition (OCR)
AnswerA

Custom Vision object detection is the correct service because it can be trained on labeled images of defective parts to identify and localize defects such as cracks or scratches. The model outputs bounding boxes around each detected defect, along with a class label and confidence score, so the company knows both what the defect is and where it occurs. Unlike image classification, it can detect multiple defects within a single image and support downstream actions like automated rejection or repair.

Why this answer

Custom Vision object detection is the correct choice because it not only classifies images (defective vs. non-defective) but also localizes defects by drawing bounding boxes around them. The labeled dataset with defect locations directly supports training a model to output both class labels and spatial coordinates, which is exactly what object detection provides.

Exam trap

The trap here is that candidates confuse image classification (which only labels the whole image) with object detection (which provides both classification and localization), leading them to choose Custom Vision image classification despite the explicit need for defect location.

Why the other options are wrong

B

Image classification only assigns a single label to the entire image (e.g., 'defective' or 'non-defective'), but does not provide the location of the defect. The question explicitly requires identifying the exact location of the defect, which demands object detection.

C

Azure Face API is designed for detecting and analyzing human faces, not for identifying defects in manufactured products. The question requires locating defects in product images, which is unrelated to facial analysis.

D

OCR is designed to extract text from images, not to detect or localize defects like cracks in products. The question requires identifying the exact location of a defect, which OCR cannot do.

33
MCQeasy

What is 'Azure AI Vision's image analysis v4.0' and what new capability does it add?

A.A version supporting 4K resolution images for the first time
B.Florence-powered advanced capabilities including dense captioning, embeddings, and improved background removal
C.A version requiring 4x more compute than the previous version
D.The fourth iteration of Microsoft's Kinect 3D depth sensor SDK
AnswerB

v4.0 is powered by Microsoft's Florence model, a large vision-language transformer pretrained on billions of image-text pairs to learn joint visual-linguistic representations. Its dense captioning produces natural language descriptions for multiple salient regions in an image rather than a single whole-image caption, while embeddings map images and text to a common vector space for semantic search, and improved background removal uses fine-grained segmentation to isolate foreground objects. These Florence-powered capabilities are the defining advances that distinguish v4.0 from older Azure AI Vision models.

Why this answer

Azure AI Vision's image analysis v4.0 is a major update that leverages the Florence foundation model to deliver advanced capabilities such as dense captioning (generating detailed descriptions for multiple regions in an image), image embeddings (vector representations for similarity search), and improved background removal. This version significantly enhances the depth and accuracy of image understanding compared to previous versions.

Exam trap

The trap here is that candidates confuse 'version 4.0' with a simple incremental update (like resolution or performance tweaks) rather than recognizing it as a paradigm shift powered by the Florence foundation model, which is the core new capability tested.

How to eliminate wrong answers

Option A is wrong because Azure AI Vision v4.0 does not specifically introduce 4K resolution support; resolution handling was already available in prior versions, and the key new capability is the Florence-powered AI features, not a resolution threshold. Option C is wrong because the update does not require 4x more compute; the Florence model is optimized for efficiency, and the exam focuses on functional improvements, not resource requirements. Option D is wrong because Azure AI Vision is a cloud-based image analysis service, not related to the Kinect 3D depth sensor SDK, which is a separate hardware product for motion sensing.

34
MCQmedium

A museum wants to create an app that allows visitors to take a photo of a painting and receive information about the artist, year, and style. The app needs to identify the painting from a database of thousands of artworks. Which Azure Computer Vision capability is most suitable?

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

Image classification is the correct approach because it analyzes the entire image as a single unit and assigns it a label from a predefined set of categories. In this scenario, the model could be trained on a dataset where each painting is its own class, allowing the app to map a visitor's photo to the specific artwork. It uses learned visual patterns—such as overall structure, color distribution, and distinctive motifs—to make the prediction. This directly matches the goal of identifying the painting itself, not just some element within it.

Why this answer

Image classification is the correct choice because the app needs to assign a single label (the specific painting) to the entire photo. Azure Computer Vision's image classification models are trained to recognize and categorize entire images into predefined classes, which matches the requirement of identifying a painting from a database of thousands of artworks based on the visual content of the photo.

Exam trap

The trap here is that candidates confuse image classification (labeling the whole image) with object detection (locating objects within the image), but the requirement to identify the painting from a photo of the entire artwork makes classification the precise fit.

How to eliminate wrong answers

Option A is wrong because Optical Character Recognition (OCR) extracts text from images, not visual features of paintings; it would only work if the painting had a visible label or plaque. Option C is wrong because object detection identifies and locates multiple objects within an image (e.g., people, furniture) and returns bounding boxes, but the app needs to classify the entire painting as a single entity, not detect sub-objects. Option D is wrong because face detection specifically identifies human faces in images, which is irrelevant to recognizing a painting's artistic attributes.

35
MCQmedium

What is the difference between face detection and face identification?

A.Face detection identifies who the person is; face identification counts how many faces are present
B.Face detection finds face locations; face identification determines who the person is from an enrolled database
C.Face detection works on videos; face identification works on static images only
D.They are the same operation with different names
AnswerB

This is correct: face detection first locates faces in an image or video frame, typically returning bounding-box coordinates around each face. Face identification then takes a detected face and compares its extracted feature vector (face embedding) to enrolled faces in a gallery or person group, returning the closest match or 'no match'. Azure Face API exposes separate operations for detection and identification, reinforcing that they are distinct pipeline stages.

Why this answer

Face detection is a computer vision task that locates human faces in an image or video, returning bounding box coordinates. Face identification (or recognition) goes a step further by matching a detected face against a database of enrolled individuals to determine a specific identity. Option B correctly distinguishes these two operations: detection finds where faces are, while identification determines who the person is.

Exam trap

The trap here is confusing the terms 'detection' and 'identification' as interchangeable, when in fact detection is a prerequisite for identification and they serve fundamentally different roles in a computer vision pipeline.

How to eliminate wrong answers

Option A is wrong because it reverses the definitions: face detection does not identify who the person is, and face identification does not count faces—that is a separate task called face counting. Option C is wrong because both face detection and face identification can work on both videos and static images; Azure Face API supports both modalities. Option D is wrong because they are distinct operations with different purposes and outputs—detection returns bounding boxes, identification returns identity matches from a person group.

36
MCQeasy

A museum wants to automatically transcribe handwritten labels on historical artifacts. The handwriting varies in style and may include numbers and special characters. Which Azure Computer Vision capability should they use?

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

Optical Character Recognition (OCR), specifically the Azure AI Vision Read API, is purpose-built to extract text from images, including hard-to-read handwritten labels. It uses deep learning models trained on both printed and cursive scripts to identify individual characters, words, and lines, and it returns the recognized text along with bounding-box coordinates and confidence scores. This directly matches the museum's requirement to transcribe handwritten labels into digital, searchable text. OCR handles variations in handwriting style, angle, and background noise that would be impossible for other vision techniques.

Why this answer

Optical Character Recognition (OCR) is the correct choice because it is specifically designed to extract printed or handwritten text from images, including numbers and special characters. Azure Computer Vision's OCR API can handle varied handwriting styles and convert them into machine-readable text, making it ideal for transcribing historical artifact labels.

Exam trap

The trap here is that candidates may confuse OCR with image captioning, thinking both can 'read' text, but captioning describes the image contextually rather than extracting exact characters.

How to eliminate wrong answers

Option A is wrong because image captioning generates a natural language description of the overall scene or objects in an image, not the extraction of specific text characters. Option C is wrong because facial recognition identifies or verifies individuals based on facial features, which is unrelated to text transcription. Option D is wrong because object detection identifies and locates objects (e.g., vases, tools) within an image, but it does not read or transcribe any text present on those objects.

37
MCQeasy

What is the Azure AI Vision Image Analysis 4.0's 'Florence' foundation model capable of?

A.Only detecting faces in images
B.Advanced image understanding including detailed captions, dense captioning, and multimodal embeddings
C.Only processing medical imaging for diagnostic purposes
D.Converting images into 3D models
AnswerB

Florence is a vision foundation model designed for advanced image understanding. It generates detailed natural-language captions for an entire image, produces dense captioning that describes multiple regions or objects within the scene, and creates multimodal embeddings that map images and text into a shared vector space for tasks like image retrieval and zero-shot classification. These capabilities match the Azure AI Vision implementation of Florence.

Why this answer

The Florence foundation model in Azure AI Vision Image Analysis 4.0 is a multimodal model designed for advanced image understanding. It can generate detailed image captions, produce dense captions (describing multiple regions within an image), and create multimodal embeddings that align visual and textual representations for tasks like image search and similarity.

Exam trap

The trap here is that candidates may assume 'foundation model' only applies to language tasks (like GPT) and overlook that Florence is a multimodal vision-language model, leading them to choose a narrow option like face detection or medical imaging.

How to eliminate wrong answers

Option A is wrong because the Florence model goes far beyond face detection; it is a general-purpose vision model capable of scene understanding, object recognition, and captioning, not limited to facial analysis. Option C is wrong because Florence is not specialized for medical imaging; Azure AI Vision offers separate healthcare-specific APIs (e.g., Medical Imaging) for diagnostic purposes, but Florence is a general foundation model. Option D is wrong because Florence does not convert images into 3D models; 3D model generation is not a capability of Image Analysis 4.0, which focuses on 2D image understanding and metadata extraction.

38
MCQmedium

What is 'Azure AI Custom Vision' and how does it differ from Azure AI Vision?

A.Azure AI Vision is for video; Custom Vision is for still images only
B.Azure AI Vision offers pre-built general models; Custom Vision lets you train models for your specific categories
C.Custom Vision is more expensive because it uses more advanced AI algorithms
D.Azure AI Vision requires GPU compute; Custom Vision runs on CPU only
AnswerB

Azure AI Vision provides immediate access to Microsoft's pre-trained, general-purpose image analysis models—such as OCR, object detection, image tagging, and landmark recognition—without any custom training required. Custom Vision, in contrast, lets you upload your own labeled images and train a model to recognize your specific categories, such as a particular defect or animal species. Therefore, the correct answer is that one offers out-of-the-box general models and the other offers user-customized classification or detection.

Why this answer

Azure AI Vision provides pre-trained models for common computer vision tasks like object detection, OCR, and image analysis without requiring custom training data. Azure AI Custom Vision, on the other hand, allows you to upload your own labeled images and train a model to recognize specific categories or objects that are unique to your business scenario. This distinction makes B correct because it highlights the key difference: pre-built general models versus custom-trained models.

Exam trap

The trap here is that candidates often confuse 'Custom Vision' with being a more advanced or expensive version of Azure AI Vision, when in fact the core distinction is about customization versus pre-built functionality, not cost or hardware requirements.

How to eliminate wrong answers

Option A is wrong because Azure AI Vision is not limited to video; it supports both images and video analysis, while Custom Vision also works with still images and can be used for image classification and object detection. Option C is wrong because Custom Vision is not inherently more expensive due to 'more advanced AI algorithms'; pricing is based on compute time, training hours, and prediction API calls, not on algorithm complexity, and both services use similar underlying deep learning techniques. Option D is wrong because neither service strictly requires GPU compute; both can run on CPU-based infrastructure, though GPU acceleration may be used for training in Custom Vision to improve speed, but it is not a mandatory requirement.

39
MCQmedium

A logistics company needs to automatically read shipping labels on packages, which include text printed in various fonts and sizes, as well as handwritten addresses. Which Azure Computer Vision capability should they use?

A.Optical Character Recognition (OCR) via the Read API
B.Dense Captioning
C.Image Analysis - Object Detection
D.Image Analysis - Tagging
AnswerA

The Read API leverages Optical Character Recognition (OCR) technology to extract the actual text characters, both printed and handwritten, from images. For shipping labels, this means it can transcribe addresses, tracking numbers, and postal codes directly into machine-readable strings, along with bounding-box location for each line and word. Because its OCR engine is designed specifically for text extraction, it is the correct service for reading label content.

Why this answer

The Read API is the correct choice because it is specifically designed for extracting printed and handwritten text from images, handling various fonts, sizes, and styles. This makes it ideal for reading shipping labels that contain both machine-printed text and handwritten addresses.

Exam trap

The trap here is that candidates may confuse general image analysis capabilities (like tagging or object detection) with text extraction, not realizing that OCR via the Read API is the dedicated service for reading text from images.

How to eliminate wrong answers

Option B is wrong because Dense Captioning generates descriptive captions for regions of an image, not text extraction. Option C is wrong because Object Detection identifies and locates objects (e.g., boxes, pallets) but does not read text. Option D is wrong because Image Analysis - Tagging assigns descriptive tags to the entire image (e.g., 'package', 'label') but does not extract the textual content.

40
MCQmedium

An autonomous driving company is developing a system that needs to understand the road scene at a granular level. For each pixel in a camera image, the system must classify whether it belongs to the road, a pedestrian, a vehicle, a traffic sign, or the sky. Which Azure Computer Vision capability should they use?

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

Semantic segmentation classifies every pixel into a predefined class (e.g., road, sidewalk, car, person), producing a dense, pixel-aligned label map. This per-pixel understanding is essential for autonomous driving to precisely identify drivable area, obstacle boundaries, and lane markings. Unlike object detection, it provides the exact shape and extent of each scene element, enabling safe path planning.

Why this answer

Semantic segmentation is the correct choice because it classifies every pixel in an image into a predefined category, such as road, pedestrian, vehicle, traffic sign, or sky. This pixel-level classification is essential for autonomous driving to understand the road scene at a granular level, enabling precise boundary detection and scene understanding.

Exam trap

The trap here is that candidates confuse object detection with pixel-level classification, assuming bounding boxes provide enough detail, but semantic segmentation is required for granular scene understanding where every pixel matters.

How to eliminate wrong answers

Option A is wrong because image classification assigns a single label to the entire image, not individual pixels, so it cannot distinguish between road, pedestrian, and sky in the same scene. Option B is wrong because object detection identifies and locates objects with bounding boxes, but it does not classify every pixel, missing fine-grained boundaries like the edge of a road or the shape of a traffic sign. Option D is wrong because optical character recognition (OCR) extracts text from images, such as reading a speed limit sign, but it does not classify pixels into scene categories like road or sky.

41
MCQmedium

What is the purpose of the Azure AI Document Intelligence's prebuilt models?

A.Training custom document extraction models for unique business forms
B.Extracting structured data from common document types (invoices, receipts, IDs) without custom training
C.Translating documents from one language to another
D.Converting documents to PDF format for archiving
AnswerB

Prebuilt models in Azure AI Document Intelligence are pretrained to recognize common document types such as invoices, receipts, and IDs, and they automatically extract fields like vendor name, invoice total, purchase date, and license number. These models require no custom labeling or training—you simply submit the document to the endpoint and receive structured JSON output. That is precisely the capability described in this option, so it is the correct answer.

Why this answer

Azure AI Document Intelligence's prebuilt models are designed to extract structured data from common document types such as invoices, receipts, and IDs without requiring any custom training. They leverage pre-trained neural networks that recognize fields like invoice totals, receipt line items, and ID numbers, enabling rapid data extraction for standard forms. This aligns with the purpose of reducing manual data entry and accelerating document processing workflows.

Exam trap

The trap here is that candidates often confuse prebuilt models with custom models, assuming that all Document Intelligence models require training, when in fact prebuilt models are ready-to-use for common document types.

How to eliminate wrong answers

Option A is wrong because training custom document extraction models for unique business forms is the purpose of Document Intelligence's custom model feature, not its prebuilt models. Option C is wrong because translating documents between languages is a function of Azure AI Translator, not Document Intelligence. Option D is wrong because converting documents to PDF format for archiving is a general file conversion task, not a capability of Document Intelligence, which focuses on extracting information from documents, not changing their format.

42
MCQmedium

What is 'document intelligence' (Azure AI Document Intelligence) and what types of documents can it process?

A.A service that creates documents from structured data in a database
B.A service that extracts structured data (fields, tables, key-value pairs) from forms and documents
C.A document management system for storing and organising files in Azure
D.A grammar checking tool that reviews documents for writing quality
AnswerB

The correct answer is accurate: Document Intelligence uses optical character recognition (OCR), layout analysis, and trained models to interpret documents such as invoices, receipts, and forms, then emits structured data—fields, tables, and key-value pairs—as JSON. This extraction pipeline is what makes it a foundation for automated document processing workflows, unlike tools that merely store files or review text.

Why this answer

Azure AI Document Intelligence (formerly Form Recognizer) is a service that uses optical character recognition (OCR) and machine learning to extract structured data—such as fields, tables, and key-value pairs—from scanned forms and documents. This enables automated processing of invoices, receipts, business cards, and other structured documents without manual data entry.

Exam trap

The trap here is that candidates confuse 'document intelligence' with general document management or editing tools, but the exam specifically tests that it is an extraction service for structured data from forms and documents.

How to eliminate wrong answers

Option A is wrong because Document Intelligence does not create documents from structured data; that describes a document generation or templating service, not an extraction service. Option C is wrong because Document Intelligence is not a document management system for storing and organizing files; that describes Azure Blob Storage or SharePoint, not an AI-based extraction service. Option D is wrong because Document Intelligence does not perform grammar checking or writing quality review; that describes a natural language processing tool like Azure AI Language's text analysis, not a document extraction service.

43
Drag & Dropmedium

Drag and drop the steps to create a bot with Azure Bot Service into the correct order.

Drag steps to the numbered slots on the right, or tap a step then tap a slot.

Steps
Order
1Step 1
2Step 2
3Step 3
4Step 4

Why this order

Creating a bot involves provisioning a resource, developing logic, testing, and connecting channels.

44
MCQmedium

What does the 'read' operation in Azure AI Vision do?

A.Reads and describes what's happening in a video
B.Extracts printed and handwritten text from images and documents
C.Reads and verifies digital signatures in documents
D.Reads metadata (EXIF data) embedded in image files
AnswerB

The Read API (OCR) is designed to extract both printed and handwritten text from a variety of sources, including JPEG images, PDFs, and other document formats. It leverages deep learning models to identify words, lines, and their spatial coordinates, returning text content along with confidence scores and bounding boxes. This precisely matches the core purpose of the Read operation, making it the correct answer here.

Why this answer

The 'read' operation in Azure AI Vision is specifically designed to extract printed and handwritten text from images and documents using Optical Character Recognition (OCR) technology. It returns the detected text along with bounding box coordinates and confidence scores, making it suitable for digitizing documents, processing forms, and extracting text from photos.

Exam trap

The trap here is that candidates confuse the 'read' operation with the 'analyze image' operation (which describes images) or assume it handles video, but the 'read' API is strictly for text extraction from static images and documents.

How to eliminate wrong answers

Option A is wrong because the 'read' operation does not analyze video content; video analysis is handled by Azure Video Indexer or the Video Analyzer service, not the 'read' API. Option C is wrong because the 'read' operation does not verify digital signatures; signature verification is a cryptographic function typically performed by Azure Key Vault or custom PKI solutions, not by computer vision OCR. Option D is wrong because the 'read' operation does not read metadata like EXIF data; EXIF data is extracted using image processing libraries or Azure Media Services, while the 'read' API focuses solely on text content within the image.

45
MCQmedium

What is 'scene understanding' in Azure AI Vision?

A.Classifying images by the type of filming location (indoor, outdoor, urban, rural)
B.Holistic comprehension of an image's full context, relationships, and scene description
C.Breaking an image into individual scenes for video timeline analysis
D.Determining the camera settings (ISO, aperture) used to capture a photograph
AnswerB

Scene understanding in Azure AI Vision goes far beyond listing detected objects; it synthesizes a single, coherent natural-language description of the image's overall meaning. The service reasons about spatial relationships between entities (e.g., 'a red car parked by a glass office building') and captures the broader context, actions, and ambiance, effectively answering 'what is happening in this picture?' This holistic, relational comprehension is the core of scene understanding.

Why this answer

Scene understanding in Azure AI Vision goes beyond simple image classification to provide a holistic comprehension of an image's full context, including objects, their relationships, and a descriptive scene summary. This capability leverages deep learning models to analyze the entire visual content and generate human-readable captions that describe what is happening in the image, such as 'a group of people playing soccer in a park.'

Exam trap

The trap here is that candidates often confuse scene understanding with simpler image classification or metadata extraction, leading them to pick options like A or D, which describe narrower tasks rather than the holistic contextual analysis that defines scene understanding.

How to eliminate wrong answers

Option A is wrong because classifying images by filming location (indoor, outdoor, urban, rural) is a specific type of image classification or domain detection, not the comprehensive scene understanding that includes object relationships and full context. Option C is wrong because breaking an image into individual scenes for video timeline analysis is a video analysis task (e.g., shot detection or keyframe extraction), not a core capability of Azure AI Vision's scene understanding feature, which operates on static images. Option D is wrong because determining camera settings like ISO and aperture is metadata extraction or EXIF analysis, which is unrelated to the semantic understanding of image content provided by scene understanding.

46
MCQmedium

A retail company uses security cameras to monitor shelves. They want to identify whether a customer is holding a specific product (e.g., a green detergent bottle) and also determine the location of that product within the camera frame. Which 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 it localizes each product instance with a bounding box and assigns a class label, giving both the identity and XY coordinates of every detected object. This allows the system to count items on shelves, identify empty spaces, and even track stock levels over time. The output is ideal for downstream analytics such as triggering reorders or detecting displacement, which directly matches the retail monitoring requirement.

Why this answer

Object detection is the correct capability because it not only identifies the presence of a specific product (like a green detergent bottle) in an image but also returns bounding box coordinates that indicate the product's location within the camera frame. This dual output—classification plus localization—directly matches the requirement to both recognize the object and determine its position.

Exam trap

The trap here is that candidates often confuse object detection with image classification, thinking that identifying the product is sufficient, but they overlook the explicit requirement for location information that only object detection provides.

How to eliminate wrong answers

Option B is wrong because image classification assigns a single label to the entire image (e.g., 'detergent bottle') but does not provide any spatial information about where the object is located. Option C is wrong because OCR is designed to extract text from images, not to identify or locate physical products like a detergent bottle. Option D is wrong because semantic segmentation assigns a class label to every pixel in the image, creating a pixel-level mask, but it does not output bounding boxes or directly indicate the product's location within the frame in a way that is typically used for product detection tasks.

47
MCQmedium

A retail company uses overhead cameras to monitor shelf inventory in a store. They want to build a system that automatically detects whether a shelf section is empty or stocked, and specifically identify product categories (e.g., 'soft drinks', 'chips', 'canned goods') and count the number of items in each category. The company has a large set of labeled images showing different shelf states. Which Azure Computer Vision service should they use to build this custom detection and counting solution?

A.Computer Vision Image Analysis with dense captioning
B.Custom Vision object detection
C.Optical Character Recognition (OCR)
D.Azure Machine Learning with a pre-trained YOLO model
AnswerB

Custom Vision object detection is specifically designed for training models to detect and locate objects of interest. With labeled images of product categories, you can create a model that outputs bounding boxes around each detected item, enabling counting.

Why this answer

Custom Vision object detection is the correct choice because it allows the company to train a model on their labeled images to detect and localize specific product categories (e.g., 'soft drinks', 'chips') and count items within each category. Unlike pre-built Computer Vision features, Custom Vision enables custom object detection with bounding boxes and classification, which directly supports the requirement for detecting shelf states and counting items per category.

Exam trap

The trap here is that candidates confuse pre-built Computer Vision features (like dense captioning or OCR) with Custom Vision, assuming any Azure Computer Vision service can be customized without training, but only Custom Vision supports custom object detection with bounding boxes and counting.

Why the other options are wrong

A

Dense captioning generates descriptive captions for regions of an image, but it does not provide structured object detection with bounding boxes and counts per category, which is required for counting items per product category.

D

Azure Machine Learning with a pre-trained YOLO model is not a managed Azure Computer Vision service; it requires custom model training and deployment, whereas Custom Vision provides a simpler, integrated solution for custom object detection without managing infrastructure.

48
MCQmedium

What does Azure AI Vision's 'people detection' (spatial analysis) feature track?

A.Identifying the names of specific people in video footage
B.Counting, tracking movement, and measuring occupancy of people in defined zones from video
C.Detecting whether people are wearing masks or safety equipment
D.Measuring individual people's heights and body dimensions
AnswerB

Spatial analysis in Azure Computer Vision is specifically designed to detect persons in video frames, track their movement across a scene over time, and compute aggregate metrics such as zone occupancy, queue length, entry/exit counts, and dwell time. It operates on anonymous bounding boxes and centroids, never on individual identities, so it answers 'how many people are here and where are they moving' rather than 'who is here.' This makes it the stated purpose of the feature, and the correct description of what spatial analysis natively delivers.

Why this answer

Azure AI Vision's spatial analysis (people detection) tracks the movement of people in video feeds, counting individuals and measuring how long they stay in defined zones. It does not identify specific people, detect masks or safety equipment, or measure body dimensions. This feature is designed for occupancy monitoring and flow analysis in physical spaces.

Exam trap

The trap here is that candidates confuse 'people detection' with facial recognition or attribute detection (like masks), but Azure AI Vision's spatial analysis is strictly about anonymous tracking and counting, not identification or detailed attribute analysis.

How to eliminate wrong answers

Option A is wrong because Azure AI Vision's people detection does not perform facial recognition or identify specific individuals; it only detects and tracks people as anonymous objects. Option C is wrong because detecting masks or safety equipment is a separate custom vision capability, not part of the spatial analysis people detection feature. Option D is wrong because the feature does not measure individual heights or body dimensions; it only tracks presence, movement, and occupancy in zones.

49
MCQmedium

What is Azure AI Document Intelligence's 'custom extraction model' used for?

A.Automatically generating new document templates from existing forms
B.Training on your labeled documents to extract business-specific fields not covered by prebuilt models
C.Translating documents into multiple languages simultaneously
D.Redacting sensitive information from documents automatically
AnswerB

Custom extraction models are trained on your own labeled documents, where you tag the fields that matter to your business, so they can extract data that prebuilt models do not cover. Azure AI Document Intelligence lets you create a custom model by labeling a few sample documents with field names and positions, then the model learns those patterns and extracts those fields from new documents automatically. This directly matches the scenario of extracting business-specific fields from documents that don't fit standard prebuilt models, because the model is tailored to your exact forms.

Why this answer

Azure AI Document Intelligence's custom extraction model is correct because it allows you to train a model on your own labeled documents to extract fields that are specific to your business domain and not covered by prebuilt models. This is essential for processing specialized forms like invoices, contracts, or medical records that have unique data fields.

Exam trap

The trap here is that candidates often confuse custom extraction models with template generation or translation, assuming Document Intelligence can create templates or translate text, when in reality it is strictly for extraction and classification of document content.

How to eliminate wrong answers

Option A is wrong because custom extraction models do not generate new document templates; they learn to extract specific fields from existing documents, not create templates. Option C is wrong because document translation is handled by Azure AI Translator, not Document Intelligence, which focuses on extraction and classification. Option D is wrong because redaction of sensitive information is not a built-in feature of custom extraction models; it would require additional processing or integration with other services like Azure Purview or custom logic.

50
MCQeasy

What is 'Azure AI Vision's Read API' and what makes it superior for OCR?

A.The standard API for reading data from Azure Storage accounts and databases
B.An advanced OCR service handling multi-page PDFs, handwriting, and complex layouts with word-level coordinates
C.An API for reading audio content and converting it to text transcripts
D.A feature for reading the metadata of image files stored in Azure Blob Storage
AnswerB

The Read API is an advanced OCR engine in Azure AI Document Intelligence that goes far beyond simple one-line text recognition. It processes entire multi-page PDFs, interprets handwritten notes, handles dense or complex layouts such as forms and reports, and returns each word with its bounding-box coordinates and confidence scores. This positional information makes it a foundational building block for downstream automation like key-value extraction, document classification, and searchable PDF generation.

Why this answer

Azure AI Vision's Read API is an advanced OCR service that extracts text from images and documents, including multi-page PDFs, handwritten text, and complex layouts. It is superior because it returns word-level bounding box coordinates and confidence scores, enabling precise text localization and structured output for downstream processing.

Exam trap

The trap here is that candidates may confuse the Read API with other Azure services like Storage APIs or Speech services, overlooking that it is specifically a computer vision OCR service for text extraction from images and documents.

How to eliminate wrong answers

Option A is wrong because the Read API is not for reading data from Azure Storage accounts or databases; it is an OCR service for extracting text from visual content. Option C is wrong because reading audio content and converting it to text is the function of Azure Speech-to-Text, not the Read API. Option D is wrong because reading metadata of image files is not the purpose of the Read API; it extracts text content from images, not file metadata.

51
MCQeasy

A hotel booking website wants to automatically analyze guest-submitted photos of hotel rooms to verify if they contain common amenities such as a bed, a desk, and a chair. They want to use a prebuilt Azure AI service without any custom training. Which feature should they use?

A.Optical Character Recognition (OCR)
B.Image Analysis (prebuilt)
C.Object Detection
D.Handwriting OCR
AnswerC

Azure Computer Vision's prebuilt object detection identifies common objects (such as bed, desk, chair) in an image and returns their locations with bounding boxes. This is the correct capability for verifying the presence of specific furniture items.

Why this answer

Object Detection (prebuilt) is the correct choice because it can identify and locate multiple specific objects (bed, desk, chair) within an image by drawing bounding boxes around them. This prebuilt Azure AI Vision feature requires no custom training and directly supports detecting common amenities in hotel room photos.

Exam trap

The trap here is that candidates confuse 'Image Analysis' (which provides descriptive tags but not precise object localization) with 'Object Detection' (which provides bounding boxes for specific objects), leading them to choose Option B incorrectly.

Why the other options are wrong

A

OCR extracts text from images, but the task requires identifying objects (bed, desk, chair), not reading text.

B

Image Analysis (prebuilt) can identify objects and scenes but does not specifically detect and locate multiple instances of predefined objects like a bed, desk, and chair in a single image. Object Detection is required for that.

D

Handwriting OCR is designed to recognize handwritten text, not to detect objects like beds, desks, or chairs in images.

52
MCQmedium

What is 'image segmentation' and how does it differ from object detection?

A.Dividing an image file into smaller files for distributed storage
B.Classifying every pixel in an image to identify precise boundaries — more detailed than bounding-box object detection
C.Removing the background from an image by detecting edges
D.Dividing the training dataset into segments for cross-validation
AnswerB

Image segmentation is the task of assigning a class label to each pixel in an image so that every element—objects, background, and fine structural details—is precisely delineated. This is more granular than object detection, which outputs a coarse bounding box that often includes surrounding background pixels, because a segmentation mask identifies the exact contour and shape of each object. The result is a dense per-pixel prediction map that can be used for tasks like medical tumor delineation, autonomous-driving scene understanding, or synthetic-image compositing.

Why this answer

Image segmentation classifies every pixel in an image into a category, producing pixel-level masks that outline objects with precise boundaries. This differs from object detection, which only draws bounding boxes around objects and does not distinguish object edges or overlapping instances. Option B correctly captures this higher granularity and accuracy.

Exam trap

The trap here is that candidates confuse 'image segmentation' with simple background removal or edge detection, overlooking the requirement for pixel-level classification across all object categories.

How to eliminate wrong answers

Option A is wrong because it describes file splitting for storage, not a computer vision technique; image segmentation operates on pixel data within a single image, not on file distribution. Option C is wrong because it oversimplifies segmentation as mere background removal via edge detection, whereas true segmentation assigns every pixel to a class (e.g., road, car, pedestrian) and handles multiple objects and overlapping regions. Option D is wrong because it confuses dataset partitioning for model validation with the computer vision task of partitioning an image into semantic regions.

53
MCQeasy

A photo sharing app wants to automatically generate descriptive captions for uploaded photos to improve accessibility for visually impaired users. Which Azure Computer Vision feature should they use?

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

Describe Image, more formally known as image captioning, is a deep-learning capability that combines computer vision and natural language generation to produce a complete sentence describing the salient objects, actions, and scene context in an image. It uses an encoder-decoder architecture—typically a convolutional neural network (CNN) to extract visual features and a recurrent or transformer-based language model to generate text—to create coherent, contextually relevant captions. This feature directly matches the app's goal of automatic descriptive text generation, and it is commonly used for accessibility features such as screen readers, where a visually impaired user needs to understand what is in a photo.

Why this answer

The Describe Image (Image Captioning) feature of Azure Computer Vision generates human-readable captions that describe the content of an image. This directly meets the requirement of automatically generating descriptive captions for uploaded photos to improve accessibility for visually impaired users.

Exam trap

The trap here is that candidates often confuse Object Detection (identifying objects) with Image Captioning (describing the scene), or assume OCR is sufficient for accessibility when it only handles text extraction, not scene understanding.

How to eliminate wrong answers

Option A is wrong because Optical Character Recognition (OCR) extracts text from images, not descriptive captions about the image content. Option B is wrong because Object Detection identifies and locates specific objects within an image, but does not generate a natural language description of the overall scene. Option C is wrong because Image Classification assigns a single label or category to an image, not a multi-sentence descriptive caption.

54
MCQmedium

A city traffic department wants to use Azure Computer Vision to automatically analyze live video feeds from traffic cameras. They need to detect and locate common objects such as cars, pedestrians, and bicycles in each frame. The department does not have a labeled dataset for custom training. Which prebuilt Azure Computer Vision capability should they use?

A.Image Analysis (descriptive tags and captions)
B.Optical Character Recognition (OCR) API
C.Object Detection (part of Image Analysis 4.0)
D.Custom Vision object detection
AnswerC

Object Detection in Image Analysis 4.0 is a prebuilt Azure AI Vision capability that returns bounding-box coordinates and confidence scores for common objects such as cars, people, and bicycles, all without any custom training. Since the traffic department only needs to locate known objects in street imagery, this API directly satisfies the requirement.

Why this answer

The Object Detection capability within Image Analysis 4.0 can detect and locate common objects (e.g., cars, pedestrians, bicycles) in images or video frames without requiring any labeled dataset. It provides bounding box coordinates for each detected object, which directly meets the requirement to 'detect and locate' objects in live traffic camera feeds.

Exam trap

The trap here is that candidates may confuse 'descriptive tags' (Option A) with object detection, not realizing that tags only describe the scene without providing spatial location, which is essential for the 'locate' requirement in the question.

Why the other options are wrong

A

Image Analysis with descriptive tags and captions identifies objects and scenes but does not provide bounding box coordinates to locate objects within the frame, which is required for detecting and locating cars, pedestrians, and bicycles.

B

The OCR API extracts text from images, not objects like cars or pedestrians. The question requires detecting and locating objects, not reading text.

D

The department lacks a labeled dataset for custom training, so Custom Vision object detection cannot be used without first creating and training a custom model with labeled images.

55
MCQeasy

What is the Azure AI Vision service's 'Image Analysis 4.0' major new capability compared to previous versions?

A.Support for processing video files, which was not available in version 3.x
B.The Florence foundation model enabling detailed captions, dense captioning, background removal, and multimodal embeddings
C.Support for the first time for color analysis features in images
D.The ability to process images larger than 4MB for the first time
AnswerB

Image Analysis 4.0 is powered by the Florence foundation model, a large-scale vision model that delivers the signature capabilities of this API version. These include detailed one-sentence captions, dense captioning that describes multiple objects and regions within a single image, background removal via foreground segmentation, and multimodal embeddings that map images and text into a shared vector space. This is the major advancement over version 3.x, which relied on narrower, task-specific models and could not provide the same depth of semantic understanding.

Why this answer

Image Analysis 4.0 introduces the Florence foundation model, which significantly enhances image understanding capabilities. This model enables detailed captions, dense captioning (generating captions for multiple regions within an image), background removal, and multimodal embeddings that align images and text in a shared vector space. These features go far beyond the classification, object detection, and OCR capabilities of version 3.x.

Exam trap

The trap here is that candidates may confuse Image Analysis 4.0's new Florence model with general AI improvements, mistakenly thinking video support or larger file sizes are the headline feature, when the core innovation is the foundational model's advanced image understanding.

How to eliminate wrong answers

Option A is wrong because video processing is not a new capability of Image Analysis 4.0; Azure Video Indexer and Azure Media Services handle video, while Image Analysis remains focused on still images. Option C is wrong because color analysis features, such as dominant colors and accent color detection, have been available since earlier versions (e.g., Image Analysis 3.x). Option D is wrong because the 4MB image size limit has not been a hard constraint in previous versions; the service has always accepted images up to 4MB, and version 4.0 does not change this limit.

56
MCQmedium

A retail chain uses ceiling-mounted cameras to monitor shelf inventory. They need to identify and locate individual products (e.g., a specific brand of cereal) within an image and count how many are present. Which Azure Computer Vision capability should they use?

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

Object detection is the correct choice because it jointly performs localization and classification: for each object of interest, it returns a bounding box (x, y, width, height) and a class label, along with a confidence score. Modern detectors like Faster R-CNN use region proposal networks, while single-shot detectors like YOLO predict boxes and classes directly from feature maps. The presence of per-instance boxes lets the retail chain count every product in the camera's field of view, which is exactly what the monitoring scenario requires.

Why this answer

Object detection is the correct capability because it not only identifies the presence of a specific product (e.g., a brand of cereal) within an image but also localizes each instance by drawing bounding boxes around them, enabling an accurate count. Image classification would only label the entire image as containing cereal without locating individual boxes, while OCR and semantic segmentation serve different purposes (text extraction and pixel-level labeling, respectively).

Exam trap

The trap here is that candidates confuse object detection with image classification, assuming that labeling the image as 'cereal' is sufficient to count items, when in fact object detection is required for instance-level localization and counting.

How to eliminate wrong answers

Option A is wrong because image classification assigns a single label to the entire image (e.g., 'cereal') and cannot distinguish multiple instances or provide their locations, making it impossible to count individual products. Option C is wrong because optical character recognition (OCR) extracts text from images, not objects, so it cannot identify or count non-textual products like cereal boxes. Option D is wrong because semantic segmentation classifies every pixel into categories (e.g., 'cereal box' vs. 'shelf') but does not differentiate between individual instances of the same class, so it cannot count separate boxes of the same brand.

57
MCQmedium

A warehouse uses AI to monitor inventory. They need to detect the presence and location of specific objects (e.g., forklifts, pallets) in real-time video feeds. Which Azure Computer Vision capability should they use?

A.Image classification
B.OCR (optical character recognition)
C.Object detection
D.Facial recognition
AnswerC

Object detection combines classification and localization, scanning an image to find multiple instances of known classes and outputting a bounding box plus class label for each. In a warehouse scenario, it can simultaneously detect forklifts, pallets, and shelves, providing the coordinates needed to monitor inventory movement and count items. This directly supports the requirement to 'detect' items in a way that image classification alone cannot.

Why this answer

Object detection is the correct choice because it identifies specific objects (e.g., forklifts, pallets) within an image or video frame and returns bounding box coordinates indicating their location. This capability is designed for real-time spatial awareness, which directly matches the warehouse's need to detect both the presence and position of objects in video feeds.

Exam trap

The trap here is that candidates confuse image classification (which only labels the whole scene) with object detection (which locates individual objects), especially when the question emphasizes 'presence and location' — a classic AI-900 pitfall.

How to eliminate wrong answers

Option A is wrong because image classification assigns a single label to an entire image (e.g., 'warehouse') but does not locate multiple objects or provide their positions. Option B is wrong because OCR extracts text from images, not physical objects like forklifts or pallets. Option D is wrong because facial recognition identifies or verifies human faces, not inanimate objects such as warehouse inventory.

58
MCQmedium

Which Azure AI service is used to index and extract insights from large collections of videos at scale?

A.Azure AI Custom Vision
B.Azure AI Video Indexer
C.Azure Blob Storage media services
D.Azure AI Speech transcription only
AnswerB

Video Indexer extracts transcripts, faces, topics, scenes, and more from videos automatically, making video libraries searchable.

Why this answer

Azure AI Video Indexer is the correct service because it is specifically designed to ingest large collections of videos, extract metadata (such as transcripts, faces, emotions, and keyframes), and provide searchable insights at scale. Unlike other Azure AI services, Video Indexer combines multiple AI models (speech, vision, and language) into a single pipeline optimized for video content, making it the appropriate choice for indexing and extracting insights from video libraries.

Exam trap

The trap here is that candidates confuse Azure AI Video Indexer with Azure AI Speech transcription only, assuming that extracting insights from video is solely about transcribing audio, when in fact Video Indexer combines speech, vision, and language AI to provide comprehensive video insights.

How to eliminate wrong answers

Option A is wrong because Azure AI Custom Vision is a service for training custom image classification and object detection models on still images, not for indexing or extracting insights from video collections. Option C is wrong because Azure Blob Storage is a scalable object storage service for unstructured data (including video files), but it does not perform AI-based indexing or insight extraction; it only stores the media. Option D is wrong because Azure AI Speech transcription only handles audio-to-text conversion (speech recognition) and does not provide video-specific insights such as scene detection, facial recognition, or keyframe extraction.

59
MCQeasy

A security company wants to use Azure Computer Vision to monitor a restricted area. They need to count the number of people present in each camera frame and draw bounding boxes around each person. Which Azure Computer Vision capability should they use?

A.Optical Character Recognition (OCR)
B.Image Analysis (object detection)
C.Face detection
D.Image classification
AnswerB

Image Analysis with object detection is correct because Azure AI Vision's object detection feature identifies instances of trained object categories, including person, and returns a bounding box and confidence score for each detection. By counting the returned person instances, the system can report how many people are present and where they are located in the frame. This directly supports security monitoring scenarios that need to detect and track people in an image or video frame.

Why this answer

(Image Analysis with object detection) is correct because Azure Computer Vision's object detection capability can identify and locate multiple instances of a specific object class—in this case, people—within an image. It returns bounding box coordinates for each detected person, enabling the security company to count individuals and draw boxes around them in each camera frame.

Exam trap

The trap here is confusing face detection (which only finds faces) with object detection (which finds full people), leading candidates to choose Face detection when the requirement is to count people regardless of face visibility.

How to eliminate wrong answers

Option A is wrong because Optical Character Recognition (OCR) extracts text from images, not people or objects, so it cannot count people or draw bounding boxes around them. Option C is wrong because Face detection specifically identifies and locates human faces, not full bodies; it would miss people whose faces are not visible (e.g., turned away or partially occluded) and does not count people as whole objects. Option D is wrong because Image classification assigns a single label to the entire image (e.g., 'restricted area') and does not provide bounding boxes or count multiple instances of an object within the image.

60
MCQmedium

What does Azure AI Vision return when it detects that an image may contain adult content?

A.The image is immediately deleted from Azure Storage
B.Boolean flags and confidence scores for adult, racy, and gory content categories
C.A list of specific body parts detected in the image
D.An age verification requirement for the requesting user
AnswerB

For each image, Azure AI Vision returns boolean flags—`isAdultContent`, `isRacyContent`, and `isGoryContent`—along with confidence scores between 0 and 1 that indicate how likely each category is present. These values let the calling application enforce its own moderation thresholds, such as blocking content above 0.8 or routing borderline results for human review. This is the intended output for content moderation decisions.

Why this answer

Azure AI Vision's content moderation feature analyzes images for adult, racy, and gory content. It returns Boolean flags (indicating whether content is detected) and confidence scores (ranging from 0 to 1) for each category, allowing applications to make policy-based decisions without deleting or altering the original image.

Exam trap

The trap here is that candidates assume Azure AI Vision automatically deletes or blocks content (Option A), when in fact it only returns classification metadata, leaving action decisions to the calling application.

How to eliminate wrong answers

Option A is wrong because Azure AI Vision does not automatically delete images from Azure Storage; it only returns classification metadata, and deletion would require explicit application logic. Option C is wrong because Azure AI Vision does not return lists of specific body parts; that would require a different service like Azure AI Video Indexer or custom object detection models. Option D is wrong because Azure AI Vision does not enforce age verification on the requesting user; it simply analyzes the image content and returns scores, leaving access control to the application.

61
MCQmedium

What is the Azure AI Custom Vision portal used for?

A.Managing Azure subscription billing for AI services
B.Training and evaluating custom image classification and object detection models without code
C.Building chatbots using natural language understanding
D.Monitoring the health of deployed AI services
AnswerB

The Custom Vision portal provides a fully no-code workflow for image classification and object detection: you upload and tag images, train a model, and immediately evaluate performance on a test set. It supports both single-label and multi-label classification as well as object detection with bounding boxes, and it lets you iterate on training runs without writing a single line of code. After evaluation, you can publish or export the model for integration, but training and evaluation are the portal's core strengths.

Why this answer

The Azure AI Custom Vision portal is a no-code web interface that allows users to upload images, label them, and train custom image classification or object detection models. It abstracts away the underlying machine learning code, making it accessible for non-developers to build and evaluate computer vision models tailored to their specific use cases.

Exam trap

The trap here is that candidates confuse the Custom Vision portal with other Azure AI services like Computer Vision or LUIS, assuming it handles general image analysis or NLP tasks, when it is specifically for training custom models with user-provided labeled data.

How to eliminate wrong answers

Option A is wrong because managing Azure subscription billing for AI services is handled through the Azure Cost Management + Billing portal, not the Custom Vision portal. Option C is wrong because building chatbots using natural language understanding is the purpose of Azure AI Language (formerly LUIS) or Azure Bot Service, not Custom Vision. Option D is wrong because monitoring the health of deployed AI services is done via Azure Monitor or Application Insights, not the Custom Vision portal.

62
MCQmedium

A logistics company uses overhead cameras at a shipping dock to read labels on packages. The labels contain text in various fonts, sizes, and orientations, and sometimes the text is partially obscured. Which Azure Computer Vision capability should they use to extract the text from these labels?

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

OCR extracts text from images and is ideal for reading labels with varying fonts, sizes, and orientations.

Why this answer

Optical Character Recognition (OCR) is the correct choice because it is specifically designed to extract printed or handwritten text from images, handling variations in fonts, sizes, orientations, and partial occlusion. Azure Computer Vision's OCR API (Read API) uses deep-learning models to detect and digitize text from natural scenes, making it ideal for reading labels on packages in a logistics environment.

Exam trap

The trap here is that candidates may confuse object detection (which finds objects) with OCR (which reads text), or assume image classification can handle text extraction, when in fact OCR is the only Azure Computer Vision capability purpose-built for digitizing text from images.

How to eliminate wrong answers

Option A is wrong because object detection identifies and locates objects (e.g., packages, people) within an image, but it does not extract text content from labels. Option C is wrong because image classification assigns a single label or category to an entire image (e.g., 'shipping dock'), but it cannot read or digitize the text on labels. Option D is wrong because semantic segmentation partitions an image into pixel-level regions belonging to different classes (e.g., package vs. floor), but it does not perform text extraction.

63
MCQeasy

A construction safety team wants to automatically detect whether workers on a job site are wearing hard hats by analyzing images from surveillance cameras. They have a large set of labeled images containing workers wearing hard hats and workers without hard hats. The team needs to train a model that can identify the location of each hard hat in an image. Which Azure Computer Vision service should they use?

A.Custom Vision – Object Detection
B.Computer Vision – Optical Character Recognition (OCR)
C.Face API
D.Custom Vision – Image Classification
AnswerA

Custom Vision's Object Detection project type is the correct Azure AI service for this task. It is trained on images with labeled bounding boxes around the target objects (e.g., hard hats), and during inference it returns the predicted object class, a confidence score, and the x/y coordinates of each bounding box within the image. This provides both the presence and the precise location of a hard hat, which meets the construction safety team's requirement.

Why this answer

Custom Vision – Object Detection is specifically designed to identify and locate multiple objects within an image by drawing bounding boxes around them. The construction safety team needs to detect the location of each hard hat, which requires object detection, not just classification. Custom Vision allows training a model with labeled images that include bounding box annotations for objects like hard hats.

Exam trap

The trap here is that candidates often confuse Image Classification with Object Detection, thinking that classifying an image as containing a hard hat is sufficient, but the question explicitly requires identifying the location of each hard hat, which only Object Detection can provide.

Why the other options are wrong

B

OCR extracts text from images, not objects like hard hats. The question requires detecting object locations, not reading text.

C

Face API is designed for detecting and analyzing human faces, not for detecting objects like hard hats. The question requires object detection to locate hard hats, which is not a facial feature.

D

Image classification assigns a single label to the entire image, not detecting multiple objects or their locations. The question requires identifying the location of each hard hat, which is object detection, not classification.

64
MCQmedium

What is the purpose of image 'ground truth' in training computer vision models?

A.The physical location where training images were captured
B.The verified, accurate labels or annotations for training images that the model learns to predict
C.The minimum image resolution required for accurate model training
D.The baseline accuracy of a computer vision model before fine-tuning
AnswerB

Ground truth is the verified, accurate set of labels or annotations assigned to each training example, serving as the correct target output for the model to learn. In supervised computer vision, the model's weights are adjusted to minimize the difference between its predictions and these ground-truth labels, such as class names, bounding boxes, or segmentation masks. Without reliable ground truth, training cannot be properly supervised, because the model has no authoritative answer to imitate.

Why this answer

In computer vision, 'ground truth' refers to the verified, accurate labels or annotations for training images. The model uses these correct labels during supervised learning to learn the mapping from image features to outputs, enabling it to make accurate predictions on new, unseen data.

Exam trap

The trap here is confusing 'ground truth' with a physical or performance-related concept, when it strictly refers to the authoritative labels used to supervise model training.

How to eliminate wrong answers

Option A is wrong because 'ground truth' is a data quality concept, not a physical location; the physical capture location is irrelevant metadata. Option C is wrong because 'ground truth' has nothing to do with image resolution; resolution is a preprocessing concern, not a labeling concept. Option D is wrong because 'ground truth' is the correct label set, not a baseline accuracy metric; baseline accuracy is a performance measure, not a data attribute.

65
MCQeasy

What is the purpose of Azure AI Vision's 'color analysis' feature?

A.Detecting color defects in manufactured products
B.Identifying dominant colors, accent colors, and whether images are black and white
C.Converting images to grayscale for accessibility
D.Measuring the color accuracy of display screens
AnswerB

This is precisely what the color visual feature of the Azure AI Vision Image Analysis API does: it identifies the dominant foreground and background colors, extracts an accent color based on saturation and brightness, and reports whether the image is black-and-white. The service returns these attributes in JSON, enabling applications to tag assets, generate theme colors, or filter monochrome images automatically. Because the question asks for the capability of the built-in color analysis skill, this is the correct answer.

Why this answer

Azure AI Vision's color analysis feature is designed to extract color information from images, including the dominant foreground and background colors, accent colors, and whether the image is black-and-white. This helps in understanding the visual composition and mood of an image, which is useful for applications like branding, content moderation, and image categorization.

Exam trap

The trap here is that candidates confuse the descriptive 'color analysis' feature with corrective or diagnostic tasks (like defect detection or display calibration), when in fact it only extracts and reports existing color properties from the image.

How to eliminate wrong answers

Option A is wrong because color analysis in Azure AI Vision does not perform defect detection in manufactured products; that would require a custom computer vision model trained on specific defect patterns, not the general-purpose color analysis API. Option C is wrong because converting images to grayscale is a simple image processing operation, not a feature of Azure AI Vision's color analysis, which instead identifies if an image is already black-and-white. Option D is wrong because measuring color accuracy of display screens is a hardware calibration task, unrelated to Azure AI Vision's cloud-based image analysis capabilities.

66
MCQeasy

A security system uses cameras to detect whether a person is present at a restricted door. Which Azure Computer Vision capability should they use to detect the presence of human faces in the camera images?

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

Face Detection is the specialized Azure AI service designed to locate one or more human faces in an image and return their bounding box coordinates. It uses a trained model to identify facial landmarks, such as eyes, nose, and mouth, and applies face-specific heuristics to distinguish faces from other objects. For a security system that uses cameras to check whether a person is present, Face Detection is the most direct and accurate choice because it confirms the presence of a person through facial features.

Why this answer

Face Detection is the correct choice because it is specifically designed to locate and identify human faces in images, returning bounding box coordinates for each detected face. This capability directly addresses the requirement to detect whether a person is present at a restricted door by identifying faces in camera images, without needing to recognize who the person is.

Exam trap

The trap here is that candidates often confuse Face Detection with Object Detection, thinking that any object detection model can handle faces equally well, but Azure's Face Detection is a specialized, pre-trained service optimized solely for human faces with additional attributes like face landmarks and attributes not available in generic Object Detection.

How to eliminate wrong answers

Option A is wrong because Optical Character Recognition (OCR) extracts text from images, not human faces, so it cannot detect the presence of a person. Option C is wrong because Object Detection identifies and locates a wide range of objects (e.g., cars, animals) but is not specialized for human faces; while it could be trained to detect people, the question specifically asks for detecting human faces, which is the precise domain of Face Detection. Option D is wrong because Image Classification assigns a single label to an entire image (e.g., 'person present' or 'no person'), but it does not provide the location or bounding box of faces, which is required for detecting presence at a specific door.

67
MCQmedium

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

A.Detecting the same object across multiple images in a photo album
B.Maintaining the identity of detected objects across consecutive video frames with persistent IDs
C.Monitoring GPS location of physical objects using IoT sensors
D.Detecting when a tracked object leaves the camera's field of view
AnswerB

Object tracking assigns a unique identifier to each detected object at the first frame and then propagates that ID across subsequent frames by matching detections via spatial overlap, appearance similarity, or motion models (e.g., Kalman filters). This persistence of identity is what enables trajectory analysis, unique object counting, and behavior understanding over time. It is the core definition of visual object tracking.

Why this answer

Object tracking maintains the identity of detected objects across consecutive video frames by assigning persistent IDs, enabling the system to follow the same object over time. This differs from object detection, which identifies and locates objects in a single frame without preserving identity across frames. In Azure Video Indexer or Custom Vision, tracking is essential for scenarios like counting unique people or vehicles in a video stream.

Exam trap

The trap here is that candidates confuse object detection (locating objects in a single frame) with object tracking (maintaining identity across frames), often selecting Option A because they think 'same object across images' implies tracking, but without temporal video context it is just detection or matching.

How to eliminate wrong answers

Option A is wrong because detecting the same object across multiple images in a photo album is a form of image matching or content-based image retrieval, not object tracking, which requires temporal continuity across video frames. Option C is wrong because monitoring GPS location using IoT sensors is a geolocation or telemetry task, not a computer vision workload, and does not involve analyzing visual data. Option D is wrong because detecting when a tracked object leaves the camera's field of view is a specific event detection that relies on tracking, but it is not the definition of object tracking itself; tracking is the continuous assignment of IDs across frames, not just the detection of exit events.

68
MCQmedium

What is the Azure AI Vision background removal feature used for?

A.Blurring the background to create depth of field effects
B.Automatically separating foreground subjects from the background in images
C.Identifying what type of background (indoor/outdoor) is in an image
D.Replacing backgrounds in video calls
AnswerB

Azure AI Vision's background removal service uses a segmentation model to estimate a per-pixel alpha matte that indicates which pixels belong to the main foreground subject and which belong to the background. The API returns a new image with the background made transparent, or a separate foreground-only image, which lets users easily composite the subject into a different scene, create transparent product shots, or automate visual content pipelines. This directly describes the capability of separating foreground subjects from the background, which is exactly what the question is testing.

Why this answer

Azure AI Vision background removal is designed to automatically separate foreground subjects from the background in images, producing a mask or a cut-out of the primary object. This feature uses deep learning models to identify and isolate the main subject, enabling further processing like compositing or analysis without the background.

Exam trap

The trap here is that candidates confuse background removal (subject isolation) with background replacement or blurring, which are downstream applications of the mask, not the feature itself.

How to eliminate wrong answers

Option A is wrong because blurring the background to create depth of field effects is not a function of Azure AI Vision background removal; that would be a post-processing effect applied after segmentation, not the core separation task. Option C is wrong because classifying the background type (indoor/outdoor) is a scene classification task, not background removal, which focuses on isolating the foreground subject regardless of background category. Option D is wrong because replacing backgrounds in video calls is a real-time video processing feature typically handled by services like Azure Video Indexer or custom solutions, not the static image background removal API of Azure AI Vision.

69
MCQmedium

A retail company uses ceiling-mounted cameras to monitor shelf stock. They want an automated system that analyzes each camera image to detect if any product is missing from its expected location on the shelf (a product gap). Which Azure Computer Vision capability should they use?

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

Object detection finds and locates objects within an image. By detecting the expected products, the system can determine if any are missing, indicating a gap.

Why this answer

Object detection is the correct choice because it can identify and locate multiple objects (e.g., product boxes) within an image and determine if expected items are missing from their designated positions on the shelf. Unlike image classification, which assigns a single label to the entire image, object detection provides bounding boxes and class labels for each detected object, enabling precise gap analysis.

Exam trap

The trap here is that candidates confuse image classification (which labels the whole scene) with object detection (which locates individual objects), leading them to choose option A when the task requires spatial awareness of multiple items.

Why the other options are wrong

A

Image classification assigns a single label to an entire image (e.g., 'shelf is stocked'), but cannot identify the specific locations of individual products or detect missing items in precise positions.

B

OCR extracts text from images, but the task is to detect missing products (gaps) on shelves, which requires identifying objects and their spatial relationships, not reading text.

D

Face detection identifies human faces in images, not product gaps on shelves. The task requires detecting missing objects (gaps), which is unrelated to facial features.

70
MCQeasy

What is the primary challenge of deploying computer vision AI in real-world environments?

A.Computer vision models are too large to fit in cloud storage
B.Handling real-world variability in lighting, occlusion, image quality, and domain differences
C.The difficulty of displaying results in different languages
D.Obtaining legal permission to use cameras
AnswerB

Real-world deployment of computer vision systems must cope with unpredictable lighting conditions, partial occlusion of objects, degraded image quality from motion blur or low resolution, and domain shift between training data and production environments. These factors directly affect model accuracy and are the core technical challenge. Addressing them requires data augmentation, robust training strategies, and domain adaptation techniques.

Why this answer

Real-world computer vision systems must cope with significant environmental variability—such as changing lighting conditions, partial occlusions, varying image resolutions, and domain shifts (e.g., training on studio photos but deploying on security camera feeds). These factors directly degrade model accuracy and require robust data augmentation, domain adaptation, or retraining strategies. Azure's Computer Vision service addresses this through pre-built models trained on diverse datasets and the ability to fine-tune with Custom Vision, but the fundamental challenge remains handling this variability at scale.

Exam trap

The trap here is that candidates confuse operational or compliance hurdles (like camera permissions or language display) with the core technical challenge of model robustness in uncontrolled environments, leading them to pick a superficially plausible but incorrect option.

How to eliminate wrong answers

Option A is wrong because computer vision models are not inherently too large for cloud storage; Azure Blob Storage can easily accommodate models of any size, and the real constraint is inference latency and compute cost, not storage capacity. Option C is wrong because displaying results in different languages is a localization concern handled by Azure Translator or UI frameworks, not a primary challenge of computer vision deployment. Option D is wrong because obtaining legal permission to use cameras is a compliance or policy issue, not a technical challenge of deploying computer vision AI; the core difficulty lies in algorithmic robustness, not legal permissions.

71
MCQmedium

A warehouse uses ceiling-mounted cameras to monitor inventory shelves. The system needs to determine whether each shelf is 'full', 'half full', or 'empty' based on the entire image of the shelf. Which Azure Computer Vision capability should they use?

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

Image classification assigns a single label to the entire input image, which directly matches the need to categorize a whole shelf as full, half full, or empty. A convolutional neural network can learn visual patterns such as occupancy density, edge distributions, and empty-background proportions to predict the fill-level class. This approach is efficient because it produces one output per image without needing to localize or segment any individual object, making it the simplest and most appropriate vision technique for this scenario.

Why this answer

Image classification (C) is the correct choice because the system needs to assign a single label (full, half full, or empty) to the entire image of a shelf. Azure Computer Vision's image classification analyzes the whole image and outputs a single category or tag, which directly matches the requirement of determining the overall state of the shelf. Object detection would identify and locate multiple objects within the image, not classify the entire scene, and semantic segmentation would assign a label to every pixel, which is overkill for this task.

Exam trap

The trap here is that candidates confuse 'object detection' (which finds and locates objects) with 'image classification' (which labels the entire image), leading them to choose object detection when the task is to assign a single category to the whole scene.

How to eliminate wrong answers

Option A is wrong because Optical Character Recognition (OCR) extracts text from images, not visual content like shelf fullness, and is irrelevant to classifying inventory levels. Option B is wrong because object detection identifies and locates individual objects (e.g., boxes) within an image, but the requirement is to classify the entire shelf image into one of three categories, not to detect multiple items. Option D is wrong because semantic segmentation assigns a class label to every pixel in the image, which provides detailed pixel-level masks rather than a single overall classification for the shelf.

72
MCQeasy

What is 'liveness detection' in Azure AI Face service?

A.Detecting whether a celebrity face in a photograph is still alive or deceased
B.Verifying that a face presented to a camera is a real live person, not a photo or video replay
C.Detecting human faces in real-time video streaming from security cameras
D.Monitoring whether a face recognition model remains accurate after deployment
AnswerB

Liveness detection verifies that a face being presented to a camera is a physically present human, not a printed photo, phone screen, or video replay. It uses active challenges (blinking, head turning) and passive cues (depth, texture, illumination, micro-movements) to defeat presentation attacks. Azure Face API's liveness check returns 'live' or 'spoof,' making it a critical security layer for facial authentication systems.

Why this answer

Liveness detection in Azure AI Face service is a security feature that distinguishes between a real, live person and a spoofing attempt such as a printed photo, video replay, or a 3D mask. It analyzes subtle cues like eye blinking, skin texture, and depth to ensure the face presented to the camera is physically present and alive. This prevents unauthorized access in identity verification scenarios.

Exam trap

The trap here is that candidates confuse liveness detection with general face detection or recognition, assuming any real-time face processing qualifies, when in fact liveness detection specifically addresses anti-spoofing and presentation attack detection.

How to eliminate wrong answers

Option A is wrong because liveness detection has nothing to do with determining if a celebrity is alive or deceased; that would be a biographical or news-related query, not a computer vision feature. Option C is wrong because detecting human faces in real-time video streaming is a general face detection capability, not specifically liveness detection, which focuses on verifying the authenticity of the face rather than just its presence. Option D is wrong because monitoring model accuracy post-deployment is a model management or MLOps concern, not a feature of the Face service itself.

73
MCQeasy

What does Azure AI Vision's 'optical character recognition' (OCR) feature do?

A.Converts text files into images for archival purposes
B.Extracts printed and handwritten text from images and documents
C.Recognises optical fibre cables in data centre photographs
D.Corrects spelling errors in text extracted from forms
AnswerB

OCR—the Optical Character Recognition engine in Azure AI Vision and Document Intelligence—actually reads printed material and handwriting from photos, PDFs, and scanned documents, returning machine-readable text with coordinates and confidence scores. This enables searching, indexing, and processing of content that exists only as images. Both printed and handwritten text are supported, including mixed-language documents, fulfilling the correct definition.

Why this answer

Azure AI Vision's OCR feature is designed to extract printed and handwritten text from images and documents, converting visual text into machine-readable data. This is correct because OCR uses deep learning models to detect and read text characters from various visual sources, enabling downstream processing like search or analysis.

Exam trap

The trap here is that candidates may confuse OCR with other computer vision tasks like object detection (Option C) or assume OCR includes post-processing like spell checking (Option D), when in fact OCR is strictly about text extraction from visual media.

How to eliminate wrong answers

Option A is wrong because OCR extracts text from images, not converts text files into images; that would be a rendering or archival process, not OCR. Option C is wrong because OCR recognizes text characters, not optical fibre cables; cable recognition would require object detection or image classification, not OCR. Option D is wrong because OCR only extracts text as-is without correcting spelling errors; spell correction is a separate natural language processing task.

74
MCQmedium

Which Azure AI capability can analyze video to identify and track specific people or objects across frames?

A.Azure AI Custom Vision
B.Azure AI Video Indexer
C.Azure AI Face
D.Azure AI Vision OCR
AnswerB

Azure AI Video Indexer is the correct choice because it ingests video and audio and automatically extracts actionable insights using multiple integrated AI models. It can identify and track people and faces over time, detect objects, recognize scenes, and generate a time-stamped transcript of spoken dialogue, all from a single video file. This end-to-end video analysis makes it ideal for reviewing meeting recordings, whereas the other options address only narrow image or face tasks.

Why this answer

Azure AI Video Indexer is the correct choice because it is specifically designed to analyze video content, including the ability to detect, track, and identify people or objects across frames using AI-powered computer vision and audio analysis. It provides features like face detection, object tracking, and motion detection over time, making it suitable for this scenario.

Exam trap

The trap here is that candidates often confuse Azure AI Video Indexer with Azure AI Custom Vision or Azure AI Face, mistakenly thinking that image-based services can handle video analysis, but Video Indexer is the only option that natively supports temporal tracking across video frames.

How to eliminate wrong answers

Option A is wrong because Azure AI Custom Vision is a service for training custom image classification and object detection models on static images, not for analyzing video streams or tracking objects across frames. Option C is wrong because Azure AI Face is focused solely on facial detection, recognition, and analysis in images, lacking the capability to track arbitrary objects or perform cross-frame video analysis. Option D is wrong because Azure AI Vision OCR (Optical Character Recognition) is limited to extracting text from images and documents, with no ability to analyze video or track people/objects.

75
MCQmedium

A manufacturing company wants to use computer vision to inspect products on an assembly line. They need to identify and locate specific types of defects (e.g., scratch, dent, crack) in product images. Which Azure Computer Vision capability should they use?

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

Object detection performs both classification and localization by outputting bounding boxes around each detected instance, along with a class label and confidence score. Models such as Faster R-CNN, YOLO, and SSD use region proposals or anchor-based regression to predict box coordinates for every object. In this inspection scenario, that allows the system to report each defect's position and type, exactly matching the requirement to identify and locate multiple defects.

Why this answer

Object Detection is the correct choice because it not only classifies defects (e.g., scratch, dent, crack) but also provides bounding box coordinates to locate each defect within the product image. This meets the requirement to both identify and locate specific defect types on the assembly line.

Exam trap

The trap here is that candidates confuse Image Classification (which only labels the whole image) with Object Detection (which both classifies and localizes), missing the critical 'locate' requirement in the question.

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') and cannot locate multiple defects or their positions. Option C is wrong because Optical Character Recognition (OCR) extracts text from images, not visual defects like scratches or dents. Option D is wrong because Face Detection identifies human faces, not product defects.

Page 1 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.