6.1 Domain Summary and Key Comparisons

Key Takeaways

  • The AI-900 has five domains; after the May 2025 update the weights are AI workloads 15-20%, ML 15-20%, computer vision 15-20%, NLP 15-20%, and generative AI 20-25% (the heaviest).
  • Map each task to its Azure service: Vision = images, Language = text, Speech = audio, Translator = text translation, OpenAI = generation, AI Search = retrieval, Document Intelligence = forms.
  • ML types: regression predicts numbers, classification predicts categories (supervised), clustering discovers groups (unsupervised).
  • Six responsible AI principles — fairness, reliability/safety, privacy/security, inclusiveness, transparency, accountability — are tested across ALL domains.
  • Know the renames (LUIS->CLU, QnA Maker->Custom QA, Form Recognizer->Document Intelligence, Cognitive Search->AI Search, AI Studio->AI Foundry); the AI-900 retires June 30, 2026 and is replaced by AI-901, passing score 700/1000.
Last updated: June 2026

Quick Answer: This section consolidates the most important concepts, comparisons, and Azure service mappings from all five AI-900 domains into a single review. Use it as your final reference before the exam.

Exam Domain Weights (May 2025 update)

DomainWeight
Describe AI workloads and considerations15-20%
Describe fundamental principles of machine learning on Azure15-20%
Describe features of computer vision workloads on Azure15-20%
Describe features of NLP workloads on Azure15-20%
Describe features of generative AI workloads on Azure20-25%

Generative AI is now the single heaviest domain (20-25%). Note that the AI-900 exam retires on June 30, 2026 and is replaced by AI-901 — pass before that date or plan for the successor exam. Passing score is 700/1000.

Domain 1: AI Workloads and Considerations (15-20%)

  • AI is the broadest umbrella -> ML is a subset -> Deep Learning is a subset of ML -> Generative AI is a subset of DL.
  • Common AI workloads: prediction/regression, classification, anomaly detection, computer vision, NLP, conversational AI, and generative AI.
  • Six responsible AI principles: fairness, reliability/safety, privacy/security, inclusiveness, transparency, accountability.
  • Responsible AI appears across ALL five domains, not just Domain 1; Azure AI Content Safety detects harmful content in four categories.

Domain 2: Machine Learning Principles (15-20%)

ConceptKey Point
Features vs. LabelsFeatures = inputs; Labels = outputs (what you predict)
Training / Validation / TestTraining teaches, validation tunes, test evaluates
OverfittingGreat on training data, poor on new data
Supervised learningLabeled data (regression, classification)
Unsupervised learningUnlabeled data (clustering)

ML Type Selection

QuestionOutput TypeML Type
"How much?" / "How many?"Continuous numberRegression
"Which category?" / "Is it X?"Discrete classClassification
"What groups exist?"Unknown groupsClustering

Evaluation Metrics

ML TypeMetricsDirection
RegressionMAE, RMSE, R-squaredMAE/RMSE lower; R-squared higher
ClassificationAccuracy, Precision, Recall, F1Higher
ClusteringSilhouette scoreHigher (closer to 1)

Azure ML Features

FeatureWhat It DoesCode Required
AutoMLAutomatically selects the best algorithmNo
DesignerDrag-and-drop pipeline builderNo
NotebooksCode-based ML developmentYes (Python)

Domain 3: Computer Vision (15-20%)

TaskOutputWhen to Use
Image classificationSingle label"What is this image?"
Object detectionObjects + bounding boxes"Where are the objects?"
Semantic segmentationPer-pixel classification"What is every pixel?"
OCRExtracted text"What text is in this image?"
Facial detectionFace locations + attributes"Where are the faces?"
ServicePurposeTraining Required
Azure AI VisionPre-built image analysis (caption, tag, detect, OCR)No
Azure AI Custom VisionTrain custom classification/detection modelsYes (your images)
Azure AI FaceFace detection, verification, identificationNo (gated access)
Azure AI Document IntelligenceExtract structured data from documentsPre-built or custom

Domain 4: NLP (15-20%)

TaskWhat It ExtractsExample
Sentiment analysisPositive/negative/neutral"Great product!" -> Positive
Key phrase extractionMain topicsArticle -> ["AI", "Azure", "cloud"]
Named entity recognitionPeople, places, dates (classified)"John in Paris on March 5" -> Person, Location, Date
Language detectionWhich language"Bonjour" -> French
PII detectionSensitive personal dataSSNs, phone numbers, emails
ServicePurpose
Azure AI LanguageText analysis (sentiment, NER, CLU, Q&A, PII)
Azure AI SpeechAudio (STT, TTS, speech translation, speaker recognition)
Azure AI TranslatorText translation (100+ languages)

Key Terminology Updates

Old Name (Retired)Current Name
LUISConversational Language Understanding (CLU)
QnA MakerCustom Question Answering
Form RecognizerDocument Intelligence
Cognitive SearchAzure AI Search
Cognitive ServicesAzure AI Services
Azure AI StudioAzure AI Foundry

On the Exam: Microsoft has renamed many services. Know the CURRENT names; if a question uses an old name, recognize the modern equivalent.

Domain 5: Generative AI (20-25%)

ConceptKey Point
LLMsLarge Language Models that predict the next token
TransformersArchitecture using self-attention for context
GPTGenerative Pre-trained Transformer
HallucinationFalse but plausible output
RAGRetrieve docs -> add to prompt -> generate grounded answer
GroundingProvide factual data to reduce hallucinations
Prompt engineeringCraft prompts to control behavior
Content filtersScan prompts AND responses (hate/violence/sexual/self-harm)
Temperature0 = deterministic; higher = creative
EmbeddingsVector representations of text for semantic search

Prompt Engineering Techniques

TechniqueWhat It DoesWhen to Use
Zero-shotNo examplesSimple, well-defined tasks
Few-shotProvide examplesPattern/format control
Chain-of-thought"Think step by step"Math, logic, reasoning
GroundingProvide context documentsFactual accuracy
System messageSet persona and constraintsControl behavior

Master Comparison: All Azure AI Services

Azure ServiceCategoryWhat It Does
Azure AI VisionVisionPre-built image analysis, OCR, spatial analysis
Azure AI Custom VisionVisionTrain custom image models
Azure AI FaceVisionFace detection, verification, identification
Azure AI LanguageNLPSentiment, NER, CLU, Q&A, PII
Azure AI SpeechNLPSTT, TTS, speech translation, speaker recognition
Azure AI TranslatorNLPText translation (100+ languages)
Azure AI Document IntelligenceDocumentExtract structured data from forms
Azure AI SearchSearchVector/hybrid search, semantic ranking, RAG retrieval
Azure AI Content SafetySafetyDetect harmful content in text/images
Azure OpenAI ServiceGenerativeGPT models, embeddings, image generation
Azure Machine LearningMLAutoML, Designer, training/deployment
Azure AI FoundryPortalBuild, evaluate, deploy AI applications
Test Your Knowledge

A company wants to analyze customer feedback emails to identify the main topics being discussed, determine if the feedback is positive or negative, and identify any people or products mentioned by name. Which THREE Azure AI Language features should they use?

A
B
C
D
Test Your Knowledge

Which of the following correctly describes the relationship between Azure AI Vision and Azure AI Custom Vision?

A
B
C
D
Test Your Knowledge

After the May 2025 skills update, which AI-900 domain carries the largest share of the exam?

A
B
C
D
Test Your Knowledge
Matching

Match each machine learning type to its correct description:

Match each item on the left with the correct item on the right

1
Regression
2
Classification
3
Clustering