Category: AI

Understand how retrieval-augmented generation (RAG) is used for AI solutions (AB-731 Exam Prep)

This post is a part of the AB-731: AI Transformation Leader Exam Prep Hub.
This topic falls under these sections:
Identify the business value of generative AI solutions (35–40%)
   --> Identify benefits and capabilities of generative AI solutions
      --> Understand how retrieval-augmented generation (RAG) is used for AI solutions


Note that there are 10 practice questions (with answers) at the end of each section to help you solidify your knowledge of the material. Also, there are 4 practice tests with 30 questions each available from the hub's main page below the exam topics section.

Introduction

One of the major limitations of generative AI models is that they rely primarily on the knowledge available during pretraining. While large language models possess extensive general knowledge, they do not automatically know an organization’s internal documents, current business information, or newly created content.

Retrieval-Augmented Generation (RAG) addresses this challenge by combining information retrieval with generative AI. Rather than depending solely on pretrained knowledge, RAG enables AI systems to retrieve relevant information from trusted data sources and use that information when generating responses.

For the AB-731: AI Transformation Leader exam, understanding the purpose, benefits, and business value of RAG is essential.


What Is Retrieval-Augmented Generation (RAG)?

Retrieval-Augmented Generation (RAG) is an AI approach that combines:

  1. Information retrieval
  2. Generative AI

A RAG system first searches for relevant information from approved data sources and then supplies that information to the AI model so that responses are based on both:

  • The model’s pretrained knowledge.
  • Retrieved business-specific information.

RAG allows AI solutions to produce answers that are:

  • More accurate
  • More current
  • More relevant
  • Better aligned with organizational knowledge

Why RAG Is Needed

Large language models have several limitations:

Knowledge Cutoff

Models are trained on data available up to a specific point in time and may not know recent events or updates.

No Automatic Access to Enterprise Data

Models do not inherently know:

  • Internal policies
  • SharePoint documents
  • Product catalogs
  • Customer records
  • Company procedures

Potential Hallucinations

When information is missing, models may generate inaccurate or fabricated responses.

RAG helps overcome these limitations by supplying additional context from trusted sources.


How RAG Works

Although implementations vary, the basic process follows four steps.

Step 1: User Submits a Question

Example:

What is our company’s remote work policy?


Step 2: Retrieve Relevant Information

The system searches approved sources, such as:

  • SharePoint sites
  • Knowledge bases
  • Databases
  • Document repositories

Relevant documents are identified.


Step 3: Supply Context to the Model

The retrieved information is provided to the AI model along with the user’s question.


Step 4: Generate the Response

The model creates an answer using:

  • Retrieved information
  • General language understanding

The response is grounded in trusted content.


Example of RAG in Action

Without RAG

Question:

What warranty applies to Product X?

The AI may:

  • Guess
  • Use outdated information
  • Produce inaccurate responses

With RAG

The system retrieves:

  • Current warranty documentation
  • Product information

The response is based on official data.

Result:

  • Higher accuracy
  • Greater trust
  • Better customer experience

Data Sources Used by RAG

RAG systems can retrieve information from many sources.

Internal Documents

  • Policies
  • Procedures
  • Manuals

Knowledge Bases

  • FAQs
  • Support articles

Collaboration Platforms

  • SharePoint
  • Teams files

Databases

  • Product inventories
  • Pricing systems

Customer Systems

  • CRM platforms
  • Service records

External Trusted Sources

  • Regulations
  • Industry standards
  • Public documentation

Business Benefits of RAG

Improved Accuracy

Responses are based on trusted information rather than assumptions.

Business Impact

  • Increased confidence
  • Better decisions

Current Information

Organizations can use newly created documents without retraining the model.

Business Impact

  • Faster updates
  • Reduced maintenance effort

Reduced Hallucinations

RAG provides supporting information that helps reduce fabricated responses.

Business Impact

  • Improved reliability

However, hallucinations can still occur and human review remains important.


Better User Experiences

Users receive:

  • More relevant answers
  • Faster access to information
  • Context-aware responses

Business Impact

  • Increased satisfaction
  • Greater AI adoption

Scalability

A single AI system can serve many users across departments.

Business Impact

  • Enterprise-wide deployment
  • Controlled costs

Preservation of Organizational Knowledge

Institutional knowledge can be made available even when employees leave.

Business Impact

  • Improved knowledge sharing
  • Reduced dependency on individuals

Why Organizations Prefer RAG Over Retraining Models

Organizations frequently choose RAG instead of retraining foundation models because RAG:

Is Faster

Documents can be added immediately.

Costs Less

Retraining large models is expensive.

Is Easier to Maintain

Updating knowledge repositories is simpler than retraining models.

Supports Dynamic Information

Frequently changing content can be used immediately.

Preserves Foundation Model Capabilities

The organization benefits from the strengths of the original model while adding business-specific knowledge.


RAG vs Fine-Tuning

CharacteristicRAGFine-Tuning
Uses external information during inferenceYesNo
Updates knowledge without retrainingYesNo
Changes model parametersNoYes
Suitable for frequently changing informationYesLimited
Typically lower costYesOften higher
Ideal for internal documentsYesNot always

Key Exam Point

RAG primarily adds knowledge, while fine-tuning primarily adjusts behavior and style.


Common Business Use Cases for RAG

Employee Knowledge Assistants

Employees ask questions about:

  • Policies
  • Procedures
  • Benefits

Customer Support

AI retrieves:

  • Product information
  • Warranty details
  • Troubleshooting documents

Sales Enablement

Sales teams access:

  • Pricing information
  • Product specifications
  • Competitive information

Healthcare

Clinicians retrieve:

  • Guidelines
  • Procedures
  • Approved documentation

Legal and Compliance

AI references:

  • Regulations
  • Contracts
  • Internal policies

Security Considerations

RAG systems should:

Respect User Permissions

Employees should only access information they are authorized to view.

Protect Sensitive Data

Examples include:

  • Financial information
  • Personal information
  • Intellectual property

Follow Governance Policies

Organizations should maintain:

  • Data quality standards
  • Compliance controls
  • Responsible AI practices

Limitations of RAG

Although powerful, RAG has limitations.

Poor Data Produces Poor Results

Inaccurate documents lead to inaccurate responses.

Hallucinations Are Reduced, Not Eliminated

Human oversight is still necessary.

Search Quality Matters

If retrieval mechanisms fail, responses may suffer.

Additional Infrastructure May Be Required

Organizations must maintain:

  • Knowledge repositories
  • Search systems
  • Data pipelines

Microsoft AI Solutions and RAG

Microsoft solutions frequently use RAG capabilities.

Examples include:

Microsoft 365 Copilot

Uses Microsoft Graph information to provide contextual responses.

Copilot Studio

Connects AI agents to enterprise data sources.

Azure AI Foundry

Supports Retrieval-Augmented Generation architectures for custom AI applications.

Knowledge-Based Chatbots

Use organizational documents to answer questions.


Relationship Between Grounding and RAG

Grounding is the broader concept of providing external context to AI systems.

RAG is one of the most common techniques used to implement grounding.

In other words:

RAG is a grounding approach.

Not all grounding solutions use RAG, but many enterprise AI systems do.


Exam Tips

For the AB-731 exam, remember:

  • RAG combines information retrieval with generative AI.
  • RAG provides current and organization-specific information.
  • RAG reduces hallucinations but does not eliminate them.
  • RAG does not retrain the model.
  • RAG is commonly used for grounding AI solutions.
  • RAG is often less expensive and easier to maintain than fine-tuning.
  • Data quality directly affects response quality.
  • Security and access controls remain essential.
  • Human oversight is still required.

Practice Exam Questions

Question 1

What is the primary purpose of Retrieval-Augmented Generation (RAG)?

A. To permanently retrain foundation models after each interaction
B. To combine information retrieval with generative AI responses
C. To replace prompt engineering techniques
D. To increase model size

Answer: B

Explanation: RAG retrieves relevant information from trusted sources and uses it to generate more accurate responses.


Question 2

Which limitation of large language models does RAG help address?

A. Hardware failures
B. Network latency
C. Lack of access to current and organizational information
D. User authentication

Answer: C

Explanation: RAG provides business-specific and up-to-date information that pretrained models do not inherently possess.


Question 3

Which source is commonly used by a RAG solution?

A. Random online forums
B. Unverified social media comments
C. Approved knowledge bases and document repositories
D. Temporary browser cache files

Answer: C

Explanation: Trusted and authoritative sources provide higher-quality information for retrieval.


Question 4

Which statement correctly describes RAG?

A. It changes model parameters permanently.
B. It eliminates all hallucinations.
C. It requires complete model retraining whenever data changes.
D. It retrieves relevant information before generating responses.

Answer: D

Explanation: RAG augments AI responses by retrieving information during inference.


Question 5

Why do many organizations prefer RAG over retraining models?

A. RAG requires larger hardware investments.
B. RAG updates knowledge more quickly and often at lower cost.
C. RAG eliminates the need for governance.
D. RAG prevents bias entirely.

Answer: B

Explanation: Updating documents is easier and less expensive than retraining foundation models.


Question 6

What is one business benefit of RAG?

A. Improved response accuracy and relevance
B. Elimination of data quality requirements
C. Guaranteed compliance certification
D. Removal of security controls

Answer: A

Explanation: RAG improves output quality by grounding responses in trusted information.


Question 7

Which statement about hallucinations and RAG is correct?

A. RAG guarantees perfectly accurate answers.
B. RAG increases hallucinations intentionally.
C. RAG reduces hallucinations but human oversight remains necessary.
D. RAG removes the need for grounding.

Answer: C

Explanation: Although RAG improves reliability, incorrect outputs are still possible.


Question 8

Which scenario best demonstrates RAG?

A. Training a model from scratch using billions of records
B. Retraining a model every day to reflect policy changes
C. Increasing token limits to improve accuracy
D. Retrieving current warranty documents before answering customer questions

Answer: D

Explanation: RAG retrieves relevant information and uses it when generating responses.


Question 9

What is the relationship between grounding and RAG?

A. Grounding replaces RAG entirely.
B. RAG is one approach used to implement grounding.
C. RAG and grounding are unrelated concepts.
D. Grounding permanently changes model weights.

Answer: B

Explanation: Grounding is the broader concept, while RAG is a common grounding technique.


Question 10

Which statement best differentiates RAG from fine-tuning?

A. RAG changes model behavior through parameter updates.
B. Fine-tuning retrieves external information during inference.
C. RAG adds knowledge dynamically without changing model parameters.
D. Fine-tuning is always less expensive than RAG.

Answer: C

Explanation: RAG supplies external knowledge during response generation, while fine-tuning modifies the model itself.


Go to the AB-731 Exam Prep Hub main page

Identify business requirements for grounding solutions (AB-731 Exam Prep)

This post is a part of the AB-731: AI Transformation Leader Exam Prep Hub.
This topic falls under these sections:
Identify the business value of generative AI solutions (35–40%)
   --> Identify benefits and capabilities of generative AI solutions
      --> Identify business requirements for grounding solutions


Note that there are 10 practice questions (with answers) at the end of each section to help you solidify your knowledge of the material. Also, there are 4 practice tests with 30 questions each available from the hub's main page below the exam topics section.

Introduction

As organizations adopt generative AI, one of the most important challenges is ensuring that AI responses are accurate, relevant, and based on trusted information. Although large language models possess extensive general knowledge, they do not automatically know an organization’s internal policies, procedures, documents, or current business data.

This is where grounding becomes important.

Grounding is the process of providing a generative AI solution with additional context and trusted data sources so that responses are based on current, relevant, and organization-specific information.

For the AB-731: AI Transformation Leader exam, it is important to understand:

  • What grounding is
  • Why organizations use grounding
  • Business requirements for grounding solutions
  • Types of data used for grounding
  • Security and governance considerations
  • How grounding improves reliability and business value

What Is Grounding?

Grounding refers to supplying external information to an AI model during inference so the model can generate responses based on trusted data.

Instead of relying only on the model’s pretrained knowledge, grounded AI solutions use:

  • Internal documents
  • Knowledge bases
  • Databases
  • SharePoint sites
  • Policies and procedures
  • Product catalogs
  • Customer information
  • Enterprise systems

Grounding helps AI provide answers that are:

  • More accurate
  • More current
  • More relevant
  • Better aligned with organizational knowledge

Why Grounding Is Necessary

Pretrained models have limitations:

Knowledge Cutoff Dates

Models may not know recent events or newly created information.

No Native Awareness of Company Data

Models do not automatically know:

  • Internal policies
  • Employee handbooks
  • Product inventories
  • Pricing information
  • Customer records

Potential Hallucinations

Without supporting context, AI may fabricate information.

Grounding helps mitigate these issues by connecting AI systems to trusted information sources.


Business Goals Supported by Grounding

Grounded AI solutions help organizations:

  • Improve response quality
  • Increase user trust
  • Reduce hallucinations
  • Deliver current information
  • Enhance employee productivity
  • Improve customer experiences
  • Protect organizational knowledge

Grounding supports the overall goal of generating useful and reliable business outputs.


Common Business Requirements for Grounding Solutions

Organizations must identify their requirements before implementing grounding.

Requirement 1: Access to Trusted Data

Grounding solutions should use authoritative sources.

Examples include:

  • Corporate knowledge bases
  • Official documentation
  • Product catalogs
  • Internal procedures
  • Approved policies

Using trusted information improves response reliability.


Requirement 2: Current and Up-to-Date Information

Many organizations require AI responses to reflect recent changes.

Examples include:

  • Updated policies
  • Pricing changes
  • Product releases
  • Regulatory requirements

Grounding ensures responses are based on current information rather than only pretrained knowledge.


Requirement 3: Accuracy and Reliability

Business leaders need AI outputs that employees and customers can trust.

Grounded systems improve:

  • Relevance
  • Consistency
  • Accuracy

Although grounding reduces hallucinations, it does not eliminate them completely. Human review may still be required.


Requirement 4: Security and Access Controls

Not all information should be available to every user.

Grounding solutions should respect existing permissions.

Examples:

  • HR documents available only to HR staff.
  • Financial information limited to finance teams.
  • Customer data restricted to authorized personnel.

Security requirements are critical in enterprise AI solutions.


Requirement 5: Data Governance

Organizations must ensure that:

  • Approved data sources are used.
  • Information is managed appropriately.
  • Sensitive data is protected.
  • Regulatory requirements are followed.

Grounding solutions should align with existing governance frameworks.


Requirement 6: Scalability

As adoption grows, grounding solutions should support:

  • More users
  • Larger document collections
  • Additional business units
  • Increasing workloads

Scalability is essential for enterprise-wide AI deployments.


Requirement 7: Search and Retrieval Capabilities

Grounding systems must efficiently locate relevant information.

Good retrieval capabilities help ensure:

  • Faster responses
  • Better accuracy
  • Improved user experiences

Many modern AI systems use retrieval mechanisms to identify relevant documents before generating responses.


Requirement 8: Source Transparency

Users often need to know where information originated.

Grounded solutions may provide:

  • Citations
  • Document references
  • Links to source materials

Transparency increases confidence and trust.


Requirement 9: Performance Requirements

Organizations expect AI systems to deliver:

  • Fast responses
  • High availability
  • Reliable operation

Grounding architectures should not significantly slow down user experiences.


Requirement 10: Ease of Maintenance

Business information changes constantly.

Grounding solutions should allow organizations to:

  • Add new documents
  • Remove outdated information
  • Update knowledge sources
  • Manage content efficiently

Maintaining accurate information is critical for long-term success.


Types of Data Commonly Used for Grounding

Organizations may ground AI solutions using:

Internal Documents

  • Policies
  • Procedures
  • Manuals

Collaboration Platforms

  • SharePoint libraries
  • Teams documents

Databases

  • Product information
  • Inventory records

Knowledge Bases

  • FAQ repositories
  • Support articles

Customer Information Systems

  • CRM data
  • Service records

External Trusted Sources

  • Regulations
  • Industry standards
  • Public documentation

Retrieval-Augmented Generation (RAG)

One common grounding approach is Retrieval-Augmented Generation (RAG).

In a RAG solution:

  1. The user submits a question.
  2. The system retrieves relevant information from trusted sources.
  3. The retrieved information is provided to the AI model.
  4. The model generates a response using that information.

Benefits of RAG include:

  • More current information
  • Reduced hallucinations
  • Improved relevance
  • No need to retrain models frequently

Business leaders are not expected to understand implementation details deeply, but they should understand the purpose and benefits of retrieval-based grounding.


Example Business Scenarios

Human Resources

Employees ask:

What is the company’s remote work policy?

Grounding allows AI to answer using the latest HR documentation.


Customer Service

Customers ask:

What warranty applies to this product?

AI retrieves current warranty information from official sources.


Sales

Employees ask:

What are the latest pricing options?

Grounding ensures responses use current product pricing.


Healthcare

Clinicians request procedures or guidelines.

Grounding provides answers based on approved medical documentation.


Security Considerations

Grounding solutions should:

Respect Existing Permissions

Users should only access information they are authorized to view.

Protect Sensitive Information

Examples:

  • Financial records
  • Personal information
  • Intellectual property

Support Compliance

Organizations may need to satisfy:

  • Industry regulations
  • Internal policies
  • Privacy requirements

Benefits of Grounded AI Solutions

Grounded AI provides:

BenefitBusiness Impact
More accurate responsesIncreased trust
Current informationBetter decision-making
Reduced hallucinationsHigher reliability
Contextual answersImproved user experiences
Security integrationBetter governance
ScalabilityEnterprise adoption

Limitations of Grounding

Grounding improves AI performance, but it does not guarantee perfection.

Hallucinations Can Still Occur

AI may still generate incorrect information.

Poor Data Produces Poor Results

Outdated or inaccurate source data leads to poor outputs.

Governance Remains Necessary

Organizations still need:

  • Human oversight
  • Policies
  • Monitoring
  • Responsible AI practices

Performance Tradeoffs May Exist

Searching external data sources may increase response times.


Grounding and Microsoft AI Solutions

Microsoft AI solutions frequently use grounding capabilities.

Examples include:

  • Microsoft 365 Copilot using Microsoft Graph data.
  • Copilot Studio agents connected to enterprise systems.
  • Azure AI Foundry solutions using Retrieval-Augmented Generation.
  • AI applications that reference organizational knowledge repositories.

Grounding enables Microsoft AI solutions to deliver business-specific and context-aware responses.


Exam Tips

For the AB-731 exam, remember:

  • Grounding provides AI with trusted external information.
  • Grounding improves relevance, accuracy, and reliability.
  • AI models do not automatically know organizational data.
  • Security and access permissions remain important.
  • Current and authoritative data sources are essential.
  • Retrieval-Augmented Generation (RAG) is a common grounding technique.
  • Grounding reduces—but does not eliminate—hallucinations.
  • Data governance and human oversight remain necessary.
  • Successful grounding solutions must be scalable and maintainable.

Practice Exam Questions

Question 1

Why do organizations implement grounding in generative AI solutions?

A. To eliminate the need for AI models
B. To replace data governance processes
C. To increase hardware performance only
D. To provide AI with trusted and relevant information sources

Answer: D

Explanation: Grounding supplements a model’s pretrained knowledge with trusted external information, improving relevance and accuracy.


Question 2

Which business requirement is most important when protecting sensitive HR information?

A. Scalability
B. Faster token generation
C. Security and access controls
D. Model size

Answer: C

Explanation: Access controls ensure that confidential information is available only to authorized users.


Question 3

A company wants AI responses to reflect recently updated pricing information. Which requirement is most critical?

A. Current and up-to-date information
B. Increased randomness
C. Larger model parameters
D. Offline processing

Answer: A

Explanation: Grounding enables AI systems to reference current information rather than relying solely on pretrained knowledge.


Question 4

Which source is an example of trusted grounding data?

A. Random internet comments
B. Unverified social media posts
C. Anonymous forums
D. Official company policy documents

Answer: D

Explanation: Authoritative internal documents are reliable sources for grounding.


Question 5

What is a primary benefit of Retrieval-Augmented Generation (RAG)?

A. Eliminating the need for external data
B. Generating responses without user prompts
C. Using retrieved information to improve response relevance
D. Permanently retraining the model after each interaction

Answer: C

Explanation: RAG retrieves relevant information and provides it to the model to improve output quality.


Question 6

Which statement about grounding and hallucinations is correct?

A. Grounding guarantees completely error-free outputs.
B. Grounding reduces hallucinations but does not eliminate them.
C. Grounding removes the need for human review.
D. Grounding prevents bias entirely.

Answer: B

Explanation: Grounding improves reliability, but human oversight is still necessary.


Question 7

Why is source transparency valuable in grounded AI systems?

A. It increases model size.
B. It reduces storage costs.
C. It allows users to verify where information originated.
D. It eliminates access controls.

Answer: C

Explanation: Citations and references improve trust and allow users to validate responses.


Question 8

Which requirement ensures a grounding solution can support growth across departments and users?

A. Data compression
B. Scalability
C. Prompt randomness
D. Temperature settings

Answer: B

Explanation: Scalable systems can accommodate increasing workloads and adoption.


Question 9

What happens if inaccurate documents are used as grounding sources?

A. The AI automatically corrects them.
B. The AI ignores them completely.
C. Only model performance is affected.
D. Response quality may decrease because poor data leads to poor outputs.

Answer: D

Explanation: Grounding quality depends heavily on the quality of the underlying data.


Question 10

Which statement best describes Retrieval-Augmented Generation?

A. It permanently modifies the model’s parameters.
B. It removes the need for knowledge repositories.
C. It retrieves relevant information and supplies it to the model during response generation.
D. It replaces prompt engineering.

Answer: C

Explanation: RAG combines information retrieval with generative AI to produce more accurate and context-aware responses.


Go to the AB-731 Exam Prep Hub main page

Understand techniques of prompt engineering (AB-731 Exam Prep)

This post is a part of the AB-731: AI Transformation Leader Exam Prep Hub.
This topic falls under these sections:
Identify the business value of generative AI solutions (35–40%)
   --> Identify benefits and capabilities of generative AI solutions
      --> Understand techniques of prompt engineering


Note that there are 10 practice questions (with answers) at the end of each section to help you solidify your knowledge of the material. Also, there are 4 practice tests with 30 questions each available from the hub's main page below the exam topics section.

Introduction

Prompt engineering is the process of designing and refining instructions provided to generative AI systems in order to achieve more useful, accurate, and consistent results. While generative AI models are powerful, the quality of their outputs depends heavily on the quality of the prompts they receive.

For AI Transformation Leaders, understanding prompt engineering techniques is important because these techniques directly influence:

  • Productivity
  • User adoption
  • Output quality
  • Cost efficiency
  • Business value

Prompt engineering does not require deep programming knowledge. Instead, it involves learning how to communicate effectively with AI systems to guide their behavior.

For the AB-731 certification exam, you should understand the common prompt engineering techniques and how they improve AI outcomes.


What Is Prompt Engineering?

Prompt engineering is the practice of creating structured instructions that help AI systems generate desired responses.

Good prompts help AI:

  • Understand user intent.
  • Produce more accurate outputs.
  • Reduce ambiguity.
  • Improve consistency.
  • Deliver information in useful formats.

Poor prompts often result in:

  • Generic responses
  • Missing information
  • Multiple revisions
  • Lower productivity

Characteristics of Effective Prompts

Effective prompts are generally:

Clear

The objective is easy to understand.

Specific

Requirements are explicitly stated.

Contextual

Relevant background information is provided.

Structured

The desired format and expectations are defined.

Audience-Focused

The response is tailored to the intended reader.


Technique 1: Provide Clear Instructions

One of the most important prompt engineering techniques is giving explicit instructions.

Weak Prompt

Write about AI.

Improved Prompt

Write a one-page summary describing how generative AI improves customer service productivity.

The improved prompt provides:

  • A clear topic
  • A purpose
  • Scope

Benefits

  • Better accuracy
  • Less ambiguity
  • Higher-quality responses

Technique 2: Add Context

Context helps the AI understand the situation.

Example

Without Context:

Recommend ways to improve productivity.

With Context:

Recommend ways to improve productivity for a retail company with 3,000 employees operating across multiple countries.

The additional context allows the model to generate more relevant recommendations.

Benefits

  • Greater relevance
  • More realistic responses
  • Better alignment with business needs

Technique 3: Specify the Audience

Different audiences require different communication styles.

Example

Prompt:

Explain machine learning to a Chief Financial Officer with no technical background.

The AI adjusts:

  • Vocabulary
  • Level of detail
  • Tone

Benefits

  • Improved communication
  • Increased usability
  • Better stakeholder engagement

Technique 4: Define the Output Format

Specifying how information should be presented often improves readability.

Possible formats include:

  • Tables
  • Bullet lists
  • Executive summaries
  • Presentation outlines
  • Step-by-step instructions

Example

Provide the response as a three-column table showing risks, benefits, and recommendations.

Benefits

  • Standardized outputs
  • Easier consumption
  • Better consistency

Technique 5: Use Role Prompting

Role prompting tells the AI to respond from a particular perspective.

Example

Act as an HR consultant and recommend onboarding improvements.

Or:

Act as a cybersecurity advisor and explain the risks of prompt injection attacks.

Role prompting helps guide:

  • Tone
  • Expertise level
  • Perspective

Benefits

  • More targeted responses
  • Improved relevance

Technique 6: Break Complex Tasks into Smaller Steps

Large requests may overwhelm the model or produce inconsistent results.

Instead, divide tasks into stages.

Example

Step 1:

Summarize the report.

Step 2:

Identify the top risks.

Step 3:

Recommend mitigation strategies.

Benefits

  • Improved accuracy
  • Better organization
  • Easier review

This technique is sometimes called task decomposition.


Technique 7: Use Examples (Few-Shot Prompting)

Providing examples helps guide model behavior.

Example

Prompt:

Create product descriptions similar to these examples:

Example 1:
Professional and concise.

Example 2:
Customer-focused and friendly.

The model learns from the examples and generates similar outputs.

Benefits

  • Greater consistency
  • Improved style matching
  • Better output quality

Technique 8: Zero-Shot Prompting

Zero-shot prompting means asking the model to perform a task without providing examples.

Example

Summarize this article in three bullet points.

The model relies entirely on its pretrained knowledge.

Benefits

  • Fast and simple
  • Minimal preparation required

Limitation

Responses may be less consistent than when examples are provided.


Technique 9: Few-Shot Prompting

Few-shot prompting provides several examples before requesting a response.

Example

Example:

Positive feedback → Sentiment = Positive

Example:

Late delivery complaint → Sentiment = Negative

Now classify:

“The product quality was excellent.”

Benefits

  • Better consistency
  • Improved task understanding
  • More predictable outputs

Technique 10: Chain-of-Thought Prompting

Chain-of-thought prompting encourages the model to reason through a problem step by step.

Example

Explain your reasoning step by step before providing your recommendation.

This technique is particularly useful for:

  • Analysis
  • Planning
  • Problem-solving

Benefits

  • Improved transparency
  • Better reasoning
  • More complete responses

Business leaders should understand the concept, even though some AI systems perform internal reasoning automatically.


Technique 11: Request Constraints

Constraints help limit outputs.

Examples include:

  • Word limits
  • Tone requirements
  • Reading level
  • Number of recommendations

Example

Provide three recommendations in fewer than 150 words.

Benefits

  • More focused responses
  • Reduced unnecessary information

Technique 12: Iterative Prompting

Prompt engineering is often an iterative process.

Users may refine prompts by:

  • Adding context
  • Clarifying objectives
  • Changing formats
  • Requesting additional details

Example

First Prompt:

Summarize the report.

Follow-Up Prompt:

Focus specifically on financial risks and provide recommendations.

Benefits

  • Progressive improvement
  • Better final outputs

Prompt Templates

Organizations often create reusable prompt templates.

Examples include:

Customer Service Template

  • Customer issue
  • Desired tone
  • Required response format

Marketing Template

  • Target audience
  • Product details
  • Call to action

Executive Summary Template

  • Key findings
  • Risks
  • Recommendations

Benefits

  • Standardization
  • Improved quality
  • Faster adoption

Prompt Engineering and Cost Optimization

Good prompts can reduce:

  • Repeated interactions
  • Unnecessary token usage
  • Excessive revisions

This improves:

  • Cost efficiency
  • ROI
  • User satisfaction

Limitations of Prompt Engineering

Prompt engineering cannot:

Guarantee Accuracy

AI can still produce hallucinations.

Eliminate Bias

Bias may still appear in outputs.

Replace Human Oversight

Important decisions still require human review.

Solve Every Business Problem

Some problems are better addressed using:

  • Predictive AI
  • Rule-based systems
  • Traditional software

Business Impact of Prompt Engineering Techniques

TechniquePrimary Benefit
Clear instructionsBetter accuracy
ContextImproved relevance
Audience specificationBetter communication
Format requirementsConsistency
Role promptingSpecialized responses
Few-shot promptingImproved consistency
Task decompositionBetter quality
ConstraintsMore focused outputs
IterationContinuous improvement

Exam Tips

For the AB-731 exam, remember:

  • Prompt engineering improves output quality and business value.
  • Clear instructions and context are among the most important techniques.
  • Role prompting helps shape perspective and expertise.
  • Few-shot prompting uses examples to guide responses.
  • Zero-shot prompting provides no examples.
  • Task decomposition breaks large problems into smaller tasks.
  • Constraints help control response length and format.
  • Prompt engineering improves productivity but does not eliminate hallucinations or bias.
  • Human oversight remains essential.

Practice Exam Questions

Question 1

A user provides examples of desired responses before asking the AI to generate new content. Which prompt engineering technique is being used?

A. Few-shot prompting
B. Zero-shot prompting
C. Model fine-tuning
D. Prompt injection

Answer: A

Explanation: Few-shot prompting provides examples that help guide the model toward the desired output style or behavior.


Question 2

Which prompt is likely to produce the most useful result?

A. “Write something.”
B. “Explain technology.”
C. “Create a one-page executive summary describing how generative AI improves customer service efficiency.”
D. “Discuss topics.”

Answer: C

Explanation: Specific prompts with clear objectives and scope generally produce better outputs.


Question 3

What is the primary purpose of adding context to a prompt?

A. Reduce model size
B. Improve relevance and alignment with the user’s situation
C. Eliminate hallucinations completely
D. Replace human review

Answer: B

Explanation: Context helps the AI generate responses that better fit the user’s environment and requirements.


Question 4

Which technique asks AI to respond from a particular perspective or profession?

A. Iterative prompting
B. Role prompting
C. Constraint prompting
D. Task decomposition

Answer: B

Explanation: Role prompting instructs the AI to adopt a particular viewpoint, such as a consultant, analyst, or advisor.


Question 5

Breaking a complex request into multiple smaller prompts is known as:

A. Data normalization
B. Role prompting
C. Task decomposition
D. Model distillation

Answer: C

Explanation: Task decomposition improves response quality by dividing larger tasks into manageable stages.


Question 6

Which prompt engineering technique uses no examples?

A. Few-shot prompting
B. Zero-shot prompting
C. Chain-of-thought prompting
D. Role prompting

Answer: B

Explanation: Zero-shot prompting asks the model to perform a task without providing examples.


Question 7

Why might organizations create prompt templates?

A. To increase hardware requirements
B. To eliminate governance controls
C. To standardize outputs and improve consistency
D. To remove the need for employee training

Answer: C

Explanation: Prompt templates help ensure repeatable and consistent results across users and departments.


Question 8

What is a major limitation of prompt engineering?

A. It requires building AI models from scratch.
B. It cannot guarantee completely accurate outputs.
C. It only works for software developers.
D. It prevents AI from generating creative content.

Answer: B

Explanation: Even with excellent prompts, AI systems may still produce inaccurate or biased responses.


Question 9

Which prompt engineering technique encourages step-by-step reasoning?

A. Role prompting
B. Constraint prompting
C. Zero-shot prompting
D. Chain-of-thought prompting

Answer: D

Explanation: Chain-of-thought prompting encourages the AI to explain intermediate reasoning steps before arriving at a conclusion.


Question 10

A user refines prompts multiple times to improve the quality of AI outputs. Which technique is being used?

A. Iterative prompting
B. Model compression
C. Fine-tuning
D. Transfer learning

Answer: A

Explanation: Iterative prompting involves gradually improving prompts based on previous results to obtain better outcomes.


Go to the AB-731 Exam Prep Hub main page

Describe the impact of prompt engineering (AB-731 Exam Prep)

This post is a part of the AB-731: AI Transformation Leader Exam Prep Hub.
This topic falls under these sections:
Identify the business value of generative AI solutions (35–40%)
   --> Identify benefits and capabilities of generative AI solutions
      --> Describe the impact of prompt engineering


Note that there are 10 practice questions (with answers) at the end of each section to help you solidify your knowledge of the material. Also, there are 4 practice tests with 30 questions each available from the hub's main page below the exam topics section.

Introduction

Prompt engineering is one of the most important concepts in generative AI and a key topic for the AB-731: AI Transformation Leader certification exam. While generative AI models are powerful, the quality of their outputs depends heavily on the quality of the instructions they receive.

Prompt engineering is the practice of designing and refining prompts to guide AI systems toward producing more accurate, relevant, useful, and reliable outputs. Effective prompt engineering can significantly improve the value organizations receive from AI solutions, while poor prompts can result in incomplete, inaccurate, or low-quality responses.

For business leaders, understanding prompt engineering is important because it directly affects:

  • Productivity
  • Accuracy
  • User satisfaction
  • AI adoption
  • Cost efficiency
  • Business outcomes

Organizations that develop prompt engineering skills often achieve greater value from their AI investments than those that simply deploy AI without guidance or training.


What Is a Prompt?

A prompt is the input provided to a generative AI system.

Prompts can include:

  • Questions
  • Instructions
  • Requests
  • Contextual information
  • Examples
  • Desired output formats

Examples:

Simple Prompt

Summarize this document.

Detailed Prompt

Summarize this document in 200 words, focusing on financial risks, opportunities, and recommended actions for executive leadership.

The second prompt typically produces a more useful response because it provides clearer guidance.


What Is Prompt Engineering?

Prompt engineering is the process of crafting prompts to improve AI-generated results.

Rather than accepting the first response, users intentionally design prompts to:

  • Improve accuracy
  • Increase relevance
  • Reduce ambiguity
  • Generate specific outputs
  • Improve consistency

Prompt engineering helps bridge the gap between user intent and model output.


Why Prompt Engineering Matters

Generative AI models respond based on the information they receive.

If instructions are vague, incomplete, or ambiguous, the model may generate less useful responses.

Example

Prompt:

Write a report.

The AI has very little guidance.

Improved Prompt:

Write a one-page executive summary about the benefits of implementing AI in customer service, including productivity gains, customer satisfaction improvements, and potential risks.

The second prompt is much more likely to generate a useful business document.


The Impact of Prompt Engineering on Output Quality

One of the most significant impacts of prompt engineering is improved output quality.

Well-designed prompts help AI generate:

  • More accurate responses
  • More relevant information
  • Better-structured content
  • More consistent results

Business Impact

Employees spend less time editing and correcting AI-generated content.

This increases productivity and improves user confidence.


Improving Accuracy

Prompt engineering can improve factual accuracy by providing:

  • Clear objectives
  • Relevant context
  • Supporting information
  • Specific instructions

Example

Instead of asking:

Explain cybersecurity.

A better prompt might be:

Explain cybersecurity risks for financial institutions and include examples of ransomware, phishing, and regulatory compliance concerns.

The added context guides the AI toward a more relevant response.


Reducing Ambiguity

Ambiguous prompts often produce ambiguous results.

Example

Prompt:

Create a presentation.

Questions remain:

  • For whom?
  • About what?
  • How long?
  • What style?

Improved Prompt:

Create a 10-slide executive presentation explaining the business benefits of generative AI adoption for senior leadership.

The clearer prompt reduces uncertainty and improves output quality.


Increasing Relevance

Prompt engineering helps tailor outputs to specific audiences.

Example

A technical explanation may be inappropriate for executives.

Prompt:

Explain machine learning to a Chief Financial Officer with no technical background.

The AI can adjust the response based on the intended audience.


Improving Consistency

Organizations often need standardized outputs.

Examples include:

  • Customer communications
  • Internal reports
  • Knowledge articles
  • Marketing content

Prompt templates help generate consistent responses across users and departments.

Business Benefits

  • Standardization
  • Improved quality control
  • Stronger branding
  • Better customer experiences

Supporting Productivity Gains

Prompt engineering can significantly increase employee productivity.

Without effective prompts:

  • Users may repeat requests multiple times.
  • Outputs may require extensive editing.
  • Employees may become frustrated.

With effective prompts:

  • Responses are more useful immediately.
  • Fewer revisions are needed.
  • Tasks are completed faster.

Example

A marketing team using well-designed prompts may generate campaign drafts in minutes rather than hours.


Improving Cost Efficiency

Prompt engineering can also reduce costs.

Many AI services charge based on token consumption.

Poor prompts often result in:

  • Multiple follow-up questions
  • Repeated requests
  • Longer conversations

Effective prompts can:

  • Reduce iterations
  • Improve first-response quality
  • Lower overall token usage

This can improve return on investment (ROI).


Supporting Better Decision-Making

Business leaders often use AI to:

  • Summarize reports
  • Analyze information
  • Generate recommendations

Prompt engineering improves the usefulness of these outputs by providing:

  • Clear objectives
  • Relevant business context
  • Desired formats

The result is more actionable information.


Common Prompt Engineering Techniques

Provide Clear Instructions

Be explicit about what you want.

Example

Instead of:

Analyze this.

Use:

Analyze this quarterly report and identify the top three risks and top three growth opportunities.


Specify the Audience

Tell the model who the content is for.

Examples:

  • Executives
  • Customers
  • Developers
  • Sales teams
  • Students

Example

Explain cloud computing to non-technical business leaders.


Define the Desired Format

Specify how the response should be structured.

Examples:

  • Table
  • Summary
  • Bullet list
  • Executive report
  • Presentation outline

Example

Provide the response as a three-column table showing benefits, risks, and recommendations.


Provide Context

Additional context often improves results.

Example

Our company is a retail organization with 5,000 employees operating in North America.

The AI can generate more relevant recommendations.


Use Examples

Providing examples can guide model behavior.

Example

Write product descriptions similar to the following examples…

This technique often improves consistency.


Break Complex Tasks into Steps

Large tasks may be improved by dividing them into smaller requests.

Example

Step 1:

Summarize the document.

Step 2:

Identify risks.

Step 3:

Generate recommendations.

This often improves output quality.


Prompt Engineering and Responsible AI

Prompt engineering also supports responsible AI practices.

Good prompts can help:

  • Reduce misunderstandings
  • Improve transparency
  • Increase reliability
  • Reduce unintended outputs

However, prompt engineering alone cannot eliminate:

  • Hallucinations
  • Bias
  • Fabrications

Human review remains necessary.


Limitations of Prompt Engineering

Although prompt engineering is valuable, it has limitations.

It Cannot Guarantee Accuracy

AI can still generate incorrect information.

It Cannot Remove Bias Completely

Bias may still exist within model outputs.

It Does Not Replace Governance

Organizations still need:

  • Policies
  • Security controls
  • Human oversight
  • Responsible AI practices

It Cannot Solve Every Business Problem

Some tasks may require:

  • Traditional software
  • Predictive analytics
  • Rule-based automation

instead of generative AI.


Prompt Engineering in Microsoft AI Solutions

Prompt engineering plays an important role across Microsoft’s AI ecosystem, including:

  • Microsoft 365 Copilot
  • Microsoft Copilot Studio
  • Azure AI Foundry
  • AI-powered business applications

Organizations that teach employees how to write effective prompts often see:

  • Greater adoption
  • Better productivity gains
  • Improved business outcomes

Prompt literacy is becoming an important workplace skill.


Business Value of Prompt Engineering

From a leadership perspective, prompt engineering contributes to:

Business ObjectiveImpact of Prompt Engineering
ProductivityFaster completion of tasks
QualityMore accurate outputs
ConsistencyStandardized responses
Cost ManagementFewer iterations and token usage
AdoptionBetter user experiences
Decision-MakingMore actionable insights

Prompt engineering helps organizations maximize the value of their generative AI investments.


Exam Tips

For the AB-731 exam, remember:

  • A prompt is the instruction or input provided to an AI model.
  • Prompt engineering is the practice of designing prompts to improve outputs.
  • Better prompts improve accuracy, relevance, consistency, and productivity.
  • Prompt engineering can reduce costs by minimizing unnecessary iterations.
  • Providing context, audience information, formatting instructions, and examples often improves results.
  • Prompt engineering supports responsible AI but does not eliminate hallucinations or bias.
  • Human oversight remains necessary for important decisions.
  • Effective prompt engineering is a key factor in successful AI adoption.

Practice Exam Questions

Question 1

A company finds that employees frequently need to revise AI-generated content because responses are too general. Which approach would most likely improve results?

A. Increase hardware capacity
B. Disable AI customization
C. Reduce employee training
D. Improve prompt engineering practices

Answer: D

Explanation: Better prompts provide clearer instructions and context, leading to more relevant and useful outputs.


Question 2

What is prompt engineering?

A. The process of building AI hardware
B. The process of training foundation models from scratch
C. The practice of designing prompts to improve AI outputs
D. The process of securing cloud infrastructure

Answer: C

Explanation: Prompt engineering focuses on crafting effective instructions to guide AI models toward desired responses.


Question 3

Which prompt is likely to produce the most useful business response?

A. “Write something about AI.”
B. “Explain technology.”
C. “Create content.”
D. “Write a one-page executive summary on how generative AI can improve customer service productivity and customer satisfaction.”

Answer: D

Explanation: Detailed prompts with clear objectives and context typically generate more useful outputs.


Question 4

How can prompt engineering contribute to cost efficiency?

A. By reducing unnecessary prompt iterations and token consumption
B. By eliminating cloud infrastructure costs
C. By removing governance requirements
D. By preventing all hallucinations

Answer: A

Explanation: Effective prompts often produce better results on the first attempt, reducing repeated interactions and associated costs.


Question 5

Which prompt engineering technique helps tailor responses for executives versus technical staff?

A. Increasing model size
B. Specifying the intended audience
C. Expanding the context window
D. Fine-tuning every model

Answer: B

Explanation: Identifying the target audience helps the model adjust language, detail, and style appropriately.


Question 6

A business wants AI-generated reports to follow a consistent structure across departments. Which prompt engineering practice would help most?

A. Using prompt templates with defined formats
B. Removing all instructions from prompts
C. Increasing output randomness
D. Limiting user access

Answer: A

Explanation: Standardized prompt templates help generate more consistent outputs.


Question 7

What is one limitation of prompt engineering?

A. It prevents AI from generating text.
B. It requires organizations to build custom models.
C. It cannot completely eliminate hallucinations or bias.
D. It only works for technical users.

Answer: C

Explanation: While prompt engineering improves results, it does not guarantee perfect accuracy or fairness.


Question 8

Why does providing business context often improve AI responses?

A. It allows the AI to generate more relevant outputs for the specific situation.
B. It increases hardware performance.
C. It removes all token costs.
D. It guarantees identical responses.

Answer: A

Explanation: Context helps the model better understand the user’s needs and generate more targeted responses.


Question 9

Which business outcome is most directly associated with effective prompt engineering?

A. Reduced data storage requirements
B. Improved output quality and employee productivity
C. Elimination of security risks
D. Automatic compliance certification

Answer: B

Explanation: Better prompts typically result in higher-quality outputs and less time spent revising content.


Question 10

A user asks AI to analyze a complex business proposal. Which prompt engineering strategy is likely to improve the quality of the analysis?

A. Remove all context from the prompt.
B. Request the entire analysis in a single vague sentence.
C. Increase randomness in responses.
D. Break the task into smaller steps such as summarizing, identifying risks, and generating recommendations.

Answer: D

Explanation: Decomposing complex tasks into smaller stages often improves accuracy, clarity, and usefulness of AI-generated outputs.


Go to the AB-731 Exam Prep Hub main page

Identify when Generative AI solutions can provide business value, including scalability and automation (AB-731 Exam Prep)

This post is a part of the AB-731: AI Transformation Leader Exam Prep Hub.
This topic falls under these sections:
Identify the business value of generative AI solutions (35–40%)
   --> Identify the foundational concepts of generative AI
      --> Identify when Generative AI solutions can provide business value, including scalability and automation


Note that there are 10 practice questions (with answers) at the end of each section to help you solidify your knowledge of the material. Also, there are 4 practice tests with 30 questions each available from the hub's main page below the exam topics section.

Introduction

Generative AI has become one of the most transformative technologies available to modern organizations. However, successful AI transformation is not about using AI everywhere. Instead, business leaders must understand where generative AI creates meaningful value and recognize situations where it may not be the best solution.

For the AB-731: AI Transformation Leader exam, it is important to understand how generative AI supports business objectives through:

  • Productivity improvements
  • Process automation
  • Scalability
  • Better customer experiences
  • Faster innovation
  • Knowledge management
  • Employee empowerment

Organizations that align AI capabilities with business goals are more likely to achieve measurable returns on investment and long-term success.


Understanding Business Value

Business value refers to the measurable benefits an organization receives from an investment.

Examples include:

  • Increased revenue
  • Reduced costs
  • Improved efficiency
  • Faster decision-making
  • Higher employee productivity
  • Better customer satisfaction
  • Increased innovation

Generative AI provides value when it helps organizations achieve one or more of these outcomes.


Start with the Business Problem

Successful AI projects begin with a business challenge rather than with technology.

Organizations should ask:

  • What problem are we solving?
  • What process needs improvement?
  • What outcomes are desired?
  • How will success be measured?

AI should support business goals rather than exist as a technology experiment.


Areas Where Generative AI Delivers Business Value

Generative AI is especially valuable in situations involving:

  • Language-based work
  • Repetitive knowledge tasks
  • Content creation
  • Information retrieval
  • Communication
  • Summarization
  • Customer interactions

These activities are common across many industries and departments.


Improving Employee Productivity

One of the most significant benefits of generative AI is productivity enhancement.

Employees often spend time on repetitive tasks such as:

  • Writing emails
  • Preparing reports
  • Summarizing meetings
  • Searching for information
  • Creating presentations

Generative AI can reduce the time required for these activities.

Example

Instead of spending an hour drafting a proposal, an employee can use AI to create a first draft in minutes.

Business Value

  • Time savings
  • Increased efficiency
  • Reduced administrative burden
  • More focus on strategic work

Automating Repetitive Tasks

Automation is one of the most important sources of AI value.

Generative AI can automate:

  • Content creation
  • Customer responses
  • Document summaries
  • Frequently asked questions
  • Routine communications

Automation allows employees to focus on higher-value activities.


Example: Customer Service

Without AI:

Support staff manually answer repetitive questions.

With AI:

A conversational assistant handles common requests automatically and escalates complex issues to human agents.

Benefits

  • Faster response times
  • Reduced workload
  • Lower operating costs
  • Improved customer satisfaction

Supporting Scalability

Scalability refers to an organization’s ability to increase operations without proportionally increasing resources.

Generative AI enables scalability because AI systems can serve many users simultaneously.


Traditional Scaling

As demand grows:

  • More employees are hired.
  • Costs increase proportionally.

AI-Enabled Scaling

As demand grows:

  • AI systems handle larger workloads.
  • Human resources can focus on exceptions and specialized tasks.

Example

A company experiencing rapid growth receives twice as many customer inquiries.

Instead of doubling support staff, AI assistants manage many routine requests.

Business Value

  • Controlled costs
  • Faster growth
  • Improved service levels

Accelerating Content Creation

Many organizations create large amounts of content.

Examples include:

  • Marketing campaigns
  • Product descriptions
  • Reports
  • Internal communications
  • Training materials

Generative AI helps create content more quickly.

Benefits

  • Faster time-to-market
  • Increased output
  • Greater consistency

Enhancing Customer Experiences

Generative AI can improve customer interactions by providing:

  • Personalized responses
  • 24/7 availability
  • Faster support
  • Consistent communication

Example

An AI assistant answers customer questions immediately rather than requiring customers to wait for business hours.

Business Value

  • Improved satisfaction
  • Increased loyalty
  • Better customer retention

Improving Knowledge Management

Many organizations struggle with information scattered across multiple systems.

Employees often spend significant time searching for:

  • Policies
  • Procedures
  • Documentation
  • Historical information

Generative AI can:

  • Retrieve information
  • Summarize documents
  • Answer questions
  • Improve access to organizational knowledge

Business Value

  • Faster information retrieval
  • Reduced duplication of effort
  • Better employee experiences

Accelerating Innovation

Generative AI can help organizations innovate faster.

Examples include:

  • Brainstorming ideas
  • Generating prototypes
  • Exploring alternatives
  • Supporting research

Business Value

  • Faster product development
  • Increased competitiveness
  • More creative problem-solving

Supporting Software Development

AI-assisted coding tools can:

  • Generate code
  • Explain code
  • Create documentation
  • Suggest improvements

Business Value

  • Faster development cycles
  • Improved developer productivity
  • Reduced time spent on repetitive tasks

Improving Decision Support

Generative AI can help leaders:

  • Summarize reports
  • Identify trends
  • Explain data
  • Produce insights

Although final decisions remain the responsibility of humans, AI can reduce the time required to analyze information.


Industries That Can Benefit from Generative AI

Generative AI provides value across many industries.

Healthcare

  • Documentation assistance
  • Knowledge retrieval

Financial Services

  • Customer communications
  • Report generation

Retail

  • Personalized marketing
  • Customer support

Manufacturing

  • Documentation creation
  • Knowledge sharing

Education

  • Content generation
  • Learning assistance

Government

  • Citizen services
  • Information access

Characteristics of Good Generative AI Use Cases

Strong use cases typically involve:

High Volume

Large numbers of repetitive tasks.

Language-Based Work

Activities involving text and communication.

Knowledge Work

Tasks requiring information retrieval and synthesis.

Human Review

Outputs can be validated by people.

Measurable Outcomes

Benefits can be tracked and quantified.


When Generative AI May Not Be Appropriate

Not every problem should be solved with generative AI.

Generative AI may be unsuitable when:

Deterministic Accuracy Is Required

Examples:

  • Tax calculations
  • Financial accounting formulas

Traditional Predictive AI Is Better

Examples:

  • Fraud detection
  • Demand forecasting
  • Risk scoring

Rule-Based Systems Are Sufficient

Examples:

  • Approval workflows
  • Fixed compliance checks

Regulatory Constraints Are High

Human oversight may be mandatory.


Scalability Benefits in More Detail

Scalability is especially important for growing organizations.

Generative AI allows organizations to:

Serve More Customers

Without proportional increases in staffing.

Expand Globally

AI systems can provide support across multiple regions and time zones.

Operate Continuously

AI systems are available around the clock.

Standardize Experiences

Customers receive consistent interactions.

Support Workforce Growth

Employees gain access to AI-powered assistance regardless of organization size.


Measuring Business Value

Organizations should define metrics before implementation.

Examples include:

Productivity Metrics

  • Hours saved
  • Tasks completed faster

Customer Metrics

  • Satisfaction scores
  • Response times

Financial Metrics

  • Cost savings
  • Revenue growth

Adoption Metrics

  • Number of active users
  • Frequency of use

Operational Metrics

  • Reduced backlog
  • Increased throughput

Measuring outcomes ensures AI investments remain aligned with business goals.


Common Misconceptions

Misconception 1: AI Creates Value Automatically

Reality:

Business value comes from solving real problems, not simply deploying technology.


Misconception 2: AI Replaces Employees

Reality:

Generative AI often augments employees and enables them to focus on higher-value work.


Misconception 3: Bigger Deployments Always Produce More Value

Reality:

Targeted, high-value use cases frequently deliver better results than broad deployments without clear objectives.


Misconception 4: Automation Eliminates Human Oversight

Reality:

Humans remain responsible for reviewing important outputs and making final decisions.


Practical Framework for Identifying AI Value

Step 1: Define the Business Problem

Identify pain points and desired outcomes.

Step 2: Evaluate AI Suitability

Determine whether content generation, summarization, or conversational capabilities can help.

Step 3: Estimate Benefits

Calculate expected productivity and cost improvements.

Step 4: Pilot the Solution

Validate assumptions before large-scale deployment.

Step 5: Scale Successful Use Cases

Expand adoption after demonstrating measurable value.


Exam Tips

For the AB-731 exam, remember:

  • Generative AI creates value by improving productivity, automation, and scalability.
  • Good AI use cases involve repetitive knowledge work and language-based tasks.
  • Scalability enables organizations to grow without proportionally increasing resources.
  • Automation frees employees to focus on higher-value activities.
  • Human oversight remains important.
  • Business value should be measurable.
  • Not every business problem requires generative AI.
  • AI should align with organizational goals and business outcomes.

Practice Exam Questions

Question 1

A company wants employees to spend less time creating reports and responding to routine emails. Which benefit of generative AI is most directly involved?

A. Predictive analytics
B. Hardware optimization
C. Productivity improvement through automation
D. Network scalability

Answer: C

Explanation: Generative AI helps automate repetitive content-related tasks, allowing employees to work more efficiently.


Question 2

What does scalability mean in the context of generative AI?

A. Increasing workloads without proportionally increasing resources
B. Increasing model size indefinitely
C. Eliminating all operating expenses
D. Replacing every employee with AI

Answer: A

Explanation: Scalability allows organizations to handle growing workloads while limiting increases in staffing and costs.


Question 3

Which scenario is most appropriate for generative AI?

A. Calculating payroll taxes using fixed formulas
B. Forecasting next year’s sales demand
C. Performing deterministic accounting calculations
D. Creating personalized marketing content

Answer: D

Explanation: Content generation is a core strength of generative AI.


Question 4

Why do organizations automate repetitive tasks using generative AI?

A. To eliminate all human involvement
B. To free employees to focus on higher-value work
C. To guarantee perfect outputs
D. To remove governance requirements

Answer: B

Explanation: Automation helps employees spend more time on strategic and complex activities.


Question 5

Which characteristic is commonly found in strong generative AI use cases?

A. Large volumes of repetitive knowledge work
B. Strict deterministic calculations
C. Zero need for human review
D. Complete absence of language processing

Answer: A

Explanation: Repetitive, language-based work often provides the greatest opportunities for AI-driven efficiency.


Question 6

A rapidly growing company uses AI assistants to handle increasing customer inquiries without doubling support staff. Which business value is being demonstrated?

A. Hardware redundancy
B. Data normalization
C. Scalability
D. Model fine-tuning

Answer: C

Explanation: AI enables organizations to serve larger numbers of customers without proportional increases in resources.


Question 7

Which outcome is a direct customer benefit of generative AI?

A. Reduced database storage requirements
B. Faster and more personalized support experiences
C. Increased token consumption
D. Larger context windows

Answer: B

Explanation: AI can improve customer interactions through faster responses and personalized communications.


Question 8

Which type of work is most likely to benefit from generative AI?

A. Solving fixed mathematical equations using business rules
B. Performing regulatory audits without oversight
C. Replacing all management decisions
D. Summarizing large collections of documents

Answer: D

Explanation: Document summarization is a common and valuable generative AI capability.


Question 9

Which statement about AI and employees is most accurate?

A. AI always replaces employees.
B. AI eliminates the need for human review.
C. AI typically augments employees and increases productivity.
D. AI only benefits technical departments.

Answer: C

Explanation: Generative AI generally supports employees by automating repetitive tasks and improving efficiency.


Question 10

Why should organizations define success metrics before implementing generative AI?

A. To ensure business value can be measured and evaluated
B. To eliminate all implementation risks
C. To prevent user training requirements
D. To guarantee identical AI responses

Answer: A

Explanation: Measuring outcomes helps organizations determine whether AI initiatives are achieving desired business objectives and delivering value.


Go to the AB-731 Exam Prep Hub main page

Identify the challenges of using Generative AI solutions, including fabrications, reliability, and bias (AB-731 Exam Prep)

This post is a part of the AB-731: AI Transformation Leader Exam Prep Hub.
This topic falls under these sections:
Identify the business value of generative AI solutions (35–40%)
   --> Identify the foundational concepts of generative AI
      --> Identify the challenges of using Generative AI solutions, including fabrications, reliability, and bias


Note that there are 10 practice questions (with answers) at the end of each section to help you solidify your knowledge of the material. Also, there are 4 practice tests with 30 questions each available from the hub's main page below the exam topics section.

Introduction

Generative AI offers tremendous opportunities for organizations, including improved productivity, enhanced customer experiences, and accelerated innovation. However, AI Transformation Leaders must recognize that generative AI also introduces challenges and risks.

Unlike traditional software systems that follow predefined rules, generative AI produces probabilistic outputs. This means responses may vary and are not always completely accurate. Organizations must therefore implement governance, oversight, and responsible AI practices to ensure that AI systems are trustworthy and aligned with business objectives.

For the AB-731 certification exam, understanding the limitations and risks of generative AI is just as important as understanding its capabilities.


Why Generative AI Has Limitations

Generative AI models do not “understand” information in the same way humans do.

Instead, they:

  • Learn patterns from training data.
  • Predict likely outputs.
  • Generate responses based on probabilities.

Because they rely on patterns rather than true understanding, AI systems can sometimes:

  • Produce incorrect information.
  • Generate inconsistent responses.
  • Reflect biases found in training data.
  • Omit important context.
  • Produce misleading outputs.

These limitations highlight the need for human oversight and responsible AI practices.


Fabrications (Hallucinations)

One of the most widely discussed challenges of generative AI is the possibility of fabrications, often called hallucinations.

A fabrication occurs when an AI model generates information that:

  • Appears convincing,
  • Sounds credible,
  • But is incorrect, misleading, or entirely invented.

Examples

The AI may:

  • Cite nonexistent sources.
  • Invent statistics.
  • Generate incorrect facts.
  • Create fictional events.
  • Provide inaccurate references.

Example Scenario

An employee asks AI:

“Provide sources supporting these market statistics.”

The AI produces references that look legitimate, but some of the sources do not actually exist.


Why Fabrications Occur

Generative AI predicts likely sequences of text rather than verifying facts.

The model may prioritize producing a fluent response over ensuring factual accuracy.

Factors that can increase hallucinations include:

  • Ambiguous prompts
  • Missing context
  • Questions outside the model’s knowledge
  • Lack of supporting data
  • Complex or highly specialized topics

Reducing Fabrications

Organizations can reduce hallucinations by:

Providing Better Prompts

Specific prompts generally produce better results.

Using Retrieval-Augmented Generation (RAG)

RAG retrieves trusted organizational data before generating responses.

Incorporating Human Review

Employees should validate important outputs.

Using Reliable Data Sources

Current and authoritative information improves response quality.

Restricting High-Risk Use Cases

Critical decisions should not rely solely on AI-generated outputs.


Reliability Challenges

Reliability refers to the consistency and dependability of AI outputs.

Generative AI systems are probabilistic rather than deterministic.

This means identical prompts may produce different responses.


Examples of Reliability Issues

Inconsistent Answers

Two users asking the same question may receive slightly different responses.

Variable Quality

Some outputs may be excellent while others may require significant editing.

Missing Context

The model may misunderstand user intent.

Outdated Information

A model’s training data may not reflect recent events or changes.


Why Reliability Matters

Organizations need predictable systems for:

  • Compliance
  • Legal requirements
  • Financial reporting
  • Healthcare decisions
  • Customer communications

Low reliability can reduce:

  • User trust
  • Adoption
  • Business value

Improving Reliability

Organizations can improve reliability through:

Prompt Engineering

Well-structured prompts often produce better responses.

Human Oversight

Humans should review important outputs.

Testing and Evaluation

AI systems should be tested before deployment.

Grounding with Enterprise Data

Using RAG improves consistency by supplying current information.

Continuous Monitoring

Organizations should monitor performance after deployment.


Bias in Generative AI

Bias occurs when AI outputs unfairly favor or disadvantage certain individuals, groups, or perspectives.

Bias may appear in:

  • Recommendations
  • Language
  • Images
  • Hiring suggestions
  • Customer interactions

Sources of Bias

Training Data Bias

Models learn from large datasets that may contain historical biases.

Representation Bias

Certain populations may be underrepresented in training data.

Cultural Bias

Models may reflect assumptions from specific regions or cultures.

Human Bias

Bias can also be introduced during model development or evaluation.


Examples of Bias

An AI system might:

  • Use stereotypes.
  • Produce unbalanced recommendations.
  • Generate culturally insensitive content.
  • Favor certain demographic groups.

These outcomes may create:

  • Ethical concerns
  • Reputational risks
  • Legal risks
  • Compliance challenges

Fairness and Responsible AI

Organizations should strive to ensure that AI systems are fair and inclusive.

Responsible AI practices include:

  • Evaluating outputs for bias.
  • Testing with diverse scenarios.
  • Monitoring system behavior.
  • Incorporating human review.
  • Maintaining accountability.

Microsoft’s Responsible AI principles emphasize:

  • Fairness
  • Reliability and safety
  • Privacy and security
  • Inclusiveness
  • Transparency
  • Accountability

Privacy and Data Protection Risks

Generative AI systems may process sensitive information.

Examples include:

  • Customer data
  • Financial records
  • Intellectual property
  • Employee information

Improper use could result in:

  • Data leakage
  • Privacy violations
  • Regulatory noncompliance

Mitigation Strategies

Organizations should implement:

  • Access controls
  • Data governance policies
  • Encryption
  • Security monitoring
  • Compliance procedures

Security Risks

AI systems can introduce new attack surfaces.

Potential risks include:

Prompt Injection Attacks

Malicious instructions attempt to manipulate model behavior.

Unauthorized Access

Sensitive information could be exposed.

Data Exfiltration

Attackers may attempt to retrieve confidential information.

Abuse and Misuse

Users may intentionally exploit AI systems.

Organizations should establish strong security controls and governance processes.


Lack of Explainability

Generative AI models are often considered “black boxes.”

It can be difficult to explain:

  • Why a response was generated,
  • How conclusions were reached,
  • Which data influenced the output.

This lack of transparency may present challenges in highly regulated industries.


Dependency and Overreliance

Employees may begin trusting AI outputs without verification.

Overreliance can lead to:

  • Errors being overlooked,
  • Reduced critical thinking,
  • Poor decision-making.

AI should support human judgment rather than replace it.


Intellectual Property and Copyright Considerations

Organizations should consider:

  • Ownership of generated content,
  • Copyright implications,
  • Licensing restrictions,
  • Protection of proprietary information.

Legal and compliance teams may need to establish policies governing AI-generated content.


Ethical Considerations

AI systems can affect:

  • Customers
  • Employees
  • Society
  • Organizational reputation

Responsible use requires organizations to consider:

  • Fairness
  • Transparency
  • Accountability
  • Human impact

AI Transformation Leaders should ensure that ethical considerations are incorporated into AI strategies.


The Role of Human Oversight

Human oversight remains essential because AI:

  • Can make mistakes.
  • Can generate fabricated information.
  • Can produce biased results.
  • Cannot replace business accountability.

Humans should:

  • Review outputs.
  • Validate critical information.
  • Make final decisions.
  • Monitor system performance.

Generative AI is most effective when it augments human expertise rather than replacing it.


Common Risk Mitigation Strategies

Organizations can reduce AI risks through:

Governance Frameworks

Define policies and responsibilities.

Responsible AI Principles

Promote fairness and accountability.

Human-in-the-Loop Processes

Maintain human review.

Testing and Monitoring

Evaluate performance continuously.

Data Quality Improvements

Provide accurate and trusted information.

Employee Training

Teach users how to use AI responsibly.


Business Perspective

AI leaders should balance:

Opportunities

  • Productivity gains
  • Innovation
  • Customer experience improvements

with

Risks

  • Fabrications
  • Bias
  • Reliability concerns
  • Security threats
  • Compliance requirements

Successful AI transformation involves maximizing benefits while managing risks responsibly.


Exam Tips

For the AB-731 exam, remember:

  • Fabrications (hallucinations) occur when AI generates incorrect information that appears credible.
  • Reliability refers to consistency and dependability of outputs.
  • Bias can originate from training data and development processes.
  • Human oversight remains essential.
  • RAG can improve accuracy and reduce hallucinations.
  • Responsible AI principles help organizations mitigate risks.
  • AI systems should augment human decision-making rather than replace accountability.
  • Governance, monitoring, and testing are critical components of successful AI adoption.

Practice Exam Questions

Question 1

An AI assistant generates references to research papers that do not actually exist. Which challenge does this represent?

A. Bias
B. Security breach
C. Fabrication (hallucination)
D. Model compression

Answer: C

Explanation: Fabrications occur when AI generates plausible but incorrect or invented information, such as nonexistent citations.


Question 2

Why do generative AI systems sometimes produce inaccurate information?

A. They rely on probabilistic predictions rather than true understanding.
B. They only use structured databases.
C. They execute predefined business rules.
D. They require no training data.

Answer: A

Explanation: Generative AI predicts likely outputs based on learned patterns rather than verifying facts like a human expert.


Question 3

Which technique can help reduce hallucinations by supplying current organizational information?

A. Increasing response length
B. Retrieval-Augmented Generation (RAG)
C. Eliminating governance controls
D. Disabling monitoring

Answer: B

Explanation: RAG retrieves trusted information and provides it to the model, improving accuracy and reducing fabricated responses.


Question 4

What does reliability refer to in generative AI?

A. The amount of storage required by the model
B. The size of the training dataset
C. The speed of network connectivity
D. The consistency and dependability of outputs

Answer: D

Explanation: Reliability focuses on whether AI outputs are consistent, predictable, and trustworthy.


Question 5

Which factor is a common source of bias in AI systems?

A. Excessive hardware memory
B. Training data containing historical biases
C. Strong password policies
D. Network latency

Answer: B

Explanation: Models learn patterns from training data, and any biases present in that data may be reflected in AI outputs.


Question 6

Why is human oversight important when using generative AI?

A. Humans are required to train every model from scratch.
B. AI systems cannot generate text independently.
C. Humans must validate important outputs and make final decisions.
D. Human oversight eliminates all security risks.

Answer: C

Explanation: Humans remain accountable for reviewing AI outputs and ensuring their correctness and appropriateness.


Question 7

Which Microsoft Responsible AI principle is most directly concerned with minimizing unfair outcomes?

A. Fairness
B. Scalability
C. Profitability
D. Automation

Answer: A

Explanation: The fairness principle focuses on ensuring that AI systems treat people equitably and avoid discriminatory outcomes.


Question 8

Employees begin accepting AI-generated answers without reviewing them. What challenge does this represent?

A. Data compression
B. Prompt injection
C. Overreliance on AI
D. Fine-tuning failure

Answer: C

Explanation: Overreliance occurs when users trust AI outputs without applying human judgment or validation.


Question 9

Which risk involves malicious attempts to manipulate AI instructions?

A. Representation bias
B. Prompt injection attacks
C. Token optimization
D. Data normalization

Answer: B

Explanation: Prompt injection attacks attempt to influence or override intended AI behavior through malicious inputs.


Question 10

What is one of the primary goals of responsible AI governance?

A. Eliminate all operational costs
B. Replace human decision-making entirely
C. Prevent the need for monitoring
D. Maximize benefits while managing risks

Answer: D

Explanation: Responsible AI governance seeks to balance business value with ethical, security, reliability, and compliance considerations.


Go to the AB-731 Exam Prep Hub main page

Explain the cost drivers in Generative AI usage, including tokens and return-on-investment (ROI) considerations (AB-731 Exam Prep)

This post is a part of the AB-731: AI Transformation Leader Exam Prep Hub.
This topic falls under these sections:
Identify the business value of generative AI solutions (35–40%)
   --> Identify the foundational concepts of generative AI
      --> Explain the cost drivers in Generative AI usage, including tokens and return-on-investment (ROI) considerations


Note that there are 10 practice questions (with answers) at the end of each section to help you solidify your knowledge of the material. Also, there are 4 practice tests with 30 questions each available from the hub's main page below the exam topics section.

Introduction

One of the most important responsibilities of an AI Transformation Leader is understanding not only what generative AI can do, but also what it costs and how organizations can realize business value from their investments.

Unlike traditional software licensing, many generative AI solutions have usage-based pricing models. Costs are often tied to how frequently AI is used, the complexity of requests, the size of AI models, and the amount of data processed. As a result, business leaders must understand the major cost drivers of generative AI and evaluate whether expected benefits justify the investment.

For the AB-731 certification exam, you should understand:

  • What tokens are
  • How token consumption affects costs
  • The major cost drivers of generative AI solutions
  • How to evaluate return on investment (ROI)
  • How organizations can maximize value while controlling costs

Understanding Generative AI Costs

Generative AI solutions require significant computing resources.

When a user submits a prompt, the AI system must:

  1. Process the request
  2. Analyze the prompt
  3. Generate a response
  4. Deliver the output

These operations require powerful computing infrastructure, often running in cloud environments.

As usage increases, costs typically increase as well.

Unlike many traditional software applications, generative AI costs are often variable rather than fixed.


What Are Tokens?

A token is a unit of text used by AI models to process language.

Tokens are not exactly the same as words.

A token may be:

  • A whole word
  • Part of a word
  • A punctuation mark
  • A number
  • A symbol

Example

Sentence:

AI helps organizations improve productivity.

This sentence would be broken into multiple tokens for processing.

Generative AI models measure both input and output using tokens.


Input Tokens and Output Tokens

Generative AI usage typically involves two token categories.

Input Tokens

Input tokens are the tokens contained in:

  • User prompts
  • Instructions
  • Context information
  • Retrieved documents

Example:

A user submits a 500-word document and asks for a summary.

The document and prompt consume input tokens.


Output Tokens

Output tokens are the tokens generated by the model in its response.

Example:

The summary generated by the model consumes output tokens.


Why Tokens Matter

Many generative AI services charge based on token consumption.

More tokens generally mean:

  • More computation
  • Longer processing times
  • Higher operating costs

Example

Request 1:

Summarize this paragraph.

May consume relatively few tokens.

Request 2:

Analyze this 100-page document and generate a detailed report.

Will consume significantly more tokens and therefore cost more.

Business leaders should recognize that usage volume directly affects cost.


Context Windows and Cost

A context window represents the amount of information a model can process during a conversation or request.

Larger context windows allow AI systems to:

  • Analyze larger documents
  • Maintain longer conversations
  • Reference more information

However, larger contexts often increase token usage.

Example

Analyzing:

  • A one-page document
  • A 500-page policy manual

requires dramatically different processing resources.

As context size increases, costs may increase as well.


Major Cost Drivers in Generative AI

Several factors influence the total cost of ownership for generative AI solutions.


1. Model Selection

Not all AI models cost the same.

Generally:

  • Larger models provide greater capabilities.
  • Smaller models often cost less.

Considerations

Organizations should select models that match business requirements rather than automatically choosing the largest available model.

Example

A simple FAQ chatbot may not require the most advanced model available.


2. Usage Volume

One of the most significant cost drivers is how often employees or customers use the system.

Examples include:

  • Number of users
  • Number of prompts
  • Number of conversations
  • Frequency of requests

Higher usage generally increases costs.


3. Prompt Length

Longer prompts consume more input tokens.

Example

Prompt A:

Summarize this paragraph.

Prompt B:

Analyze these 50 pages of documentation and generate a detailed report with recommendations.

Prompt B consumes significantly more tokens.


4. Response Length

Longer responses generate more output tokens.

Example

Requesting:

Provide a one-sentence summary.

costs less than requesting:

Generate a detailed 20-page report.


5. Retrieval-Augmented Generation (RAG)

Many enterprise AI systems retrieve organizational data before generating responses.

This process may involve:

  • Search operations
  • Vector databases
  • Document retrieval
  • Storage services

Although RAG often improves accuracy, it can introduce additional infrastructure costs.


6. Fine-Tuning and Customization

Organizations sometimes customize models to improve performance.

Activities may include:

  • Fine-tuning
  • Testing
  • Validation
  • Monitoring

These activities increase overall implementation and operational costs.


7. Data Storage and Management

AI solutions frequently require:

  • Document repositories
  • Data indexing
  • Vector databases
  • Governance systems

Managing large knowledge bases can contribute to total solution costs.


8. Security and Compliance

Enterprise AI deployments often require additional investments in:

  • Data protection
  • Identity management
  • Monitoring
  • Auditing
  • Compliance controls

These safeguards are essential but increase overall costs.


Understanding Return on Investment (ROI)

Return on Investment (ROI) measures the value generated relative to the cost of an investment.

Organizations use ROI to determine whether AI initiatives are producing meaningful business outcomes.

A simple way to think about ROI is:

ROI = Business Benefits – Costs

When benefits exceed costs, the investment creates positive value.


Types of AI Benefits That Contribute to ROI

Generative AI can produce both direct and indirect benefits.


Productivity Improvements

One of the most common sources of ROI.

Examples:

  • Faster document creation
  • Reduced administrative work
  • Meeting summarization
  • Automated content generation

Example

If employees save one hour per day using AI tools, the productivity gains can be substantial across an organization.


Cost Reduction

AI may reduce operational expenses.

Examples:

  • Fewer manual processes
  • Reduced support costs
  • Lower outsourcing expenses
  • Faster workflow completion

Revenue Growth

AI can help generate additional revenue through:

  • Faster sales cycles
  • Improved customer engagement
  • Better marketing effectiveness
  • Increased innovation

Improved Decision-Making

AI-generated insights can help leaders make more informed decisions.

Benefits may include:

  • Better planning
  • Reduced risks
  • Improved forecasting

Although difficult to measure directly, these improvements can contribute significant value.


Enhanced Customer Experience

Organizations often use AI to improve customer satisfaction.

Examples:

  • Faster response times
  • Personalized interactions
  • 24/7 support availability

Improved customer experiences may increase retention and loyalty.


Measuring ROI for Generative AI

Successful AI programs establish metrics before deployment.

Common measurements include:

Productivity Metrics

  • Hours saved
  • Tasks automated
  • Documents generated
  • Reduced manual effort

Financial Metrics

  • Cost savings
  • Revenue growth
  • Operational efficiency gains

Customer Metrics

  • Customer satisfaction scores
  • Response times
  • Issue resolution rates

Adoption Metrics

  • Active users
  • Usage frequency
  • Employee satisfaction

Sample ROI Scenario

Situation

A company deploys Microsoft 365 Copilot for 1,000 employees.

Expected Benefits

  • Employees save 30 minutes per day.
  • Report creation time decreases by 40%.
  • Meeting follow-up tasks become automated.

Financial Impact

The organization may realize:

  • Labor savings
  • Increased productivity
  • Faster project completion

Costs

The organization must consider:

  • Licensing
  • Training
  • Change management
  • Governance
  • Ongoing support

If productivity gains exceed these costs, the AI initiative delivers positive ROI.


Maximizing ROI While Controlling Costs

Organizations can improve value by:

Start with High-Value Use Cases

Focus on areas with measurable business impact.

Examples:

  • Customer service
  • Content creation
  • Knowledge management

Pilot Before Scaling

Test solutions with smaller groups before enterprise-wide deployment.

This reduces risk and helps validate value.


Monitor Usage

Track:

  • Token consumption
  • User adoption
  • Business outcomes

Monitoring helps prevent unexpected costs.


Optimize Prompts

Well-designed prompts often require:

  • Fewer iterations
  • Shorter conversations
  • Less token consumption

Prompt optimization can improve both quality and cost efficiency.


Choose the Right Model

More expensive models are not always necessary.

Organizations should align model capabilities with business needs.


Common Misconceptions About AI Costs

Misconception 1: AI Costs Are Only Licensing Costs

Reality:

Usage, infrastructure, governance, and support costs also matter.


Misconception 2: Bigger Models Always Deliver Better ROI

Reality:

The best ROI often comes from selecting the most appropriate model rather than the largest one.


Misconception 3: Productivity Gains Automatically Equal ROI

Reality:

Organizations must measure actual business outcomes and adoption rates.


Misconception 4: Token Costs Are Insignificant

Reality:

At enterprise scale, token consumption can become a major operational expense.


Exam Tips

For the AB-731 exam, remember:

  • Tokens are the units of text processed by AI models.
  • Both input tokens and output tokens contribute to costs.
  • Longer prompts and longer responses increase token consumption.
  • Major cost drivers include model size, usage volume, context length, customization, data management, and security requirements.
  • ROI measures the value generated relative to costs.
  • Productivity gains are often the largest source of AI ROI.
  • Organizations should measure business outcomes, not just technical performance.
  • Pilot projects and usage monitoring help control costs and improve ROI.
  • The most expensive AI model is not always the best business choice.

Practice Exam Questions

Question 1

An organization notices that AI operating costs are increasing because employees frequently submit very large documents for analysis. Which cost driver is most directly responsible?

A. Employee training programs
B. Token consumption from larger inputs
C. Compliance audits
D. Hardware depreciation

Answer: B

Explanation: Larger documents require more input tokens to process, increasing the computational resources and costs associated with AI usage.


Question 2

What is a token in the context of generative AI?

A. A software license assigned to a user
B. A security credential used for authentication
C. A unit of text processed by an AI model
D. A type of AI model

Answer: C

Explanation: Tokens are the units that AI models use to process text. They may represent words, parts of words, punctuation, or symbols.


Question 3

Which factor is most likely to increase output token costs?

A. Generating longer responses
B. Reducing prompt size
C. Limiting user access
D. Compressing stored documents

Answer: A

Explanation: Output token costs increase as the model generates larger amounts of text.


Question 4

An AI project generates measurable productivity gains that exceed implementation and operational expenses. What does this indicate?

A. Negative adoption
B. Excessive token usage
C. Model overfitting
D. Positive ROI

Answer: D

Explanation: When benefits exceed costs, the organization realizes a positive return on investment.


Question 5

Which of the following is typically considered a direct benefit contributing to AI ROI?

A. Increased regulatory complexity
B. Improved employee productivity
C. Larger context windows
D. Increased token consumption

Answer: B

Explanation: Productivity improvements often generate measurable business value and are a common source of AI ROI.


Question 6

A business wants to minimize AI costs while still meeting requirements. What is generally the best approach?

A. Always select the largest available model
B. Fine-tune every model regardless of need
C. Match model capabilities to business requirements
D. Eliminate governance controls

Answer: C

Explanation: Choosing a model that appropriately fits the use case helps balance performance and cost.


Question 7

Which activity may introduce additional infrastructure costs in enterprise AI solutions?

A. Using shorter prompts
B. Retrieval-Augmented Generation (RAG) with document retrieval systems
C. Reducing user adoption
D. Limiting model responses to one sentence

Answer: B

Explanation: RAG solutions often require additional storage, indexing, and retrieval infrastructure that contributes to overall costs.


Question 8

Why should organizations track token consumption?

A. To determine office network bandwidth usage
B. To measure employee attendance
C. To eliminate AI governance requirements
D. To understand and manage AI operating costs

Answer: D

Explanation: Since many AI services charge based on token usage, monitoring token consumption helps organizations control expenses.


Question 9

Which metric would be most useful when measuring the productivity impact of a generative AI deployment?

A. Number of server racks installed
B. Number of compliance reviews completed
C. Hours saved by employees
D. Number of database backups

Answer: C

Explanation: Employee time savings is a common and meaningful indicator of productivity improvements resulting from AI adoption.


Question 10

A company launches a pilot AI program before rolling it out enterprise-wide. What is the primary benefit of this approach?

A. It guarantees zero implementation costs.
B. It eliminates the need for user training.
C. It prevents all security risks.
D. It helps validate value and control risk before scaling.

Answer: D

Explanation: Pilot deployments allow organizations to evaluate effectiveness, measure ROI, identify challenges, and refine implementation strategies before broader adoption.


Go to the AB-731 Exam Prep Hub main page

Describe the differences between AI models, including fine-tuned and pretrained models (AB-731 Exam Prep)

This post is a part of the AB-731: AI Transformation Leader Exam Prep Hub.
This topic falls under these sections:
Identify the business value of generative AI solutions (35–40%)
   --> Identify the foundational concepts of generative AI
      --> Describe the differences between AI models, including fine-tuned and pretrained models


Note that there are 10 practice questions (with answers) at the end of each section to help you solidify your knowledge of the material. Also, there are 4 practice tests with 30 questions each available from the hub's main page below the exam topics section.

Introduction

Generative AI solutions are powered by AI models that have been trained to recognize patterns, understand language, generate content, and perform a wide variety of tasks. As organizations evaluate AI opportunities, business leaders must understand the different types of AI models available and when each type is appropriate.

One of the most important concepts for the AB-731: AI Transformation Leader exam is understanding the difference between pretrained models and fine-tuned models, as well as how these models fit into broader AI solution strategies.

While technical teams may handle model development and deployment, business leaders must understand the business implications of model selection, including cost, flexibility, performance, governance, and time-to-value.


What Is an AI Model?

An AI model is a system that has learned patterns from data and can use those patterns to perform tasks.

Depending on the model, tasks may include:

  • Generating text
  • Answering questions
  • Creating images
  • Writing code
  • Classifying data
  • Making predictions
  • Translating languages
  • Summarizing documents

An AI model can be thought of as the “engine” that powers an AI application.

For example:

  • Microsoft Copilot uses large AI models to generate responses.
  • Chatbots use AI models to understand and answer questions.
  • Image generators use AI models to create pictures from prompts.

Understanding Model Training

AI models learn through a training process.

During training, models analyze large volumes of data and identify patterns, relationships, and structures.

For example, a language model may be trained using:

  • Books
  • Articles
  • Websites
  • Technical documentation
  • Publicly available text

After training, the model can generate new content based on what it learned.

The amount of data, computing power, and time required for training can be enormous, especially for modern generative AI systems.


What Is a Pretrained Model?

A pretrained model is an AI model that has already been trained on a large dataset before being made available for use.

Organizations can immediately begin using the model without conducting their own large-scale training.

Characteristics of Pretrained Models

  • Already trained by the provider
  • Ready for immediate use
  • Supports many general-purpose tasks
  • Requires little or no additional training
  • Provides rapid deployment

Examples

Many large language models (LLMs) used in enterprise AI solutions are pretrained models.

These models can typically:

  • Answer questions
  • Summarize documents
  • Generate content
  • Translate languages
  • Create code

without requiring additional training.


Benefits of Pretrained Models

Faster Time-to-Value

Organizations can begin using the model immediately.

There is no need to spend months collecting and training data.

Example

A company deploys Microsoft Copilot to help employees draft emails and summarize meetings.

The organization benefits from AI capabilities immediately because the underlying model is already trained.


Lower Initial Cost

Training large models from scratch is expensive.

Pretrained models eliminate much of the cost associated with:

  • Data collection
  • Model training
  • Infrastructure
  • AI expertise

Broad Capabilities

Pretrained models often support many tasks.

Examples include:

  • Content creation
  • Summarization
  • Question answering
  • Translation
  • Coding assistance

A single model may address multiple business needs.


Reduced Complexity

Organizations can focus on adoption and business value rather than model development.


Limitations of Pretrained Models

Although pretrained models provide significant advantages, they are not perfect.

Limited Organizational Knowledge

The model may not understand:

  • Internal policies
  • Company procedures
  • Proprietary information
  • Industry-specific terminology

Generic Responses

Responses may be accurate but lack business-specific context.

Specialized Requirements

Highly regulated or specialized industries may require more tailored behavior.


What Is a Fine-Tuned Model?

A fine-tuned model begins as a pretrained model and then receives additional training using a smaller, targeted dataset.

The goal is to improve performance for a specific task, industry, business process, or domain.

Fine-tuning allows organizations to customize model behavior while leveraging the knowledge already learned during pretraining.


How Fine-Tuning Works

The process generally follows these steps:

Step 1

Start with a pretrained model.

Step 2

Provide additional training data relevant to the desired task.

Step 3

Adjust model parameters based on the specialized data.

Step 4

Deploy the customized model.

Instead of learning everything from scratch, the model builds upon existing knowledge.


Benefits of Fine-Tuned Models

Improved Domain Expertise

Fine-tuned models can better understand:

  • Industry terminology
  • Business-specific language
  • Specialized workflows

Example

A healthcare organization fine-tunes a model using medical documentation and clinical terminology.

The resulting model performs better within healthcare scenarios.


More Consistent Responses

Fine-tuning can help guide the model toward preferred response styles and behaviors.

Example

A company wants all AI-generated customer communications to follow specific branding guidelines.

Fine-tuning can improve consistency.


Better Performance for Specific Tasks

A fine-tuned model often outperforms a general-purpose model when performing specialized tasks.

Examples include:

  • Legal document analysis
  • Insurance claims processing
  • Financial reporting
  • Industry-specific customer support

Limitations of Fine-Tuned Models

Additional Cost

Fine-tuning requires:

  • Training resources
  • Data preparation
  • Model management

This increases costs compared to simply using a pretrained model.


Data Requirements

Organizations need high-quality training data.

Poor-quality data can reduce model effectiveness.


Ongoing Maintenance

Fine-tuned models may require updates as:

  • Business processes evolve
  • Regulations change
  • New data becomes available

Increased Complexity

Custom models introduce additional governance, testing, and management requirements.


Pretrained vs. Fine-Tuned Models

CharacteristicPretrained ModelFine-Tuned Model
TrainingAlready trained by providerAdditional organization-specific training
Time to deployFastLonger
CostLowerHigher
CustomizationLimitedHigh
Domain expertiseGeneralSpecialized
MaintenanceMinimalGreater
FlexibilityBroad tasksOptimized for specific tasks

Foundation Models

Many generative AI solutions are built on foundation models.

A foundation model is a large AI model trained on enormous amounts of data and capable of supporting many downstream tasks.

Characteristics include:

  • Large-scale training
  • Broad capabilities
  • Adaptability
  • General-purpose use

Foundation models often serve as the starting point for fine-tuning.


Large Language Models (LLMs)

A Large Language Model (LLM) is a type of foundation model focused on language-related tasks.

Examples of LLM capabilities include:

  • Writing content
  • Summarizing information
  • Translation
  • Question answering
  • Conversational interactions

Many Microsoft AI solutions rely on large language models.


Fine-Tuning vs. Retrieval-Augmented Generation (RAG)

Business leaders should understand that fine-tuning is not always required.

Many organizations use Retrieval-Augmented Generation (RAG) instead.

RAG Approach

Rather than retraining the model, RAG:

  1. Retrieves relevant organizational information.
  2. Provides that information to the model.
  3. Generates responses using the retrieved data.

Benefits

  • Lower cost
  • Faster implementation
  • Easier maintenance
  • Access to current information

Example

An employee asks a question about company policies.

The AI retrieves the latest policy documents and uses them to generate an answer.

The model itself does not need retraining.

For many enterprise scenarios, RAG may be preferable to fine-tuning.


Choosing Between Pretrained and Fine-Tuned Models

Business leaders should evaluate:

Business Requirements

Does the organization need:

  • General-purpose assistance?
  • Specialized expertise?

Available Data

Is high-quality domain-specific data available?

Cost Constraints

Can the organization justify customization costs?

Speed of Deployment

How quickly is value needed?

Governance Requirements

What regulatory and compliance considerations apply?


Business Scenarios

Scenario 1: Employee Productivity

Need:

  • Email drafting
  • Meeting summaries
  • Document creation

Best Choice:

Pretrained model

Reason:

General-purpose capabilities are sufficient.


Scenario 2: Industry-Specific Support Assistant

Need:

  • Specialized terminology
  • Consistent industry guidance

Best Choice:

Fine-tuned model or RAG-enhanced solution

Reason:

Domain-specific expertise is important.


Scenario 3: Enterprise Knowledge Search

Need:

  • Access to current internal documents

Best Choice:

RAG solution with a pretrained model

Reason:

Information changes frequently and retraining would be inefficient.


Exam Tips

For the AB-731 exam, remember:

  • A pretrained model has already been trained and is ready for use.
  • Fine-tuning adds additional training to customize a pretrained model.
  • Pretrained models provide faster deployment and lower costs.
  • Fine-tuned models provide greater specialization and domain expertise.
  • Foundation models serve as the basis for many generative AI solutions.
  • Large Language Models (LLMs) are foundation models focused on language tasks.
  • Fine-tuning is not always necessary; RAG is often a practical alternative.
  • Business leaders should balance cost, customization, governance, and business value when selecting a model strategy.

Practice Exam Questions

Question 1

A company wants to deploy an AI solution as quickly as possible to help employees draft emails and summarize meetings. Which model approach is most appropriate?

A. Fine-tuned model
B. Pretrained model
C. Custom model trained from scratch
D. Specialized classification model

Answer: B

Explanation: Pretrained models are already trained and can be deployed quickly for general productivity tasks without requiring additional customization.


Question 2

What is the primary purpose of fine-tuning an AI model?

A. Reduce model size
B. Remove training data
C. Improve performance for a specific domain or task
D. Eliminate the need for governance

Answer: C

Explanation: Fine-tuning customizes a pretrained model to perform better within a particular industry, business process, or specialized use case.


Question 3

Which statement best describes a pretrained model?

A. It has already been trained and is ready for use.
B. It requires organization-specific training before deployment.
C. It only supports one task.
D. It contains proprietary company data by default.

Answer: A

Explanation: Pretrained models are trained by the provider and can be used immediately for a variety of general-purpose tasks.


Question 4

A financial services company wants an AI solution that consistently uses industry-specific terminology and follows internal communication standards. Which approach is most likely to help?

A. Disable model training
B. Use only spreadsheets
C. Remove all business data
D. Fine-tune the model

Answer: D

Explanation: Fine-tuning can improve consistency and domain-specific performance by training the model on specialized organizational data.


Question 5

Which characteristic is typically associated with pretrained models?

A. Higher customization
B. Greater maintenance requirements
C. Lower implementation complexity
D. Longer deployment timelines

Answer: C

Explanation: Pretrained models generally require less customization and management, making them easier to implement.


Question 6

What is a foundation model?

A. A database platform for AI applications
B. A large AI model trained on extensive data that supports many tasks
C. A reporting tool used for business intelligence
D. A model that only performs image recognition

Answer: B

Explanation: Foundation models are large-scale models that can support a wide range of downstream AI tasks and applications.


Question 7

Which challenge is most commonly associated with fine-tuned models?

A. Lack of specialization
B. Inability to generate content
C. Additional cost and maintenance requirements
D. Inability to process text

Answer: C

Explanation: Fine-tuning requires additional training, testing, governance, and ongoing management, increasing complexity and cost.


Question 8

An organization needs AI responses based on frequently changing internal policy documents. Which approach may be preferable to fine-tuning?

A. Manual document review only
B. Model retraining every day
C. Predictive analytics
D. Retrieval-Augmented Generation (RAG)

Answer: D

Explanation: RAG retrieves current information at runtime, allowing AI systems to use the latest content without retraining the model.


Question 9

Which factor would most strongly support choosing a pretrained model instead of a fine-tuned model?

A. Need for highly specialized industry knowledge
B. Requirement for maximum customization
C. Desire for rapid deployment and lower cost
D. Availability of extensive proprietary training data

Answer: C

Explanation: Pretrained models are often selected when organizations want quick implementation and lower costs.


Question 10

How does a fine-tuned model typically originate?

A. It is built entirely without training data.
B. It starts as a pretrained model and receives additional targeted training.
C. It is created using only business rules.
D. It is generated automatically by a database.

Answer: B

Explanation: Fine-tuning builds upon an existing pretrained model, allowing it to develop greater expertise in a specific domain or task.


Go to the AB-731 Exam Prep Hub main page

Select a Generative AI solution to meet a business need (AB-731 Exam Prep)

This post is a part of the AB-731: AI Transformation Leader Exam Prep Hub.
This topic falls under these sections:
Identify the business value of generative AI solutions (35–40%)
   --> Identify the foundational concepts of generative AI
      --> Select a Generative AI solution to meet a business need


Note that there are 10 practice questions (with answers) at the end of each section to help you solidify your knowledge of the material. Also, there are 4 practice tests with 30 questions each available from the hub's main page below the exam topics section.

Introduction

One of the most important responsibilities of an AI Transformation Leader is identifying where generative AI can create business value and selecting the most appropriate AI solution for a given business challenge.

Organizations are often eager to adopt AI, but successful AI transformation requires more than simply implementing the latest technology. Leaders must understand business objectives, evaluate available AI capabilities, assess risks, and select solutions that align with organizational goals.

For the AB-731 certification exam, you should understand how to evaluate business needs and determine which type of generative AI solution is most appropriate for achieving desired outcomes.


Understanding Business Needs Before Selecting AI

A common mistake organizations make is starting with technology rather than business problems.

Successful AI initiatives begin with questions such as:

  • What problem are we trying to solve?
  • What outcome do we want to achieve?
  • Who will benefit from the solution?
  • What processes need improvement?
  • What measurable business value is expected?

Generative AI should be selected because it helps achieve a business objective, not simply because the technology is available.

Examples of Business Objectives

Business ObjectivePotential AI Outcome
Improve employee productivityAutomate content creation
Reduce customer service costsAI-powered virtual assistants
Increase sales effectivenessPersonalized customer communications
Improve knowledge sharingEnterprise search and summarization
Accelerate software developmentAI-assisted coding
Improve decision-makingAI-generated insights and reports

Matching AI Capabilities to Business Needs

Different generative AI solutions provide different capabilities.

Business leaders should understand what generative AI does well.

Core Generative AI Capabilities

Content Generation

Creates:

  • Emails
  • Reports
  • Marketing content
  • Product descriptions
  • Proposals
  • Presentations

Business Value:
Reduces time spent creating content.


Summarization

Generates concise summaries from:

  • Meetings
  • Documents
  • Research reports
  • Emails

Business Value:
Improves productivity and information consumption.


Conversational Assistance

Supports:

  • Employee questions
  • Customer inquiries
  • Knowledge retrieval

Business Value:
Improves user experience and access to information.


Code Generation

Assists developers by:

  • Writing code
  • Explaining code
  • Debugging code
  • Generating test cases

Business Value:
Accelerates software development.


Data Interpretation

Helps users:

  • Analyze information
  • Generate insights
  • Explain trends
  • Create visualizations

Business Value:
Improves decision support.


Common Categories of Generative AI Solutions

Business leaders are not expected to understand every technical detail, but they should recognize major solution categories.


AI Productivity Assistants

Examples include AI assistants integrated into workplace applications.

Capabilities:

  • Draft emails
  • Create presentations
  • Summarize meetings
  • Generate documents
  • Answer questions

Best For

  • Knowledge workers
  • Administrative tasks
  • Employee productivity improvements

Example

An organization wants employees to spend less time creating reports and managing email.

An AI productivity assistant would likely be the best solution.


AI-Powered Customer Service Solutions

Capabilities:

  • Answer customer questions
  • Provide 24/7 support
  • Handle common requests
  • Escalate complex issues

Best For

  • Customer support organizations
  • Service desks
  • Contact centers

Example

A company receives thousands of repetitive support inquiries each week.

An AI-powered conversational assistant could automate many of these interactions.


Enterprise Knowledge Solutions

Capabilities:

  • Search organizational documents
  • Retrieve information
  • Summarize content
  • Answer employee questions

Best For

  • Large organizations
  • Knowledge-intensive industries
  • Distributed workforces

Example

Employees struggle to locate policies and procedures stored across multiple systems.

A generative AI knowledge solution can help employees quickly find relevant information.


AI Development Solutions

Capabilities:

  • Code generation
  • Documentation creation
  • Debugging assistance
  • Application development support

Best For

  • Software development teams
  • IT organizations

Example

A technology company wants to improve developer productivity.

An AI coding assistant may provide significant value.


Custom AI Applications

Capabilities:

  • Tailored AI experiences
  • Organization-specific workflows
  • Industry-specific use cases

Best For

  • Unique business processes
  • Specialized requirements

Example

A healthcare organization needs AI solutions designed specifically for clinical workflows and compliance requirements.

A custom AI solution may be preferable to a general-purpose assistant.


Microsoft AI Solutions and Their Business Fit

The AB-731 exam focuses heavily on Microsoft’s AI ecosystem.

Understanding where Microsoft’s solutions fit business needs is important.


Microsoft Copilot

Microsoft Copilot solutions help users perform tasks through natural language interactions.

Typical uses include:

  • Drafting content
  • Summarizing information
  • Creating presentations
  • Managing communications
  • Improving employee productivity

Best Business Fit

Organizations seeking broad productivity improvements across employees.


Microsoft 365 Copilot

Integrated into workplace applications.

Examples:

  • Word
  • Excel
  • PowerPoint
  • Outlook
  • Teams

Best Business Fit

Organizations wanting to improve everyday employee productivity and efficiency.


Microsoft Copilot Studio

Allows organizations to create and customize AI assistants.

Best Business Fit

Organizations requiring tailored conversational experiences and business process automation.


Azure AI Foundry

Provides tools for developing, customizing, deploying, and managing AI applications.

Best Business Fit

Organizations building custom AI solutions or advanced AI applications.


Azure AI Services

Provides AI capabilities such as:

  • Language
  • Vision
  • Speech
  • Document intelligence

Best Business Fit

Organizations needing specialized AI functionality integrated into applications.


Factors to Consider When Selecting a Generative AI Solution

Business leaders should evaluate several factors before making a decision.


Business Value

Ask:

  • What benefits will the organization gain?
  • How will success be measured?

Examples:

  • Cost reduction
  • Productivity improvement
  • Revenue growth
  • Customer satisfaction

User Experience

Ask:

  • Will employees use the solution?
  • Is it easy to adopt?
  • Does it fit existing workflows?

Solutions with poor adoption often fail regardless of technical quality.


Data Requirements

Ask:

  • What data will the solution need?
  • Is the data available?
  • Is the data trustworthy?

Poor data quality can significantly reduce AI effectiveness.


Security and Compliance

Ask:

  • Does the solution protect sensitive information?
  • Does it meet regulatory requirements?
  • Can access be controlled?

Security and compliance are critical considerations in enterprise environments.


Scalability

Ask:

  • Can the solution support future growth?
  • Can additional users be onboarded easily?

Organizations should think beyond initial deployment requirements.


Cost

Ask:

  • What is the implementation cost?
  • What are the ongoing operational costs?
  • What return on investment is expected?

AI investments should support measurable business outcomes.


When Not to Use Generative AI

Not every problem requires generative AI.

Traditional automation, analytics, or predictive AI may sometimes be better options.

Examples

Better Served by Traditional AI

  • Fraud detection
  • Demand forecasting
  • Risk scoring
  • Customer churn prediction

Better Served by Business Rules

  • Fixed approval workflows
  • Compliance checks
  • Deterministic calculations

Business leaders should select the simplest solution capable of solving the problem effectively.


A Practical Framework for Selecting Generative AI Solutions

A useful approach is:

Step 1: Define the Business Problem

Identify:

  • Current challenges
  • Desired outcomes
  • Success metrics

Step 2: Identify AI Opportunities

Determine whether generative AI can:

  • Create content
  • Summarize information
  • Improve communication
  • Enhance customer interactions
  • Support decision-making

Step 3: Evaluate Available Solutions

Consider:

  • Microsoft Copilot
  • Microsoft 365 Copilot
  • Copilot Studio
  • Azure AI Foundry
  • Azure AI Services

Step 4: Assess Risks

Review:

  • Security
  • Compliance
  • Responsible AI requirements
  • Data governance

Step 5: Measure Business Value

Track:

  • Productivity improvements
  • Cost savings
  • Adoption rates
  • User satisfaction
  • Business outcomes

Exam Tips

For the AB-731 exam, remember:

  • Start with business needs, not technology.
  • Different generative AI solutions address different business problems.
  • Productivity assistants are ideal for employee efficiency gains.
  • Conversational AI solutions are valuable for customer and employee support.
  • Microsoft 365 Copilot focuses on productivity within Microsoft applications.
  • Copilot Studio enables customization and creation of AI assistants.
  • Azure AI Foundry supports development of custom AI solutions.
  • Business value, security, scalability, adoption, and cost should all influence solution selection.
  • Not every business problem requires generative AI.

Practice Exam Questions

Question 1

A company wants employees to spend less time drafting emails, creating presentations, and summarizing meetings. Which type of generative AI solution is most appropriate?

A. Employee productivity assistant
B. Fraud detection platform
C. Predictive analytics model
D. Inventory optimization system

Answer: A

Explanation: Productivity assistants are specifically designed to help employees create content, summarize information, and improve daily productivity. The other options focus on non-generative AI use cases.


Question 2

What should be the first step when selecting a generative AI solution?

A. Compare AI vendors
B. Define the business problem and desired outcomes
C. Build a proof of concept
D. Train employees on AI tools

Answer: B

Explanation: Successful AI initiatives begin by identifying business needs and objectives. Technology selection comes after understanding the problem to be solved.


Question 3

An organization wants to create a customized AI assistant that follows company-specific workflows and business rules. Which Microsoft solution is most appropriate?

A. Microsoft Word
B. Microsoft Teams
C. Microsoft Copilot Studio
D. Power BI

Answer: C

Explanation: Copilot Studio enables organizations to build and customize AI assistants tailored to business processes and organizational requirements.


Question 4

Which factor is most directly related to measuring the success of an AI implementation?

A. The number of AI models available
B. The size of the training dataset
C. The programming language used
D. Achievement of defined business outcomes

Answer: D

Explanation: AI projects should be evaluated based on business impact such as productivity gains, cost reductions, customer satisfaction, or revenue growth.


Question 5

A company wants an AI solution that can search internal documents, answer employee questions, and summarize policies. Which capability is most relevant?

A. Predictive forecasting
B. Enterprise knowledge management
C. Fraud analytics
D. Process mining

Answer: B

Explanation: Enterprise knowledge solutions help employees locate information, retrieve documents, and generate summaries from organizational content.


Question 6

Which scenario is most appropriate for Azure AI Foundry?

A. Employees need help writing emails in Outlook.
B. Users need presentation design suggestions.
C. Developers want to build a custom AI application.
D. Managers want automatic spreadsheet formatting.

Answer: C

Explanation: Azure AI Foundry provides tools for building, customizing, deploying, and managing advanced AI applications.


Question 7

A business leader evaluating AI solutions should prioritize which consideration?

A. Whether the solution aligns with business objectives
B. Whether the solution uses the largest language model available
C. Whether competitors use the same technology
D. Whether implementation requires the newest hardware

Answer: A

Explanation: Alignment with business goals is the most important consideration. Technology choices should support measurable business outcomes.


Question 8

Which business need is most likely to benefit from a conversational AI solution?

A. Forecasting next year’s sales revenue
B. Calculating tax liabilities
C. Managing inventory reorder points
D. Handling customer support inquiries

Answer: D

Explanation: Conversational AI excels at answering questions, providing support, and interacting naturally with customers or employees.


Question 9

Why should organizations evaluate scalability when selecting a generative AI solution?

A. To ensure the solution can support future growth and additional users
B. To guarantee perfect AI responses
C. To eliminate security requirements
D. To avoid user training

Answer: A

Explanation: Scalability ensures that the solution can continue to meet organizational needs as adoption and business requirements expand.


Question 10

A company wants to automate fraud detection for financial transactions. What is the best recommendation?

A. Implement a content-generation assistant
B. Deploy a presentation-generation tool
C. Use traditional predictive AI rather than generative AI
D. Create a document summarization solution

Answer: C

Explanation: Fraud detection is a predictive classification problem. Traditional AI models are generally better suited for identifying fraudulent behavior than generative AI solutions.


Go to the AB-731 Exam Prep Hub main page

Describe the Differences Between Generative AI and Other Types of AI (AB-731 Exam Prep)

This post is a part of the AB-731: AI Transformation Leader Exam Prep Hub.
This topic falls under these sections:
Identify the business value of generative AI solutions (35–40%)
   --> Identify the foundational concepts of generative AI
      --> Describe the differences between generative AI and other types of AI


Note that there are 10 practice questions (with answers) at the end of each section to help you solidify your knowledge of the material. Also, there are 4 practice tests with 30 questions each available from the hub's main page below the exam topics section.

Introduction

Artificial Intelligence (AI) has evolved significantly over the past several decades. Organizations now use AI to automate processes, improve decision-making, enhance customer experiences, and create entirely new business opportunities. As AI adoption grows, business leaders must understand the differences between generative AI and other forms of AI because each serves different business purposes and delivers different types of value.

For the AB-731: AI Transformation Leader exam, understanding these distinctions is foundational to evaluating AI opportunities, selecting appropriate solutions, and driving successful AI transformation initiatives.


What Is Artificial Intelligence?

Artificial Intelligence refers to computer systems that can perform tasks that typically require human intelligence. These tasks may include:

  • Recognizing patterns
  • Making predictions
  • Understanding language
  • Classifying information
  • Solving problems
  • Generating content

AI is not a single technology. Instead, it encompasses multiple approaches and capabilities.

Broadly speaking, AI can be divided into two categories:

  1. Traditional (Predictive/Analytical) AI
  2. Generative AI

Traditional AI (Predictive or Analytical AI)

Traditional AI focuses on analyzing existing data to make predictions, classifications, recommendations, or decisions.

Its primary goal is to answer questions such as:

  • What happened?
  • What is happening now?
  • What is likely to happen next?
  • Which category does this belong to?

Traditional AI learns patterns from historical data and uses those patterns to generate outputs such as predictions or classifications.

Examples

  • Fraud detection systems
  • Product recommendation engines
  • Sales forecasting models
  • Spam email filtering
  • Medical image classification
  • Credit risk assessment

Example Scenario

A bank uses AI to determine whether a credit card transaction is likely fraudulent.

The AI examines:

  • Transaction amount
  • Location
  • Purchase history
  • Merchant type

The system then classifies the transaction as:

  • Fraudulent
  • Not fraudulent

The AI is not creating anything new. It is making a prediction based on existing patterns.


Generative AI

Generative AI goes beyond analyzing data. It creates new content based on patterns learned from large datasets.

Its primary goal is to generate new outputs that resemble human-created content.

Generative AI can produce:

  • Text
  • Images
  • Audio
  • Video
  • Code
  • Summaries
  • Business documents

Examples

  • Microsoft Copilot
  • Large Language Models (LLMs)
  • AI image generation systems
  • AI coding assistants
  • AI-powered content creation tools

Example Scenario

A marketing manager asks Microsoft Copilot to:

Create a marketing campaign for a new product launch.

The AI generates:

  • Email content
  • Social media posts
  • Advertising copy
  • Campaign ideas

Unlike traditional AI, the system is creating new content rather than classifying or predicting existing data.


Key Difference: Prediction vs. Creation

The simplest distinction is:

Traditional AIGenerative AI
Predicts outcomesCreates new content
Classifies dataGenerates data
Analyzes informationProduces information
Answers “What will happen?”Answers “What can I create?”
Typically structured outputsOften natural language outputs

Example

Traditional AI

Input:

  • Customer purchase history

Output:

  • Likelihood customer will make another purchase

Generative AI

Input:

  • Customer profile and product information

Output:

  • Personalized marketing email

How Traditional AI Works

Traditional AI systems generally follow a supervised learning approach.

The process typically includes:

  1. Collect historical data
  2. Label data
  3. Train a model
  4. Make predictions
  5. Evaluate accuracy

Example

An insurance company may train a model using:

  • Past claims
  • Customer demographics
  • Vehicle information

The model predicts future claim risk.

The output is usually a score, category, or prediction.


How Generative AI Works

Generative AI models are trained on extremely large datasets containing:

  • Books
  • Websites
  • Articles
  • Images
  • Code
  • Documents

The model learns patterns, relationships, structures, and context.

When prompted, it generates new content by predicting the most likely next words, pixels, sounds, or code elements.

Example

Prompt:

Draft a proposal for implementing AI in a customer service department.

Output:

A newly created business proposal tailored to the request.


Foundation Models and Large Language Models

Generative AI is powered by foundation models.

A foundation model is a large AI model trained on enormous amounts of data and capable of supporting many tasks.

Examples include models that can:

  • Write content
  • Summarize information
  • Translate languages
  • Generate code
  • Answer questions

A Large Language Model (LLM) is a type of foundation model specialized for language.

Examples include:

  • GPT models
  • Models used in Microsoft Copilot
  • Other enterprise AI language systems

Traditional AI typically uses smaller models trained for specific tasks, while generative AI often relies on large foundation models capable of many tasks.


Deterministic vs. Probabilistic Outputs

Another important distinction is predictability.

Traditional AI

Often produces highly consistent outputs.

Example:

A fraud detection model analyzing the same transaction generally produces the same result.

Generative AI

Produces probabilistic outputs.

Example:

If asked multiple times to create a marketing slogan, the AI may generate different but valid responses.

This flexibility is one reason generative AI is valuable for creativity and content creation.


Data Requirements

Traditional AI

Usually requires:

  • Structured data
  • Labeled datasets
  • Domain-specific training

Examples:

  • Customer tables
  • Transaction records
  • Sensor readings

Generative AI

Uses:

  • Massive datasets
  • Structured and unstructured data
  • Text, images, audio, and code

Examples:

  • Documents
  • Books
  • Emails
  • Websites
  • Images

This broader training enables generative AI to perform a wide variety of tasks.


Business Applications of Traditional AI

Organizations commonly use traditional AI for:

Operational Efficiency

  • Demand forecasting
  • Inventory management
  • Route optimization

Risk Management

  • Fraud detection
  • Cybersecurity monitoring
  • Credit scoring

Decision Support

  • Sales forecasting
  • Predictive maintenance
  • Customer churn prediction

The focus is usually on making better business decisions.


Business Applications of Generative AI

Organizations use generative AI to:

Enhance Productivity

  • Draft emails
  • Create reports
  • Generate presentations
  • Summarize meetings

Improve Customer Experience

  • Intelligent chatbots
  • Personalized responses
  • Conversational assistants

Accelerate Innovation

  • Product ideation
  • Content creation
  • Software development assistance

Knowledge Management

  • Enterprise search
  • Document summarization
  • Knowledge extraction

The focus is often on amplifying human creativity and productivity.


Human Interaction Differences

Traditional AI

Often operates behind the scenes.

Users may not directly interact with the model.

Examples:

  • Recommendation engines
  • Risk scoring systems
  • Automated approval processes

Generative AI

Usually involves direct interaction through prompts and conversations.

Examples:

  • Microsoft Copilot
  • AI assistants
  • Chat-based business applications

Prompt engineering and conversational interaction become important skills.


Benefits of Generative AI Compared to Traditional AI

Generative AI can:

  • Create content rapidly
  • Increase employee productivity
  • Reduce repetitive work
  • Improve knowledge discovery
  • Support creativity and innovation
  • Enable natural language interaction

These capabilities have expanded AI adoption beyond data scientists and technical specialists to everyday business users.


Limitations of Generative AI

Despite its capabilities, generative AI has limitations.

Hallucinations

AI may generate incorrect information that appears credible.

Inconsistent Outputs

Results may vary between prompts.

Governance Requirements

Organizations need policies for:

  • Data protection
  • Security
  • Compliance
  • Responsible AI

Human Oversight

Generated content often requires review and validation.

Business leaders must understand that generative AI augments human work rather than replacing judgment and accountability.


When to Use Traditional AI vs. Generative AI

Business NeedBest Choice
Fraud detectionTraditional AI
Demand forecastingTraditional AI
Risk scoringTraditional AI
Customer segmentationTraditional AI
Drafting reportsGenerative AI
Writing emailsGenerative AI
Creating marketing contentGenerative AI
Summarizing documentsGenerative AI
Conversational assistantsGenerative AI
Generating software codeGenerative AI

In many organizations, both types of AI work together to deliver business value.


Exam Tips

For the AB-731 exam, remember:

  • Traditional AI primarily analyzes, predicts, classifies, and recommends.
  • Generative AI creates new content.
  • Generative AI is commonly powered by foundation models and large language models.
  • Traditional AI often works with structured data and task-specific models.
  • Generative AI works with large-scale structured and unstructured datasets.
  • Generative AI emphasizes human interaction through prompts and conversations.
  • Both approaches deliver business value but solve different business problems.

Practice Exam Questions

Question 1

A retail company uses AI to predict which customers are likely to stop purchasing products within the next six months. What type of AI is being used?

A. Generative AI
B. Predictive AI
C. Conversational AI
D. Foundation AI

Answer: B

Explanation: Predicting future customer behavior is a predictive analytics task. The model analyzes historical data and forecasts future outcomes rather than generating new content.


Question 2

Which capability most clearly distinguishes generative AI from traditional AI?

A. Analyzing structured datasets
B. Making classifications
C. Creating new content
D. Detecting patterns

Answer: C

Explanation: The defining characteristic of generative AI is its ability to create new content such as text, images, code, and summaries. Traditional AI primarily analyzes and predicts.


Question 3

A company uses AI to automatically classify incoming support tickets into categories. Which type of AI is primarily being used?

A. Generative AI
B. Foundation AI
C. Traditional AI
D. Conversational AI

Answer: C

Explanation: Ticket categorization is a classification task. Classification is a common traditional AI use case.


Question 4

What is the primary output of a generative AI model?

A. New content based on learned patterns
B. A probability score only
C. A predefined business rule
D. A database query

Answer: A

Explanation: Generative AI creates new outputs such as text, images, code, or summaries based on patterns learned during training.


Question 5

Which business scenario is best suited for generative AI?

A. Fraud detection
B. Inventory forecasting
C. Credit risk scoring
D. Drafting a marketing campaign

Answer: D

Explanation: Creating marketing content requires generating new text and ideas, making it an ideal generative AI use case.


Question 6

How do foundation models differ from many traditional AI models?

A. They only work with structured data.
B. They require no training data.
C. They can support many different tasks after training.
D. They are limited to classification tasks.

Answer: C

Explanation: Foundation models are trained on large datasets and can perform multiple tasks, unlike many traditional AI models that are designed for specific purposes.


Question 7

Which statement about generative AI outputs is most accurate?

A. They are always identical for the same prompt.
B. They are always guaranteed to be correct.
C. They are based solely on business rules.
D. They can vary while still being valid responses.

Answer: D

Explanation: Generative AI is probabilistic and can produce different valid responses to the same prompt.


Question 8

A financial institution uses AI to determine whether a transaction should be flagged as potentially fraudulent. This is an example of:

A. Content generation
B. Predictive classification
C. Creative reasoning
D. Prompt engineering

Answer: B

Explanation: Fraud detection is a classic predictive classification use case where the AI determines the likelihood that a transaction belongs to a fraud category.


Question 9

Which type of data is most commonly associated with traditional AI models?

A. Structured, labeled data
B. Only images
C. Only text documents
D. Randomly generated content

Answer: A

Explanation: Traditional AI frequently relies on structured and labeled datasets for training predictive and classification models.


Question 10

Why do organizations often implement both traditional AI and generative AI?

A. Traditional AI can only be used in research environments.
B. Generative AI eliminates all predictive modeling needs.
C. The two approaches solve different business problems and complement one another.
D. Foundation models require traditional AI to function.

Answer: C

Explanation: Traditional AI excels at prediction and classification, while generative AI excels at content creation and conversational experiences. Together they provide broader business value.


Go to the AB-731 Exam Prep Hub main page