Free AI-103 Exam Flashcards
Memorize 50 essential terms and definitions for the Microsoft Certified: Azure AI Apps and Agents Developer Associate (Exam AI-103). See the term, recall the definition, then flip to check yourself.
What is Microsoft Foundry used for on AI-103?
Microsoft Foundry is the primary environment for building, managing, evaluating, and deploying Azure AI apps and agents.
Filter by Topic
Jump to Card
About These AI-103 Flashcards
These 50 flashcards are designed to help you memorize key terms and definitions for the Microsoft Certified: Azure AI Apps and Agents Developer Associate (Exam AI-103). Each card shows a term on the front and its definition on the back—the classic flashcard format for vocabulary memorization. Use these alongside our practice questions to build both recall and comprehension.
Topics Covered
Complete Flashcard Reference
Review every term in this set. Open any term to reveal its definition.
What is Microsoft Foundry used for on AI-103?
Microsoft Foundry is the primary environment for building, managing, evaluating, and deploying Azure AI apps and agents.
What should guide model selection?
Choose the model based on task requirements such as reasoning depth, latency, cost, modality, context needs, and deployment constraints.
When is a small language model a good fit?
Use a small language model when the task is narrow, latency or cost matters, and deep reasoning is not required.
When is a multimodal model needed?
Use a multimodal model when the app must reason over more than one input type, such as text with images, audio, or video context.
What is keyless authentication?
Keyless authentication uses Microsoft Entra ID and managed identity instead of embedded API keys. It improves secret management and access control.
Why use managed identity for Azure AI apps?
Managed identity lets Azure-hosted compute access services through assigned identity and RBAC, avoiding hard-coded credentials.
What does private networking protect?
Private networking reduces public exposure for services and data paths. It is used when AI resources, search indexes, storage, or apps must stay inside controlled network boundaries.
What are quotas and rate limits?
They control how much model capacity an app can use over time. Monitor them to avoid throttling, failed requests, or unexpected scaling limits.
What should AI monitoring track?
Track model performance, latency, cost, safety events, drift, search relevance, grounding quality, and app errors.
What is responsible AI instrumentation?
It is the use of evaluators, safety checks, trace logs, provenance, and oversight workflows to measure and govern AI behavior.
What do content filters do?
Content filters classify and block or flag unsafe inputs and outputs. They are guardrails, not a replacement for app-level validation and monitoring.
What is prompt injection?
Prompt injection is an attempt to override instructions or misuse tools through user input, retrieved content, or embedded data. Defenses include isolation, filtering, tool limits, and validation.
What is retrieval-augmented generation?
RAG retrieves relevant grounding content and adds it to the model context so generated answers can be based on approved sources.
What is grounding?
Grounding connects model responses to trusted data, retrieved documents, or tool results. It helps reduce unsupported answers.
What is function calling?
Function calling lets a model request a structured tool or API call. The app executes the call and returns results for the model to use.
What is structured output?
Structured output asks the model to return data in a defined schema such as JSON. It helps apps validate, parse, and route model responses.
What should prompt engineering control?
Prompt engineering sets role, task, constraints, examples, output format, and safety instructions so the model produces useful and predictable responses.
What does temperature affect?
Temperature affects response variability. Lower values are better for consistent outputs; higher values can make responses more creative but less predictable.
What is model evaluation?
Evaluation measures whether a model or app meets goals for relevance, quality, safety, groundedness, and task success before and after deployment.
What does tracing show?
Tracing records the steps in an AI workflow, such as prompts, tool calls, retrieval, latency, and outputs. It helps debug and audit behavior.
What is token analytics used for?
Token analytics helps track usage, cost, prompt size, response size, and performance trends across AI app calls.
What is an agent role?
An agent role defines what the agent is responsible for, how it should behave, and what boundaries apply to its responses and actions.
What is a tool schema?
A tool schema describes a callable tool's name, purpose, inputs, and expected structure so the model can request tool use correctly.
What is conversation memory?
Conversation memory preserves relevant prior context for an agent. It should be scoped carefully so old or sensitive context does not pollute future actions.
What is multi-agent orchestration?
Multi-agent orchestration coordinates specialized agents or steps to complete a broader workflow, often with routing, handoffs, and approval gates.
When should an agent require human approval?
Require approval before high-impact, irreversible, costly, or sensitive actions such as sending external messages, changing records, or executing privileged tools.
What is visual question answering?
Visual question answering uses a model to answer questions grounded in image or video content, such as identifying visible defects or comparing visual elements.
What is image captioning?
Image captioning generates short or detailed text descriptions of visual content. It can support search, accessibility, and review workflows.
What is alt text generation?
Alt text generation creates concise descriptions of images for accessibility. It should describe meaningful content without adding unsupported details.
What is inpainting?
Inpainting edits a selected region of an image while preserving the surrounding context. It is used for controlled image modification.
What risk is unique to text inside images?
Text embedded in images can carry indirect prompt injection instructions. Treat visual text as untrusted input before using it to guide an agent.
What is object detection?
Object detection identifies and locates objects or regions within an image or video frame. It is useful when the app needs more than a general caption.
What is text analysis in AI-103?
Text analysis extracts meaning from text, such as entities, topics, sentiment, summaries, sensitive content, or structured data.
What is entity extraction?
Entity extraction identifies important items in text, such as people, organizations, dates, products, locations, or custom business terms.
What is sentiment analysis?
Sentiment analysis estimates the emotional tone of text, such as positive, negative, neutral, or mixed. It is useful for feedback and support scenarios.
What is sensitive content detection?
Sensitive content detection finds content such as personal data, unsafe material, or policy-relevant text so the app can redact, block, route, or review it.
What is speech-to-text used for?
Speech-to-text converts audio into text so apps and agents can transcribe, analyze, summarize, or respond to spoken input.
What is text-to-speech used for?
Text-to-speech converts text responses into spoken audio. It is used for voice agents, accessibility, IVR, and conversational apps.
What does translation add to an AI app?
Translation lets an app accept or produce content across languages. It may use dedicated translation services or model-based translation flows.
What is domain customization?
Domain customization adapts prompts, schemas, examples, or models to a specific business vocabulary, format, or compliance requirement.
What is information extraction?
Information extraction turns documents or multimodal content into usable data, such as fields, summaries, markdown, tables, entities, or grounded chunks.
What is OCR used for?
OCR converts text in images, scans, or documents into machine-readable text for search, extraction, review, or RAG pipelines.
What is Azure AI Search used for in RAG?
Azure AI Search indexes content and retrieves relevant chunks for grounding. It can support keyword, vector, hybrid, and semantic search patterns.
What is vector search?
Vector search finds content by semantic similarity using embeddings. It is useful when exact keyword matches are not enough.
What is hybrid search?
Hybrid search combines keyword and vector retrieval. It can improve relevance when queries need both exact terms and semantic similarity.
What is semantic ranking?
Semantic ranking reorders search results based on meaning and relevance. It is commonly layered on top of retrieved candidates.
What is indexing?
Indexing prepares content for search by extracting, chunking, enriching, embedding, and storing fields that retrieval can query.
What is enrichment in a retrieval pipeline?
Enrichment adds derived information such as OCR text, entities, captions, translations, key phrases, or embeddings before content is indexed.
What is Content Understanding used for?
Content Understanding extracts structured or markdown outputs from multimodal content such as documents, images, audio, or video for downstream reasoning.
What makes a retrieval pipeline safe for agents?
Use trusted sources, access controls, security trimming, prompt-injection defenses, citation/provenance data, and monitoring for grounding quality.
Frequently Asked Questions
What do AI-103 flashcards help you review?
These AI-103 flashcards review Microsoft Foundry planning, model deployments, generative AI, agents, RAG, Azure AI Search, computer vision, speech, text analysis, and information extraction.
Are these AI-103 flashcards enough to pass?
Flashcards are useful for recall, but AI-103 also requires hands-on Foundry practice, scenario questions, and review of the current Microsoft Learn skills outline.
What is the Microsoft AI-103 retake policy?
Use the current Microsoft certification retake policy when scheduling. Local metadata follows the common Microsoft pattern of a 24-hour wait after the first failed attempt and longer waits for later attempts.
Explore More Microsoft Azure Certifications
Continue into nearby exams from the same family. Each card keeps practice questions, study guides, flashcards, videos, and articles in one place.
More From This Family
Videos and articles for deeper review.