Courseiva
Knowledge + Practice
CertificationsVendorsCareer RoadmapsLabs & ToolsStudy GuidesGlossaryPractice Questions
C
Courseiva

Free IT certification practice questions with explained answers for CCNA, CompTIA, AWS, Azure, Google Cloud, and more.

Certification Practice Questions

CCNA practice questionsSecurity+ SY0-701 practice questionsAWS SAA-C03 practice questionsAZ-104 practice questionsAZ-900 practice questionsCLF-C02 practice questionsA+ Core 1 practice questionsGoogle Cloud ACE practice questionsCySA+ CS0-003 practice questionsNetwork+ N10-009 practice questions
View all certifications →

Product

CertificationsCertification PathsExam TopicsPractice TestsExam Dumps vs Practice TestsStudy HubComparisons

Free Resources

Difficulty IndexLearn — Free ChaptersIT GlossaryFree Tools & LabsStudy GuidesCareer RoadmapsBrowse by VendorCisco Command ReferenceCCNA Scenarios

Company

AboutContactEditorial PolicyQuestion Writing PolicyTrust Center

Legal

Privacy PolicyTerms of Service

Courseiva is a free IT certification practice platform offering original exam-style practice questions, detailed explanations, topic-based practice, mock exams, readiness tracking, and study analytics for Cisco, CompTIA, Microsoft, AWS, and other technology certifications.

© 2026 Courseiva. Courseiva is operated by JTNetSolutions Ltd. All rights reserved.

Courseiva is an independent certification practice platform and is not affiliated with, endorsed by, or sponsored by Cisco, Microsoft, AWS, CompTIA, Google, ISC2, ISACA, or any other certification vendor. Vendor names and certification marks are used only to identify the exams learners are preparing for.

HomeCertificationsAI-102Flashcards
Free — No Signup RequiredMicrosoft· Updated 2026

AI-102 Flashcards — Free Microsoft Azure AI Engineer Associate AI-102 Study Cards

Reinforce AI-102 concepts with active-recall study cards covering all 10 blueprint domains. Each card shows the question on the front and the correct answer with a full explanation on the back.

993+ study cards10 domains coveredActive recall methodFull explanations included
Start 30-card session50-card shuffle
Exam OverviewPractice TestMock ExamStudy GuideFlashcards

Study Sessions

AI-102 Flashcards

Pick a session size:

⚡Quick 10📝20 Cards🎯30 Cards📊50 Cards💪100 Cards
993+ cards · All free

Domains

Implement an agentic solution
Implement computer vision solutions
Implement knowledge mining and information extraction solutions
Implement image and video processing solutions
Implement natural language processing solutions
Implement generative AI solutions

How to use AI-102 flashcards effectively

Flashcards work through active recall — the process of retrieving information from memory rather than passively re-reading it. Research consistently shows that active recall produces stronger, longer-lasting memory than re-reading study guides. For AI-102 preparation, this means flashcards are one of the highest-return study tools available.

Attempt recall first

Read the AI-102 question on each card, pause, and attempt to formulate the answer in your own words before revealing. This retrieval attempt — even if wrong — dramatically strengthens memory compared to immediately reading the answer.

Review wrong cards again

When you get a card wrong, note it and add it back to your review pile. Spaced repetition — seeing difficult cards more frequently — is the mechanism that makes flashcard study far more efficient than linear reading.

Study by domain

Group your AI-102 flashcard sessions by domain for the first 3–4 weeks. Master one domain before moving to the next. In the final week, shuffle all cards together to test cross-domain recall — which is what the real AI-102 exam requires.

Short sessions beat marathon reviews

20–30 flashcard cards per session, done daily, produces better retention than a single 200-card marathon session. Five short daily sessions per week over 4 weeks gives you over 400 total card reviews — enough to reliably pass AI-102.

AI-102 flashcard preview

Sample cards from the AI-102 flashcard bank. Read the question, think of the answer, then read the explanation below.

1

You are building an agentic solution using Microsoft Semantic Kernel. The agent must autonomously decide when to call an external API to fetch real-time data. You want to minimize token usage and avoid unnecessary API calls. Which planner configuration should you use?

Implement an agentic solution

Use a SequentialPlanner with a stepwise strategy and explicit function parameter constraints

Option A is correct because the SequentialPlanner in Microsoft Semantic Kernel, when configured with a stepwise strategy, evaluates potential steps one at a time and only includes a call to an external API if it is required to satisfy the goal. Explicit function parameter constraints help the planner understand the exact inputs needed, reducing unnecessary exploration and token usage. Options B, C, and D either rely on manual invocation, parallel execution, or automatic invocation without decision-making, which either increases token consumption or does not allow the agent to autonomously decide when to call the API.

2

A retail company uses Azure Computer Vision to analyze customer traffic in stores. They deploy a custom object detection model to count customers and detect occupancy. After deployment, the model consistently underestimates the number of customers during peak hours. The company has retrained the model with more data but the issue persists. What is the most likely cause?

Implement computer vision solutions

The training data does not adequately represent peak-hour scenarios.

The model consistently underestimates customer counts during peak hours, which indicates a distribution shift between the training data and the inference environment. Even after retraining with more data, the issue persists because the additional data likely still lacks sufficient representation of peak-hour scenarios (e.g., high density, occlusion, rapid movement). In Azure Custom Vision, object detection models learn from labeled examples; if the training set does not include diverse peak-hour images with varied lighting, crowd densities, and angles, the model will fail to generalize to those conditions.

3

You are building a knowledge mining solution to extract insights from a large set of PDF contracts. The solution must identify parties, dates, and monetary amounts. Which Azure AI service should you use as the primary extraction engine?

Implement knowledge mining and information extraction solutions

Azure AI Document Intelligence

Azure AI Document Intelligence (formerly Form Recognizer) is the correct choice because it is specifically designed for document analysis and extraction of structured data such as parties, dates, and monetary amounts from PDFs and images. Its prebuilt models (e.g., the 'prebuilt-invoice' or 'prebuilt-contract' model) use optical character recognition (OCR) and deep learning to extract key-value pairs and entities from contracts without requiring custom training.

4

A retail company uses Azure Computer Vision to analyze in-store camera feeds. They recently added a new product line and updated the object detection model. However, the model fails to detect the new products. What should the company do first?

Implement image and video processing solutions

Retrain the custom object detection model with images of the new products.

The model fails to detect new products because it was never trained on them. Retraining the custom object detection model with labeled images of the new products is the correct first step, as it updates the model's knowledge to recognize the new product line. Pre-built models or threshold adjustments cannot add new object classes.

5

A company is building a chatbot using Azure Cognitive Service for Language. They need to ensure that user utterances are correctly mapped to the appropriate intent in a custom question answering project. What should they configure?

Implement natural language processing solutions

Add synonyms and phrase list to the custom question answering project.

Option D is correct because adding synonyms and phrase lists to a custom question answering project directly improves the mapping of user utterances to intents by normalizing variations in phrasing. This configuration allows the project to recognize equivalent terms (e.g., 'cost' and 'price') as the same intent, ensuring accurate intent mapping without requiring exact matches.

6

A company wants to generate personalized product descriptions for its e-commerce site using Azure OpenAI. They need to ensure the model's output adheres to brand guidelines and does not generate prohibited content. Which approach should they use?

Implement generative AI solutions

Use a system message with brand guidelines and apply content filtering.

Option A is correct because using a system message allows you to embed brand guidelines directly into the conversation context, instructing the model on tone, style, and prohibited content. Azure OpenAI's content filtering provides an additional safety layer by automatically detecting and blocking harmful or policy-violating outputs, ensuring compliance with both brand and regulatory requirements.

7

A company is building an agent that uses Azure OpenAI Service to answer customer queries by querying a SQL database. The agent must be able to handle complex multi-turn conversations and maintain context. Which approach should the team use to implement the agent?

Implement agentic AI solutions

Use a conversational agent framework like AutoGen with a tool that executes SQL queries, and maintain conversation state.

Option D is correct because AutoGen is a conversational agent framework designed for multi-turn, stateful interactions. It can maintain conversation context across turns and integrate a tool to execute SQL queries, which directly meets the requirement for complex multi-turn conversations with context retention. The other options either lack state management or rely on stateless prompt engineering, which is insufficient for maintaining context in a multi-turn agent.

8

A company is building a knowledge mining solution using Azure AI Search. They need to extract key phrases from a large set of documents in multiple languages. Which skill should they add to the skillset?

Implement knowledge mining and document intelligence solutions

Key Phrase Extraction skill

The Key Phrase Extraction skill is the correct choice because it is specifically designed to identify and extract the most important phrases from text, which directly supports the requirement to extract key phrases from documents. Azure AI Search's built-in Key Phrase Extraction skill leverages natural language processing to analyze text and return a list of key phrases, making it the appropriate skill for this knowledge mining solution.

9

A company plans to deploy an Azure AI solution that processes sensitive customer data. The solution must comply with GDPR and ensure data residency within the European Union. Which Azure resource configuration should be used?

Plan and manage an Azure AI solution

Create an Azure AI services resource in a specific EU region and set the data residency option to 'EU'.

Option D is correct because Azure AI services allow you to specify a data residency option when creating the resource in a specific EU region, ensuring that all customer data remains within the European Union as required by GDPR. This configuration explicitly restricts data processing and storage to the chosen geographic boundary, meeting compliance and residency mandates.

10

A company uses Azure Content Moderator to review user-generated images in a social media app. Recently, the team noticed that images containing subtle adult content are not being flagged. What should they do to improve detection without increasing false positives?

Implement content moderation solutions

Configure a human review team using the Review tool to manually inspect flagged content.

Option C is correct because Azure Content Moderator is designed to work with human review teams via the Review tool to handle edge cases where automated detection fails. By configuring a human review team, flagged images can be manually inspected to catch subtle adult content that the machine learning model misses, without lowering thresholds that would increase false positives. This approach leverages human judgment to improve detection accuracy while maintaining the existing automated moderation settings.

Study all 993+ AI-102 cards

AI-102 flashcards by domain

The AI-102 flashcard bank covers all 10 official blueprint domains published by Microsoft. Cards are distributed proportionally, so domains with higher exam weight have more cards.

Domain Coverage

Implement an agentic solution

~1 cards

Implement computer vision solutions

~1 cards

Implement knowledge mining and information extraction solutions

~1 cards

Implement image and video processing solutions

~1 cards

Implement natural language processing solutions

~1 cards

Implement generative AI solutions

~1 cards

Implement agentic AI solutions

~1 cards

Implement knowledge mining and document intelligence solutions

~1 cards

Plan and manage an Azure AI solution

~1 cards

Implement content moderation solutions

~1 cards

Flashcards vs practice tests: which is better for AI-102?

Both flashcards and practice questions are evidence-based study tools. The difference is in what they train:

Flashcards — concept retention

Best for memorising definitions, acronyms, protocol behaviours, command syntax, and conceptual distinctions. Use flashcards to build the foundational vocabulary that AI-102 questions assume you know.

Best in: weeks 1–3

Practice tests — application

Best for applying concepts to realistic scenarios, eliminating distractors, and building exam stamina.AI-102 questions test scenario reasoning — not just recall — so practice tests are essential.

Best in: weeks 3–6

The most effective AI-102 study plan combines both: use flashcards for the first 2–3 weeks to build conceptual foundations, then shift to practice tests and mock exams in the final 2–3 weeks to apply and benchmark that knowledge. Most candidates who pass on their first attempt use both tools.

AI-102 flashcards — frequently asked questions

Are the AI-102 flashcards free?

Yes. Courseiva provides free AI-102 flashcards across all official exam domains. Every card includes the correct answer and a full explanation of why it is right and why the distractors are wrong. The platform also includes topic-based practice, mock exams, and readiness tracking — no account required.

How many AI-102 flashcards are on Courseiva?

Courseiva has 993+ original AI-102 flashcards across all 10 exam blueprint domains. New cards are added regularly as the question bank grows. All cards are written by certified engineers against the official Microsoft exam objectives.

How are Courseiva flashcards different from Anki or Quizlet?

Courseiva flashcards are purpose-built for IT certification exams. Unlike generic flashcard platforms where content quality varies, every Courseiva card is mapped to the official AI-102 exam blueprint, written by engineers who hold the certification, and includes a full explanation of the correct answer and why the distractors are wrong. This explanation quality is what separates genuine learning from rote memorisation.

Can I use AI-102 flashcards offline?

Courseiva is a web platform — an internet connection is required. For offline study, we recommend creating free Courseiva account, using the platform in your browser, and using your device's offline capabilities if your browser supports offline web apps.

Free forever · No credit card required

Track your AI-102 flashcard progress

Save your results, see which domains need more work, and get spaced repetition recommendations — all free.

Sign Up Free

Free forever · Every certification included

Start Studying

⚡Quick 10 cards📝20-card session🎯30-card session📊50-card shuffle💪100-card marathon

Also Study With

Practice TestMock ExamStudy GuideExam Domains

Related Flashcards

AI-900AZ-104DP-203

Related Flashcard Sets

AI-900

Azure AI Fundamentals

AZ-104

Azure Administrator

DP-203

Azure Data Engineer

Browse all certifications →