R-CNN stands for Region-based Convolutional Neural Network.
Incorrect! Try again.
15What characterizes a single-stage object detector?
Single-stage detectors
Easy
A.It predicts detections directly
B.It creates region proposals in one network and classifies them using a separate multi-step pipeline
C.It requires manual box drawing
D.It processes only grayscale images
Correct Answer: It predicts detections directly
Explanation:
A single-stage detector predicts object classes and bounding boxes directly in one detection pipeline.
Incorrect! Try again.
16What does YOLO stand for in object detection?
YOLO variants
Easy
A.You Only Label Objects
B.You Only Look Once
C.Your Object Localization Output
D.Yielding Optimized Layer Operations
Correct Answer: You Only Look Once
Explanation:
YOLO stands for "You Only Look Once," reflecting its single-pass detection approach.
Incorrect! Try again.
17Which property is commonly associated with YOLO variants?
YOLO variants
Easy
A.Separate processing of every proposed region through several independent classifiers
B.Audio signal generation
C.Manual feature labeling
D.Fast object detection
Correct Answer: Fast object detection
Explanation:
YOLO variants are single-stage detectors commonly known for fast, real-time object detection.
Incorrect! Try again.
18What does SSD stand for in computer vision?
SSD
Easy
A.Standard Scale Detection
B.Spatial Search Decoder
C.Sequential Sampling Device
D.Single Shot Detector
Correct Answer: Single Shot Detector
Explanation:
SSD stands for Single Shot Detector and predicts object classes and boxes in one pass.
Incorrect! Try again.
19What problem is focal loss designed to reduce in RetinaNet?
RetinaNet with focal loss
Easy
A.The need to store every training image at several different resolutions
B.Box visualization
C.Class imbalance
D.Image rotation
Correct Answer: Class imbalance
Explanation:
Focal loss reduces the influence of easy background examples, helping address class imbalance.
Incorrect! Try again.
20What does mean average precision (mAP) summarize in object detection?
Mean average precision
Easy
A.Maximum number of boxes
B.Total training duration
C.Detection performance across classes
D.Average image brightness
Correct Answer: Detection performance across classes
Explanation:
mAP averages the average precision values across object classes, often at one or more IoU thresholds.
Incorrect! Try again.
21An image contains three cars and two pedestrians. What must an object detector produce that an image classifier typically does not?
Object detection principles
Medium
A.A pixel-level class label for every image pixel
B.A feature vector representing the complete image
C.A class label and location for each object instance
D.A single class label for the complete image
Correct Answer: A class label and location for each object instance
Explanation:
Object detection identifies each object instance and predicts both its class and spatial location, usually as a bounding box.
Incorrect! Try again.
22A bounding box is represented as . What are its width and height?
Bounding box representation
Medium
A.Width , height
B.Width , height
C.Width , height
D.Width , height
Correct Answer: Width , height
Explanation:
The width is , and the height is .
Incorrect! Try again.
23Two predicted boxes have an intersection area of pixels. Their individual areas are and pixels. What is their IoU?
Intersection over union
Medium
A.
B.
C.
D.
Correct Answer:
Explanation:
The union area is , so .
Incorrect! Try again.
24A predicted box is completely inside a ground-truth box. Their areas are and pixels, respectively. What is their IoU?
Intersection over union
Medium
A.
B.
C.
D.
Correct Answer:
Explanation:
Because the smaller box is fully enclosed, the intersection is and the union is . Thus, .
Incorrect! Try again.
25For one class, three boxes have confidence scores , , and . The IoU of the first box with the other two is and , respectively. With an NMS threshold of , which boxes are retained?
Non-maximum suppression
Medium
A.The boxes scored and
B.The boxes scored and
C.Only the box scored
D.All three candidate boxes
Correct Answer: The boxes scored and
Explanation:
NMS keeps the highest-scoring box, suppresses the box because its IoU is above , and retains the box because its IoU is below the threshold.
Incorrect! Try again.
26What is the most likely effect of increasing the NMS IoU threshold from to while keeping all confidence scores unchanged?
Non-maximum suppression
Medium
A.Bounding boxes will become geometrically smaller
B.More highly overlapping boxes will be retained
C.Fewer object classes will be evaluated
D.More low-confidence boxes will be removed
Correct Answer: More highly overlapping boxes will be retained
Explanation:
A higher NMS threshold requires greater overlap before suppression, so more overlapping predictions can survive.
Incorrect! Try again.
27In a sliding-window detector, reducing the stride from pixels to pixels generally has which effect?
Classical detection pipelines
Medium
A.It evaluates more windows and increases computation
B.It removes the need for an image pyramid
C.It evaluates fewer windows and decreases computation
D.It converts the detector into a segmentation model
Correct Answer: It evaluates more windows and increases computation
Explanation:
A smaller stride places windows at more image locations, which can improve localization coverage but requires more computation.
Incorrect! Try again.
28Why is an image pyramid commonly used with a fixed-size sliding-window classifier?
Classical detection pipelines
Medium
A.To detect objects appearing at different scales
B.To eliminate overlapping candidate windows
C.To compute exact object segmentation masks
D.To assign multiple labels to one window
Correct Answer: To detect objects appearing at different scales
Explanation:
Rescaling the image allows a fixed-size window to match objects whose sizes differ in the original image.
Incorrect! Try again.
29Which operation is a major source of slow inference in the original R-CNN architecture?
RCNN
Medium
A.Sharing one classifier across all image locations
B.Predicting boxes directly from a dense feature map
C.Running the CNN separately on each region proposal
D.Computing all convolutional features only once
Correct Answer: Running the CNN separately on each region proposal
Explanation:
Original R-CNN performs a separate CNN forward pass for every proposed region, causing substantial repeated computation.
Incorrect! Try again.
30How does Fast R-CNN reduce repeated computation compared with the original R-CNN?
RCNN
Medium
A.It replaces region proposals with an image pyramid
B.It performs classification without bounding-box regression
C.It computes a shared feature map before processing regions
D.It applies a separate backbone to every proposed region
Correct Answer: It computes a shared feature map before processing regions
Explanation:
Fast R-CNN runs convolution over the image once, then extracts region-specific features from the shared feature map.
Incorrect! Try again.
31What is the main contribution of Faster R-CNN over Fast R-CNN?
Object detection algorithms
Medium
A.It replaces convolutional features with handcrafted descriptors
B.It removes bounding-box regression from the detection head
C.It learns region proposals using a Region Proposal Network
D.It classifies only one object in each input image
Correct Answer: It learns region proposals using a Region Proposal Network
Explanation:
Faster R-CNN introduces a Region Proposal Network that shares backbone features with the detector and replaces external proposal methods.
Incorrect! Try again.
32Why are single-stage detectors often faster than two-stage detectors?
Single-stage detectors
Medium
A.They use ground-truth boxes as proposals during inference
B.They evaluate every region using an independent backbone
C.They predict classes and boxes without a separate proposal stage
D.They avoid convolutional feature extraction during inference
Correct Answer: They predict classes and boxes without a separate proposal stage
Explanation:
Single-stage models directly make dense class and box predictions, avoiding a separate region-proposal and refinement pipeline.
Incorrect! Try again.
33A YOLO-style detector divides an image into a grid. In the standard assignment principle, which grid cell is responsible for predicting an object?
YOLO variants
Medium
A.The cell having the largest image area
B.The cell containing the object's top-left corner
C.The cell having the lowest class confidence
D.The cell containing the object's center
Correct Answer: The cell containing the object's center
Explanation:
YOLO commonly assigns an object to the grid cell that contains the center of its ground-truth bounding box.
Incorrect! Try again.
34A detector performs well on large objects but frequently misses small objects. Which feature found in newer YOLO variants most directly addresses this issue?
YOLO variants
Medium
A.Predictions from multiple feature-map scales
B.Use of one bounding box for the full image
C.Classification from only the deepest feature map
D.Removal of all high-resolution backbone features
Correct Answer: Predictions from multiple feature-map scales
Explanation:
Multi-scale prediction uses higher-resolution feature maps for small objects and lower-resolution maps for larger objects.
Incorrect! Try again.
35Why does SSD make predictions from several feature maps with different spatial resolutions?
SSD
Medium
A.To guarantee one prediction for each object
B.To convert detection into image classification
C.To avoid using default boxes during training
D.To detect objects across a range of sizes
Correct Answer: To detect objects across a range of sizes
Explanation:
Higher-resolution maps are useful for smaller objects, while lower-resolution maps with larger receptive fields suit larger objects.
Incorrect! Try again.
36During SSD training, how is a ground-truth box typically matched to default boxes?
SSD
Medium
A.By selecting boxes with identical pixel coordinates only
B.By selecting default boxes with sufficient IoU overlap
C.By selecting boxes with the lowest class confidence
D.By selecting boxes from the deepest feature map only
Correct Answer: By selecting default boxes with sufficient IoU overlap
Explanation:
SSD assigns ground-truth objects to default boxes based primarily on IoU, including the best-matching box and boxes above a matching threshold.
Incorrect! Try again.
37In a dense detector, most anchors are easy background examples. How does focal loss mainly address this imbalance?
RetinaNet with focal loss
Medium
A.It removes every background anchor before training
B.It assigns equal loss to all positive and negative anchors
C.It increases the loss from easy negative examples
Correct Answer: It down-weights easy, confidently classified examples
Explanation:
Focal loss reduces the contribution of well-classified examples, allowing training to focus more on difficult positives and negatives.
Incorrect! Try again.
38For focal loss with focusing parameter , what happens to the modulating factor for a correctly classified example as its predicted probability approaches ?
RetinaNet with focal loss
Medium
A.It approaches , preserving the example's full contribution
B.It approaches , reducing the example's contribution
C.It grows without bound, dominating the total loss
D.It becomes negative, reversing the loss gradient
Correct Answer: It approaches , reducing the example's contribution
Explanation:
For the true-class probability , focal loss uses a factor such as . As approaches , this factor approaches .
Incorrect! Try again.
39A detector produces one correct high-confidence prediction for every ground-truth object, followed only by several low-confidence false positives. Why can its average precision still be high?
Mean average precision
Medium
A.Average precision measures localization error only
B.Low-confidence predictions automatically become true negatives
C.False positives are ignored at every confidence threshold
D.Correct detections appear early in the confidence ranking
Correct Answer: Correct detections appear early in the confidence ranking
Explanation:
Average precision depends on the ranked precision-recall curve. False positives placed after all true positives often have less impact than high-confidence false positives.
Incorrect! Try again.
40The same detector is evaluated first at IoU threshold and then at . What outcome is most likely when the threshold is increased?
IoU thresholds
Medium
A.Some loosely localized detections become false positives
B.More detections qualify as correct localizations
C.Non-maximum suppression becomes unnecessary
D.Class confidence scores automatically increase
Correct Answer: Some loosely localized detections become false positives
Explanation:
A higher IoU threshold imposes stricter localization requirements, so predictions accepted at may fail to match at .
Incorrect! Try again.
41An image contains one non-ignored ground-truth object. A detector outputs three correctly classified boxes with IoUs , , and in descending confidence order. At an IoU threshold of , how are these detections labeled during standard one-to-one evaluation?
Object detection principles
Hard
A.All three are true positives because each predicts the correct class.
B.The first is a true positive, the second is ignored, and the third is a false positive.
C.The first two are true positives, and the third is a false positive.
D.The first is a true positive, and the other two are false positives.
Correct Answer: The first is a true positive, and the other two are false positives.
Explanation:
The highest-confidence eligible detection claims the single ground truth. Additional detections of that same object are duplicates and count as false positives; the third also fails the IoU threshold.
Incorrect! Try again.
42An anchor has center , width , and height . A detector uses , , , and . For predicted offsets , what decoded corner box is obtained?
Bounding box representation
Hard
A.
B.
C.
D.
Correct Answer:
Explanation:
The decoded center is and the size is . Subtracting and adding the half-sizes gives .
Incorrect! Try again.
43Using continuous-coordinate box areas, let and , where each tuple is . What is ?
Intersection over union
Hard
A.
B.
C.
D.
Correct Answer:
Explanation:
The intersection area is . The union is , so the IoU is .
Incorrect! Try again.
44Three same-class detections have scores , , and . Their pairwise IoUs are , , and . With greedy NMS suppressing IoU values greater than , which boxes remain?
Non-maximum suppression
Hard
A. and
B. only
C. and
D. and
Correct Answer: and
Explanation:
Box is selected first and suppresses , but not . Since suppressed boxes are not later selected, the high IoU between and does not remove .
Incorrect! Try again.
45A HOG-SVM pedestrian detector was trained only on fixed-size positive windows. At test time, pedestrians may appear at many scales. Which pipeline most directly preserves the classifier's expected window representation while enabling multiscale detection?
Classical detection pipelines
Hard
A.Scan a fixed window over an image pyramid, map detections back, then apply NMS.
B.Scan variable-sized windows on one image scale without resizing their descriptors.
C.Resize every candidate window independently to the full image dimensions, classify all pixels jointly, and average overlapping scores before thresholding.
D.Use one global HOG descriptor and infer every pedestrian box from its SVM margin.
Correct Answer: Scan a fixed window over an image pyramid, map detections back, then apply NMS.
Explanation:
An image pyramid converts objects at different scales into approximately the fixed scale expected by the trained window classifier. NMS then removes duplicate overlapping responses.
Incorrect! Try again.
46Which change specifically distinguishes Faster R-CNN from Fast R-CNN while retaining a two-stage detection structure?
RCNN
Hard
A.It removes region proposals and predicts all boxes directly from a dense output grid.
B.It replaces external region proposals with a learned region proposal network sharing convolutional features.
C.It runs the convolutional backbone separately for every proposed region.
D.It replaces ROI feature extraction with class-agnostic NMS during training.
Correct Answer: It replaces external region proposals with a learned region proposal network sharing convolutional features.
Explanation:
Faster R-CNN introduces an RPN that shares backbone features with the detection head. Fast R-CNN still depends on proposals produced by an external method such as selective search.
Incorrect! Try again.
47Why can a dense single-stage detector perform poorly when trained with ordinary cross-entropy over all anchors, even if most background anchors are individually easy?
Single-stage detectors
Hard
A.Cross-entropy produces zero gradients for all correctly classified background anchors.
B.Dense prediction prevents the backbone from sharing features across spatial positions.
C.Background anchors are always assigned larger regression targets than positive anchors.
D.The aggregate gradient from numerous easy negatives can dominate the sparse positive signal.
Correct Answer: The aggregate gradient from numerous easy negatives can dominate the sparse positive signal.
Explanation:
Dense detectors evaluate a very large number of candidate locations. Even small losses from many easy negatives can overwhelm the fewer informative positive examples.
Incorrect! Try again.
48In a YOLO-style detector that assigns each ground-truth object to the grid cell containing its center, an object's center lies just inside one cell while most of its area extends into neighboring cells. Which statement is correct?
YOLO variants
Hard
A.The center-containing cell can regress a box extending well beyond its own boundaries.
B.Every intersected cell must independently predict the complete object as a positive.
C.The box must be clipped to the responsible cell before computing localization loss.
D.The object is discarded because its box is not fully contained in one grid cell.
Correct Answer: The center-containing cell can regress a box extending well beyond its own boundaries.
Explanation:
Cell assignment determines responsibility, not the spatial extent of the predicted box. The responsible prediction may regress coordinates covering multiple cells.
Incorrect! Try again.
49In standard SSD matching, a ground-truth box has IoUs , , and with its three best default boxes, while the normal positive threshold is . What prevents this ground truth from necessarily having zero positive matches?
SSD
Hard
A.Its highest-IoU default box is force-matched to it before threshold-based matching.
B.The ground truth is converted into a default box and appended to the prediction tensor.
C.The positive threshold is automatically reduced to the mean of the three IoUs.
D.All default boxes with IoU above become positives for that ground truth.
Correct Answer: Its highest-IoU default box is force-matched to it before threshold-based matching.
Explanation:
SSD first ensures that each ground truth is matched to its best-overlapping default box. Additional default boxes are then matched according to the IoU threshold.
Incorrect! Try again.
50For positive examples, focal loss is . With and the same , approximately what is ?
RetinaNet with focal loss
Hard
A.
B.
C.
D.
Correct Answer:
Explanation:
The ratio is . Thus focal loss strongly down-weights the easier example.
Incorrect! Try again.
51A class has two ground-truth objects. In descending confidence order, three detections are labeled TP, FP, TP. Using all-point interpolated precision and the area under the precision-recall curve, what is the AP?
Mean average precision
Hard
A.
B.
C.
D.
Correct Answer:
Explanation:
The precision-recall points are , , and . The interpolated envelope gives AP .
Incorrect! Try again.
52Two detectors have equal , but detector has substantially higher COCO-style AP averaged over IoU thresholds from to . What is the strongest justified conclusion?
IoU thresholds
Hard
A.Detector necessarily detects more object classes than the other detector.
B.Detector generally localizes objects more precisely at stricter overlap requirements.
C.Detector produces fewer raw candidate boxes before confidence filtering and NMS at every tested image resolution.
D.Detector must have higher recall when detections are evaluated only at IoU .
Correct Answer: Detector generally localizes objects more precisely at stricter overlap requirements.
Explanation:
Equal indicates similar performance at a loose threshold. Better averaged AP implies stronger performance as the localization criterion becomes stricter.
Incorrect! Try again.
53A proposal generator has recall at IoU with the ground truth. Its downstream classifier and box head are otherwise perfect but may only process those proposals. What is the maximum achievable detection recall at IoU ?
Object detection algorithms
Hard
A.
B.
C.
D.
Correct Answer:
Explanation:
A two-stage detector cannot recover objects for which no sufficiently overlapping proposal is supplied. Proposal recall therefore places an upper bound of on final recall.
Incorrect! Try again.
54Why are width and height commonly encoded as and relative to an anchor rather than as unrestricted additive pixel offsets?
B.The encoding eliminates the need to normalize center-coordinate regression targets.
C.The encoding makes the IoU exactly linear in the predicted width and height values.
D.The encoding guarantees that every decoded box remains inside the image boundary.
Correct Answer: The encoding models multiplicative scale changes and guarantees positive decoded sizes.
Explanation:
Decoding uses and . This naturally represents scale ratios and ensures that predicted dimensions remain positive.
Incorrect! Try again.
55Two adjacent objects of the same class genuinely overlap with IoU , and the detector predicts one accurate high-score box for each. Hard class-wise NMS uses threshold . What failure is most likely?
Non-maximum suppression
Hard
A.Neither detection is affected because they correspond to different instances.
B.Both detections are merged into a new averaged box, reducing precision.
C.Both detections are relabeled as background before classification.
D.One correct detection is suppressed, reducing recall.
Correct Answer: One correct detection is suppressed, reducing recall.
Explanation:
Standard hard NMS uses geometric overlap and class identity, not ground-truth instance identity. The lower-scoring correct box can therefore be suppressed.
Incorrect! Try again.
56For a binary example with label , suppose its predicted probability approaches . Compared with ordinary cross-entropy, what does focal loss with do asymptotically?
RetinaNet with focal loss
Hard
A.It converts the classification loss into a bounding-box IoU loss near convergence.
B.It keeps the example's gradient constant so rare classes cannot be forgotten.
C.It increases the loss because diverges as approaches .
D.It suppresses the easy example's contribution by an additional factor .
Correct Answer: It suppresses the easy example's contribution by an additional factor .
Explanation:
The modulating factor tends to zero as , causing well-classified examples to contribute much less than they would under ordinary cross-entropy.
Incorrect! Try again.
57For one class, a detector produces the same set of boxes and confidence values before and after a calibration change, but the change reverses the score order of one true positive and one false positive. Why can AP change even when the final counts of true positives and false positives do not?
Mean average precision
Hard
A.AP changes the number of ground-truth objects according to the score ordering.
B.AP recomputes box coordinates from confidence scores before calculating IoU.
C.AP treats every lower-confidence detection as ignored after the first false positive.
D.AP depends on the ranked precision-recall trajectory, not only on final counts.
Correct Answer: AP depends on the ranked precision-recall trajectory, not only on final counts.
Explanation:
Moving a false positive earlier lowers precision at subsequent recall points. AP integrates this ranked precision-recall behavior, so identical final counts can yield different AP.
Incorrect! Try again.
58A predicted square has the correct center and side length , while the ground-truth square has side length . Both are axis-aligned. What is their IoU, and at which listed evaluation thresholds is the prediction a true positive?
IoU thresholds
Hard
A.IoU ; it is a true positive at thresholds and .
B.IoU ; it is a true positive at thresholds and .
C.IoU ; it is a true positive at all thresholds up to .
D.IoU ; it is a true positive only at threshold .
Correct Answer: IoU ; it is a true positive only at threshold .
Explanation:
The smaller square lies inside the larger one, so intersection is and union is . Hence IoU is , meeting but not .
Incorrect! Try again.
59A YOLO head predicts an objectness value intended to represent the probability that an object is present and a conditional class distribution. Under this factorization, which score is appropriate for ranking detections of class before NMS?
YOLO variants
Hard
A.
B.
C.
D.
Correct Answer:
Explanation:
By the probability product rule, the joint confidence for class is .
Incorrect! Try again.
60An SSD model uses default boxes with many aspect ratios but only coarse, low-resolution feature maps. Which objects are most likely to remain difficult despite the aspect-ratio diversity?
SSD
Hard
A.Very small objects whose centers and features are poorly resolved spatially.
B.Objects from frequent classes whose hard-negative examples are selected during loss computation.
C.Medium objects that overlap several adjacent default boxes above the matching threshold.
D.Large objects whose aspect ratios exactly match multiple default boxes.
Correct Answer: Very small objects whose centers and features are poorly resolved spatially.
Explanation:
Aspect-ratio coverage does not compensate for insufficient spatial resolution. Small objects may occupy too little of a coarse feature cell to produce discriminative features or well-centered matches.
Incorrect! Try again.
Did this save you a night before the exam?
LPU Notes is free, and it stays free. Ads cover part of the server bill.
The rest comes out of a student's own pocket: the domain, the storage,
and keeping the site up through the weeks everyone needs it at once.
The payment button didn't load. An ad blocker or a filtered network is the usual reason.
to try again.
Nothing here is ever locked, and nothing unlocks. Chip in only if it was worth it.
What it pays for →