🔒 Guided

Pre-launch preview. Authorised access only.

Incorrect code

Guided by A Guide to Cloud
Explore AB-900 AI-901
Guided AB-731 Domain 1
Domain 1 — Module 3 of 11 27%
3 of 27 overall

AB-731 Study Guide

Domain 1: Identify the Business Value of Generative AI Solutions

  • Generative AI vs Traditional AI: What's the Difference?
  • Choosing the Right AI Solution for Your Business
  • AI Models: Pretrained vs Fine-Tuned
  • AI Cost Drivers and ROI: Tokens, Pricing, and Business Cases
  • Challenges of Generative AI: Fabrications, Bias & Reliability
  • When Generative AI Creates Real Business Value
  • Prompt Engineering: The Skill That Multiplies AI Value
  • RAG and Grounding: Making AI Use YOUR Data
  • Data Quality: The Make-or-Break Factor for AI
  • When Traditional Machine Learning Adds Value
  • Securing AI Systems: From Application to Data

Domain 2: Identify Benefits, Capabilities, and Opportunities for Microsoft AI Apps and Services

  • Mapping Business Needs to Microsoft AI Solutions
  • Copilot Versions: Free, Business, M365, and Beyond
  • Copilot Chat: Web, Mobile & Work Experiences
  • Copilot in M365 Apps: Word, Excel, Teams & More
  • Copilot Studio & Microsoft Graph: Building Smarter Solutions
  • Researcher & Analyst: Copilot's Power Agents
  • Build, Buy, or Extend: The AI Decision Framework
  • Microsoft Foundry: Your AI Platform
  • Azure AI Services: Vision, Search & Beyond
  • Matching the Right AI Model to Your Business Need

Domain 3: Identify an Implementation and Adoption Strategy

  • Responsible AI and Governance: Principles That Protect Your Business Free
  • Setting Up an AI Council: Strategy, Oversight & Alignment Free
  • Building Your AI Adoption Team Free
  • AI Champions: Your Secret Weapon for Adoption Free
  • Data, Security, Privacy & Cost: The Four Pillars of AI Readiness Free
  • Copilot & Azure AI Licensing: Every Option Explained Free

AB-731 Study Guide

Domain 1: Identify the Business Value of Generative AI Solutions

  • Generative AI vs Traditional AI: What's the Difference?
  • Choosing the Right AI Solution for Your Business
  • AI Models: Pretrained vs Fine-Tuned
  • AI Cost Drivers and ROI: Tokens, Pricing, and Business Cases
  • Challenges of Generative AI: Fabrications, Bias & Reliability
  • When Generative AI Creates Real Business Value
  • Prompt Engineering: The Skill That Multiplies AI Value
  • RAG and Grounding: Making AI Use YOUR Data
  • Data Quality: The Make-or-Break Factor for AI
  • When Traditional Machine Learning Adds Value
  • Securing AI Systems: From Application to Data

Domain 2: Identify Benefits, Capabilities, and Opportunities for Microsoft AI Apps and Services

  • Mapping Business Needs to Microsoft AI Solutions
  • Copilot Versions: Free, Business, M365, and Beyond
  • Copilot Chat: Web, Mobile & Work Experiences
  • Copilot in M365 Apps: Word, Excel, Teams & More
  • Copilot Studio & Microsoft Graph: Building Smarter Solutions
  • Researcher & Analyst: Copilot's Power Agents
  • Build, Buy, or Extend: The AI Decision Framework
  • Microsoft Foundry: Your AI Platform
  • Azure AI Services: Vision, Search & Beyond
  • Matching the Right AI Model to Your Business Need

Domain 3: Identify an Implementation and Adoption Strategy

  • Responsible AI and Governance: Principles That Protect Your Business Free
  • Setting Up an AI Council: Strategy, Oversight & Alignment Free
  • Building Your AI Adoption Team Free
  • AI Champions: Your Secret Weapon for Adoption Free
  • Data, Security, Privacy & Cost: The Four Pillars of AI Readiness Free
  • Copilot & Azure AI Licensing: Every Option Explained Free
Domain 1: Identify the Business Value of Generative AI Solutions Premium ⏱ ~11 min read

AI Models: Pretrained vs Fine-Tuned

Foundation models come pretrained on massive datasets. Fine-tuning adapts them to your specific needs. Understanding the difference helps you make smarter AI investment decisions.

Pretrained vs fine-tuned: what’s the difference?

☕ Simple explanation

A pretrained model is like a university graduate. A fine-tuned model is that graduate after six months of job-specific training.

The graduate has broad knowledge — they can write, analyse, reason, and communicate. But they don’t know your company’s products, your industry jargon, or your specific processes.

Fine-tuning adjusts how the model behaves — its tone, terminology, and output style. It’s NOT about giving the model access to your documents (that’s what RAG does). Think of it as specialised training that changes the graduate’s habits, not their reference library.

The key decision: do you need a generalist (pretrained) or a specialist (fine-tuned)?

Pretrained models are foundation models that have been trained on vast, diverse datasets (often trillions of tokens from the internet, books, code, and other sources). They have broad general knowledge and can perform many tasks out of the box — summarisation, translation, Q&A, code generation, and reasoning.

Fine-tuned models start with a pretrained foundation and are then further trained on a smaller, task-specific or domain-specific dataset. This additional training adjusts the model’s parameters to improve performance on particular tasks, adopt specific terminology, or match a desired output style.

There’s also a middle ground: prompt engineering and RAG (retrieval-augmented generation) can customise a pretrained model’s behaviour without changing its parameters — often the most cost-effective starting point.

The customisation spectrum

There’s more than just “pretrained” and “fine-tuned.” Think of it as a spectrum:

The AI model customisation spectrum — from zero effort to maximum investment
FeatureEffortCostWhen to use
Pretrained (as-is)None — use the model directlyLowest (pay per token)General tasks: drafting, summarising, brainstorming, translation
Prompt engineeringLow — craft better instructionsSame as pretrainedWhen you need specific output formats, tone, or behaviour without changing the model
RAG (grounding)Medium — connect to your dataModerate (retrieval + inference)When the model needs to answer questions from YOUR documents, not just general knowledge
Fine-tuningHigh — retrain on your datasetSignificant (compute + data prep)When you need domain-specific language, consistent style, or specialised knowledge baked into the model
Train from scratchVery high — build a new modelExtremely highAlmost never for business — only if you're a model provider or have unique requirements no existing model serves
💡 Exam tip: The customisation decision tree

The exam expects you to know WHEN to recommend each level:

  1. Start with pretrained + prompt engineering — this solves 80% of business needs
  2. Add RAG when the model needs YOUR data (not general knowledge)
  3. Fine-tune only when prompt engineering and RAG aren’t enough — e.g. the model needs to consistently use your industry terminology or match a very specific output style
  4. Never recommend training from scratch for a business scenario — it’s almost always wrong on the exam

Business tradeoffs: what leaders need to know

As a business leader, the pretrained vs fine-tuned decision comes down to five factors:

FactorPretrained ModelFine-Tuned Model
CostLower — pay only for inferenceHigher — compute for training + ongoing inference
Time to valueFast — hours to daysSlow — weeks to months
Data requirementsNone (or minimal via RAG)Requires curated training dataset
MaintenanceProvider updates the modelYou must retrain when data or requirements change
IP and differentiationSame model everyone else usesYour competitive advantage — trained on your unique data

Scenario: Ravi’s build decision

Ravi (CTO, TechVantage) is building an AI assistant for developers. He evaluates:

  • Option 1: Pretrained GPT-4o with prompt engineering — Fast, cheap, works well for general coding questions. But it doesn’t know TechVantage’s internal APIs or coding standards.

  • Option 2: GPT-4o with RAG — Connect the model to TechVantage’s internal documentation. The model retrieves relevant docs before answering. Good balance of customisation and cost.

  • Option 3: Fine-tuned model — Train a model on TechVantage’s codebase and documentation. More consistent output, uses internal terminology naturally. But expensive and needs regular retraining.

Ravi’s decision: Start with Option 2 (RAG). It gives 90% of the benefit at 20% of the cost of fine-tuning. Fine-tune later only if RAG isn’t sufficient.

💡 Why 'start with RAG' is usually the right answer

For the exam and for real life: RAG is often the sweet spot. It lets you ground a pretrained model in YOUR data without the cost and complexity of fine-tuning. Most organisations should start with RAG and only fine-tune if they can demonstrate a clear gap that RAG can’t close.

Model types you should know

ModelTypeKey CharacteristicBusiness Use
GPT-4oLarge language model (general)Highly capable, multimodal, expensiveComplex reasoning, content creation, analysis
GPT-4o miniSmaller, faster LLM80% capability at 20% costHigh-volume, latency-sensitive tasks
Phi (Microsoft)Small language modelRuns locally, low cost, open-weightOn-device AI, privacy-sensitive scenarios
Llama (Meta)Open-source LLMFree to use, customisableSelf-hosted deployments, research
DALL-EImage generation modelCreates images from text descriptionsMarketing visuals, concept art, prototyping
WhisperSpeech-to-text modelTranscribes audio in 90+ languagesMeeting transcription, accessibility

Key flashcards

Question

What is the difference between a pretrained and a fine-tuned model?

Click or press Enter to reveal answer

Answer

A pretrained model has broad, general knowledge from training on massive datasets. A fine-tuned model starts with a pretrained base and is additionally trained on domain-specific data to improve performance on particular tasks.

Click to flip back

Question

Where does RAG fit on the customisation spectrum?

Click or press Enter to reveal answer

Answer

RAG sits between prompt engineering and fine-tuning. It grounds a pretrained model in your specific data without changing the model's parameters — often the most cost-effective customisation approach.

Click to flip back

Question

When should a business fine-tune a model instead of using RAG?

Click or press Enter to reveal answer

Answer

Fine-tune when you need the model to consistently use domain-specific terminology, match a very specific style, or when RAG retrieval isn't providing sufficient quality. If RAG solves the problem, fine-tuning is usually unnecessary.

Click to flip back

Question

What is a Small Language Model (SLM) and when would you use one?

Click or press Enter to reveal answer

Answer

An SLM (like Microsoft Phi) is a compact AI model that runs on-device or with minimal compute. Use when you need local processing, low latency, low cost, or data privacy — the model never sends data to the cloud.

Click to flip back

Knowledge check

Knowledge Check

Dr. Anisha Patel is advising a healthcare company that needs an AI assistant to use medical terminology consistently and follow strict clinical documentation standards. What level of model customisation should she recommend?

Knowledge Check

Elena's firm wants to quickly deploy an AI tool that helps consultants find answers in the company's proposal archive. What's the most cost-effective approach?

🎬 Video coming soon

Next up: AI Cost Drivers and ROI — understanding tokens, pricing models, and building the business case for AI investment.

← Previous

Choosing the Right AI Solution for Your Business

Next →

AI Cost Drivers and ROI: Tokens, Pricing, and Business Cases

Guided

I learn, I simplify, I share.

A Guide to Cloud YouTube Feedback

© 2026 Sutheesh. All rights reserved.

Guided is an independent study resource and is not affiliated with, endorsed by, or officially connected to Microsoft. Microsoft, Azure, and related trademarks are property of Microsoft Corporation. Always verify information against Microsoft Learn.