
Explanation:

According to the Microsoft Azure AI Fundamentals (AI-900) official study guide and the Microsoft Learn module "Identify features of the Computer Vision and Custom Vision services", the Custom Vision service is used to train, deploy, and improve custom image classification and object detection models using your own labeled data.
* Multilabel or Multiclass Selection - NOThe statement is false because the Multilabel or Multiclass choice applies only to image classification models, not object detection models. In image classification,
"Multiclass" means one label per image, while "Multilabel" means multiple labels per image. In contrast, object detection models identify and locate multiple objects in an image using bounding boxes; thus, this classification-type selection does not apply.
* Object Detection Locates Content in an Image - YESThis statement is true. The object detection functionality in Custom Vision is designed to both identify what objects appear in an image and determine their location through bounding box coordinates. For example, a model could detect and locate multiple products on a store shelf. Microsoft documentation describes object detection as
"identifying the presence and location of objects in an image."
* Predefined Domains - YESThis statement is true as well. When you create a new Custom Vision project, you must select a domain, which is a predefined optimization setting tailored to specific use cases such as retail, food, landmarks, or general images. These domains are designed to improve model accuracy by applying specialized transfer learning features based on the type of images you will analyze.
In summary:
* Classification type (Multilabel/Multiclass): No (only for classification models)
* Detect object location: Yes
* Choose predefined domain: Yes