7.5 Exam Day Quick Reference

Key Takeaways

  • Remember the six domains and their weights: Plan/Manage (15-20%), Content Moderation (10-15%), Vision (15-20%), NLP (25-30%), Knowledge Mining (10-15%), Generative AI (10-15%).
  • Deprecated service names: LUIS → CLU, QnA Maker → Custom Question Answering, Form Recognizer → Document Intelligence, Cognitive Search → AI Search.
  • Security priority: managed identity > Entra ID tokens > Key Vault stored keys > environment variable keys > hardcoded keys (never).
  • Content Safety severity scale: 0-7 (not 0-3 or 0-10). Four categories: violence, self-harm, sexual, hate.
  • For production scenarios: always use Standard tier (SLA), private endpoints (network security), managed identity (authentication), and content filtering (safety).
Last updated: March 2026

Exam Day Quick Reference

Quick Answer: This section is a last-minute review of the most critical facts for the AI-102 exam. Focus on service selection, deprecated names, security hierarchy, content safety settings, and production best practices.

Critical Service Selection Rules

  • Text extraction from images → Azure AI Vision (Read API / OCR)
  • Field extraction from forms/invoices → Azure AI Document Intelligence
  • Sentiment, NER, key phrases → Azure AI Language
  • Custom intent/entity recognition → CLU (Conversational Language Understanding)
  • FAQ Q&A → Custom Question Answering
  • Text generation, summarization, chat → Azure OpenAI Service
  • Image generation → Azure OpenAI (DALL-E 3)
  • Search with AI enrichment → Azure AI Search
  • Text/image moderation → Azure AI Content Safety
  • Face detection/verification → Azure AI Face
  • Video analysis → Azure AI Video Indexer
  • People counting/tracking → Azure AI Vision (Spatial Analysis)
  • Speech to text → Azure AI Speech
  • Translation → Azure AI Translator

Security Hierarchy (Most to Least Secure)

  1. Managed Identity — No credentials in code, automatic token management
  2. Entra ID Service Principal — Token-based, rotatable
  3. Keys in Key Vault — Centralized, audited, rotatable
  4. Keys in Environment Variables — Better than hardcoded, but not ideal
  5. Keys in Configuration Files — Risk of source code exposure
  6. Hardcoded Keys — NEVER acceptable

Critical Numbers to Remember

ItemValue
Passing score700/1000
Exam duration120 minutes
Content Safety severity scale0-7
Content Safety categories4 (violence, self-harm, sexual, hate)
OCR languages (print)164
OCR languages (handwriting)9
CLU max utterances50,000 per project
GPT-4o context window128K tokens
1 token ≈0.75 English words
embedding-3-large dimensions3,072
DALL-E 3 images per request1
Composed model max components100
Fine-tuning min examples10

Common Exam Traps

TrapCorrect Answer
Using LUIS for intent recognitionUse CLU (LUIS is deprecated)
Using QnA Maker for FAQ botsUse Custom Question Answering
API keys for production authUse managed identity
Public endpoints for productionUse private endpoints
Disabling all content filtersNever disable; create custom configurations
Content Safety scale is 0-10Scale is 0-7
Azure OpenAI in multi-service resourceRequires dedicated OpenAI resource
Face API emotion recognitionRetired — no longer available
DALL-E 3 n=4 (multiple images)Only n=1 is supported
Translator uses standard AI endpointUses api.cognitive.microsofttranslator.com
Temperature + top_p both adjustedAdjust one OR the other, not both
Fine-tuning for real-time knowledgeUse RAG for up-to-date information
Test Your Knowledge

A production Azure AI application stores API keys in environment variables. A security audit flags this as a concern. What is the recommended improvement?

A
B
C
D
Test Your Knowledge

What is the content safety severity scale used by Azure AI Content Safety?

A
B
C
D
Test Your Knowledge

Which of the following statements about Azure OpenAI is TRUE?

A
B
C
D
Test Your Knowledge

You need to implement a conversational bot that handles both FAQ questions and flight booking actions. Which architecture should you use?

A
B
C
D
Test Your Knowledge

A company needs their Azure AI application to work when the internet is temporarily unavailable. Which deployment approach should they use?

A
B
C
D
Test Your Knowledge

Which three Azure AI services are combined in a typical enterprise RAG (Retrieval-Augmented Generation) architecture?

A
B
C
D
Congratulations!

You've completed this section

Continue exploring other exams