Skip to content

AI-102 Cheatsheet (2025) โ€‹

โ† Overview ยท Exam Guide โ†’


Core Infrastructure (Domain 1) โ€‹

ConceptKey Detail
AI Foundry HubShared compute, connections, security โ€” for multiple teams
AI Foundry ProjectYour workspace inside a Hub โ€” build, test, deploy
Managed IdentityDefaultAzureCredential() โ€” keyless auth for production
PTU (Provisioned)Reserved capacity, predictable latency, fixed cost
StandardPay-per-token, variable latency, shared infrastructure
Docker ContainerEdge/offline/data residency deployments
Content SafetyStandalone service: Hate / Self-Harm / Violence / Sexual, 4 severity levels
Prompt ShieldsBlocks prompt injection attacks
Content FiltersApplied to Azure OpenAI model inputs AND outputs

Generative AI (Domain 2) โ€‹

ConceptKey Detail
Chat rolessystem (instructions) โ†’ user (prompt) โ†’ assistant (history)
temperature0 = deterministic; higher = more creative/random
RAGInject source docs at runtime; fast, updatable, no retraining
Fine-tuningBake tone/format into weights; requires JSONL training data (100โ€“500+ examples)
Prompt FlowVisual LLM workflow builder โ€” Standard / Chat / Evaluation flow types
VariantsA/B test different prompt versions within one Prompt Flow
GroundednessRAG quality metric โ€” does the response stay in the source context?

RAG vs Fine-tuning โ€‹

FactorRAGFine-tuning
Data changes oftenUseAvoid
Need specific tone/formatPartialUse
Reduce hallucinationsUsePartial
Requires retrainingNoYes

Agentic Solutions (Domain 3) โ€‹

ConceptKey Detail
AI Agent ServiceManaged service for autonomous multi-step reasoning
ThreadConversation session โ€” stores message history
RunOne execution of the reasoning loop on a Thread
Code InterpreterAgent writes + executes Python in a secure sandbox
File SearchAgent retrieves from uploaded documents (built-in vector search)
Multi-agent: HierarchicalManager delegates to Worker agents
Multi-agent: SequentialPipeline โ€” each agent passes output to the next
Multi-agent: Group ChatAgents discuss and critique together

Computer Vision (Domain 4) โ€‹

ConceptKey Detail
Image Analysis 4.0Captioning, Dense Captioning, Tagging, Smart Crop, People Detection
Read API (OCR)Async: POST โ†’ 202 + Operation-Location โ†’ GET until succeeded
Custom Vision โ€” ClassificationMulticlass (1 tag) or Multilabel (multiple tags) per image
Custom Vision โ€” Object DetectionReturns tag + bounding box coordinates
Video IndexerSemantic insights from video: faces, topics, brands, transcript, sentiment
Spatial AnalysisReal-time movement in live feed โ€” runs on edge Docker container
Face Verification1:1 โ€” are these two faces the same person?
Face Identification1:N โ€” who is this from a PersonGroup? (requires training)
FaceList1:N Find Similar โ€” no person concept, no training needed

NLP and Speech (Domain 5) โ€‹

ConceptKey Detail
Sentiment AnalysisDocument + sentence level: positive/negative/neutral
NERExtracts entity types (Person, Location, Date, etc.)
Entity LinkingDisambiguates entities via Wikipedia
PII DetectionDetects and can redact personal data
CLUUtterance โ†’ Intent + Entities; replaces LUIS
Custom QAMatches questions to stored Q&A pairs; supports multi-turn, chit-chat
Speech STTReal-time and batch transcription
Intent RecognitionCLU intent detection from spoken audio via Speech SDK
Keyword RecognitionLocal on-device wake word detection โ€” no cloud needed
Document TranslationAsync โ€” translates Word/PDF preserving layout
Custom TranslatorDomain-specific translation using TMX/XLIFF parallel corpora

CLU vs Custom QA โ€‹

CLUCustom QA
InputUtteranceQuestion
OutputIntent + EntitiesAnswer text
Use caseTake an actionReturn information
TrainingLabel utterancesImport Q&A sources

Knowledge Mining (Domain 6) โ€‹

ConceptKey Detail
AI Search PipelineData Source โ†’ Indexer โ†’ Skillset โ†’ Index
Custom SkillExternal Azure Function โ€” must follow values[] input/output schema
Knowledge StoreTable (Power BI) / Object (blob JSON) / File projections
Shaper SkillReshapes enriched data for Knowledge Store projections
Hybrid SearchKeyword (BM25) + Vector (embeddings) + RRF score fusion
Semantic RankingLLM re-ranker applied after retrieval โ€” surfaces best answer
HNSWAlgorithm used for vector similarity search
Content UnderstandingNew multimodal pipeline (docs + images + video + audio)
Doc Intelligence: TemplateFixed-layout forms โ€” 5+ training docs
Doc Intelligence: NeuralVariable-layout docs (contracts) โ€” 100+ training docs
Doc Intelligence: ComposedRoutes to the best matching custom model

AI Search Query Parameters โ€‹

ParameterPurpose
$filterBoolean OData filter (e.g., Category eq 'Finance')
$selectReturn specific fields only
$top / $skipPagination
$orderbySort results

Async Patterns (High Frequency Exam Topic) โ€‹

All three follow the same 202 โ†’ Operation-Location โ†’ GET pattern:

OperationService
OCR / Read APIAzure AI Vision
Document TranslationAzure AI Translator
Batch operationsAzure OpenAI, Document Intelligence

โ† Overview ยท Exam Guide โ†’

Happy Studying! ๐Ÿš€ โ€ข Privacy-friendly analytics โ€” no cookies, no personal data
Privacy Policy โ€ข AI Disclaimer โ€ข Report an issue