7.5. Practice Questions: Computer Vision
Test your understanding of computer vision concepts and Azure AI Vision services.
Domain 3: Computer Vision (Questions 21-30)
Question 21: Which computer vision capability returns bounding box coordinates?
- A. Image classification
- B. Object detection ✓
- C. Image tagging
- D. OCR
Rationale: Object detection locates objects and returns bounding boxes with coordinates. Image classification returns only a single label.
Question 22: A company needs to extract text from scanned medical records. Which capability?
- A. Image classification
- B. Sentiment analysis
- C. OCR ✓
- D. Entity recognition
Rationale: OCR extracts text from images. Since the input is scanned images (not text), this is computer vision, not NLP.
Question 23: What are the TWO specialized domain models supported by Azure AI Vision for image categorization?
- A. Animals
- B. Celebrities ✓
- C. Cars
- D. Landmarks ✓
Rationale: Azure AI Vision supports only celebrities and landmarks as specialized domain models—not animals, cars, or plants.
Question 24: Which feature associates images with descriptive metadata tags?
- A. Image categorization
- B. Image tagging ✓
- C. Object detection
- D. OCR
Rationale: Tagging associates images with metadata that summarizes attributes. Categorization assigns to predefined categories.
Question 25: Which output does image description include with each phrase?
- A. Bounding box coordinates
- B. Confidence score ✓
- C. API endpoint
- D. Face ID
Rationale: Image descriptions include confidence scores indicating certainty about each generated description.
Question 26: A farmer wants to track livestock in a field. Which capability?
- A. OCR
- B. Sentiment analysis
- C. Object detection ✓
- D. Image classification
Rationale: Tracking animals requires locating them in images—object detection provides positions via bounding boxes.
Question 27: Which THREE capabilities does Azure AI Vision eliminate the need for?
- A. Azure resource provisioning
- B. Choosing a model ✓
- C. Training a model ✓
- D. Evaluating a model ✓
Rationale: Pre-built models eliminate choosing, training, and evaluating. You still must create Azure resources and call the API.
Question 28: Which Azure AI Face feature identifies if someone wears glasses?
- A. Face rectangle
- B. Face ID
- C. Face landmarks
- D. Face attributes ✓
Rationale: Face attributes include accessories like glasses, headwear, and masks.
Question 29: Which capability classifies individual pixels in an image?
- A. Image classification
- B. Object detection
- C. Semantic segmentation ✓
- D. OCR
Rationale: Semantic segmentation classifies every pixel, creating a detailed category map of the image.
Question 30: A quality control system needs to identify defective products on an assembly line. Which approach?
- A. Use image classification to label products as defective/normal ✓
- B. Use OCR to read product labels
- C. Use sentiment analysis on product descriptions
- D. Use speech recognition on assembly sounds
Rationale: Binary classification (defective vs. normal) using image analysis is the correct approach for visual quality control.