Tag: Azure Speech

Integrate speech as an agent modality, including custom speech models (AI-103 Exam Prep)

This post is a part of the AI-103: Develop AI Apps and Agents on Azure Exam Prep Hub. 
This topic falls under these sections:
Implement text analysis solutions (10–15%)
--> Implement speech solutions
--> Integrate speech as an agent modality, including custom speech models


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

Introduction

Modern AI agents increasingly support multimodal interaction methods, allowing users to communicate through:

  • Voice
  • Text
  • Images
  • Video
  • Documents

Speech is one of the most important modalities because it enables natural, conversational interaction with AI systems. Organizations use speech-enabled agents for:

  • Customer service
  • Virtual assistants
  • Healthcare systems
  • Accessibility applications
  • Smart devices
  • Contact center automation

For the AI-103 certification exam, you should understand how to:

  • Integrate speech into AI agents
  • Build speech-enabled workflows
  • Use custom speech models
  • Implement real-time conversational pipelines
  • Orchestrate multimodal AI interactions
  • Apply responsible AI practices for voice systems

This topic falls under:

“Implement speech solutions”


What Is an Agent Modality?

Definition

A modality is a method through which users interact with an AI system.

Examples include:

  • Text
  • Speech
  • Images
  • Video
  • Structured data

Speech becomes an agent modality when users communicate with the agent using spoken language.


Why Speech Matters for AI Agents

Speech interaction enables:

  • Hands-free experiences
  • Faster communication
  • Accessibility support
  • Natural conversations
  • Real-time engagement

Examples of Speech-Enabled Agents

Organizations deploy speech agents for:

  • AI customer service representatives
  • Virtual receptionists
  • Healthcare assistants
  • AI copilots
  • Smart home assistants
  • Interactive kiosks

Core Speech Workflow

A speech-enabled agent typically performs:

  1. Speech-to-text (STT)
  2. Intent understanding
  3. LLM reasoning
  4. Tool or workflow execution
  5. Response generation
  6. Text-to-speech (TTS)

Azure AI Speech

Microsoft provides:
Azure AI Speech

to support:

  • Speech recognition
  • Speech synthesis
  • Voice translation
  • Speaker recognition
  • Custom speech models

Speech-to-Text (STT)

What Is STT?

Speech-to-text converts spoken audio into text.


Example

Audio:

"Show me my sales report for last month."

Recognized text:

Show me my sales report for last month.

Text-to-Speech (TTS)

What Is TTS?

TTS converts text responses into synthesized spoken audio.


Example

Agent response:

Your sales increased by 12 percent last month.

Converted into:

  • Spoken AI audio response

Speech as an Agent Modality

Speech becomes part of the conversational pipeline.

The user:

  • Speaks naturally
  • Receives spoken responses
  • Engages in multi-turn conversations

Real-Time Conversational Agents

Real-Time Voice Interaction

Real-time voice systems:

  • Stream audio continuously
  • Process speech incrementally
  • Respond with low latency

Streaming Pipeline Example

  1. User speaks
  2. Audio streamed to speech service
  3. Partial transcription generated
  4. Agent processes intent
  5. AI generates response
  6. TTS streams spoken reply

Azure OpenAI Service

Azure OpenAI Service

supports:

  • Conversational reasoning
  • Prompt orchestration
  • Agentic workflows
  • Multimodal AI applications

Azure AI Foundry

Azure AI Foundry

supports:

  • Prompt flows
  • AI orchestration
  • Agent development
  • Speech-enabled workflows

Multi-Turn Voice Conversations

Voice agents often maintain:

  • Session memory
  • Context history
  • User preferences
  • Intent continuity

This enables natural conversations.


Example Multi-Turn Interaction

User:

Schedule a meeting tomorrow.

Agent:

What time would you like the meeting?

User:

At 2 PM.

The agent remembers context across turns.


Interruptions and Turn-Taking

Advanced voice systems support:

  • Interruptions
  • Natural pauses
  • Barge-in behavior
  • Conversational timing

Custom Speech Models

What Are Custom Speech Models?

Custom speech models are specialized speech recognition systems trained or adapted for:

  • Industry terminology
  • Unique vocabularies
  • Regional accents
  • Domain-specific phrases

Why Custom Speech Models Matter

Generic models may struggle with:

  • Technical jargon
  • Product names
  • Medical terminology
  • Legal language
  • Industry acronyms

Example

Healthcare workflow:

The patient was diagnosed with cardiomyopathy.

A generic model may misrecognize specialized medical terminology.


Benefits of Custom Speech Models

Custom models improve:

  • Recognition accuracy
  • Domain understanding
  • User experience
  • Reduced transcription errors

Common Custom Speech Scenarios

Healthcare

Medical terminology recognition.


Financial Services

Industry acronyms and compliance terms.


Manufacturing

Equipment and technical vocabulary.


Contact Centers

Company-specific product names and workflows.


Training Custom Speech Models

Custom speech workflows often involve:

  1. Collecting audio samples
  2. Providing transcripts
  3. Training speech adaptation models
  4. Evaluating accuracy
  5. Deploying updated models

Data Requirements

Training data may include:

  • Audio recordings
  • Human transcripts
  • Domain vocabulary
  • Pronunciation guidance

Responsible AI Considerations

Speech systems introduce risks including:

  • Bias
  • Accent recognition disparities
  • Privacy concerns
  • Voice impersonation
  • Deepfake misuse

Accent and Dialect Challenges

Speech models may perform differently across:

  • Accents
  • Dialects
  • Speaking styles
  • Background noise conditions

Organizations should test across diverse users.


Privacy and Security

Speech systems may process:

  • PII
  • Financial information
  • Healthcare data
  • Sensitive conversations

Organizations should:

  • Encrypt audio
  • Limit retention
  • Control access
  • Monitor usage

Voice Authentication

Some systems use speaker verification for:

  • Authentication
  • Fraud prevention
  • Secure voice access

Latency Considerations

Low latency is critical for natural voice experiences.

Latency sources include:

  • Audio streaming
  • STT processing
  • LLM inference
  • TTS synthesis
  • Network communication

Reducing Latency

Strategies include:

  • Streaming inference
  • Incremental transcription
  • Optimized prompts
  • Smaller models
  • Edge processing

Monitoring and Observability

Production speech agents should monitor:

  • Recognition accuracy
  • Latency
  • User interruptions
  • Audio quality
  • Hallucinations
  • Failed transcriptions
  • Token usage

Hallucinations in Voice Agents

Voice agents may hallucinate:

  • Incorrect answers
  • Unsupported claims
  • False actions

Grounding and retrieval reduce hallucination risk.


Retrieval-Augmented Generation (RAG)

Speech agents may use:

  • Vector search
  • Enterprise knowledge bases
  • Grounded retrieval

before generating spoken responses.


Multilingual Voice Agents

Modern systems may:

  • Detect spoken language
  • Translate conversations
  • Respond in multiple languages

Example Multilingual Workflow

  1. Detect language
  2. Convert speech to text
  3. Translate content
  4. Generate AI response
  5. Convert response to speech

Real-World Example

A healthcare provider deploys a voice-enabled appointment assistant.

Workflow:

  1. Patient speaks naturally
  2. Custom speech model recognizes medical terminology
  3. Agent retrieves appointment data
  4. AI generates contextual response
  5. Response converted into speech
  6. Conversation securely logged

This demonstrates:

  • Speech modality integration
  • Custom speech models
  • Grounded retrieval
  • Agent orchestration

Best Practices for Speech Agent Integration

Use Streaming Pipelines

Enable responsive real-time conversations.


Customize Speech Models

Improve recognition for domain-specific language.


Ground Responses

Reduce hallucinations using enterprise knowledge.


Monitor Accuracy Across User Groups

Evaluate accents, dialects, and speaking styles.


Secure Audio Data

Protect sensitive conversations and transcripts.


Optimize for Low Latency

Natural interactions require fast response times.


Implement Responsible AI Controls

Reduce misuse and unfair outcomes.


Exam Tips for AI-103

For the AI-103 exam, remember these important concepts:

  • Speech is an important AI agent modality.
  • STT converts spoken language into text.
  • TTS converts text into spoken audio.
  • Azure AI Speech provides speech AI services.
  • Custom speech models improve domain-specific recognition accuracy.
  • Voice agents combine STT, LLM reasoning, and TTS.
  • Streaming pipelines reduce conversational latency.
  • Speech systems should support grounding and retrieval.
  • Responsible AI is critical for speech-enabled systems.
  • Azure AI Foundry supports orchestration of speech workflows.

Practice Exam Questions

Question 1

What is an AI modality?

A. A database indexing method
B. A way users interact with an AI system
C. A firewall configuration
D. A vector compression technique

Answer

B. A way users interact with an AI system

Explanation

Modalities include speech, text, images, and video interactions.


Question 2

What is the role of speech-to-text (STT) in an AI agent?

A. Converting spoken audio into text
B. Generating synthetic speech
C. Encrypting audio streams
D. Compressing prompts

Answer

A. Converting spoken audio into text

Explanation

STT converts spoken language into machine-readable text.


Question 3

What is the purpose of text-to-speech (TTS)?

A. Detecting objects in video
B. Converting text into spoken audio
C. Translating embeddings
D. Encrypting transcripts

Answer

B. Converting text into spoken audio

Explanation

TTS generates synthesized speech from text responses.


Question 4

Which Azure service provides speech AI capabilities?

A. Azure AI Speech
B. Azure Firewall
C. Azure CDN
D. Azure VPN Gateway

Answer

A. Azure AI Speech

Explanation

Azure AI Speech provides speech recognition and synthesis services.


Question 5

Why are custom speech models useful?

A. They reduce storage encryption requirements
B. They eliminate all hallucinations
C. They remove the need for prompts
D. They improve recognition for specialized vocabulary and accents

Answer

D. They improve recognition for specialized vocabulary and accents

Explanation

Custom models improve domain-specific speech recognition accuracy.


Question 6

Which workflow is common in voice AI agents?

A. DNS → Firewall → SQL
B. OCR → CDN → VPN
C. STT → LLM reasoning → TTS
D. Vector compression → load balancing

Answer

C. STT → LLM reasoning → TTS

Explanation

Voice agents convert speech to text, reason over content, then generate spoken responses.


Question 7

What is a major advantage of streaming speech pipelines?

A. Lower conversational latency
B. Reduced accessibility support
C. Eliminated token usage
D. Disabled real-time responses

Answer

A. Lower conversational latency

Explanation

Streaming pipelines improve responsiveness for natural conversations.


Question 8

What is a responsible AI concern related to speech systems?

A. Faster vector indexing
B. Excessive OCR accuracy
C. Accent bias and voice impersonation misuse
D. Semantic compression failures

Answer

C. Accent bias and voice impersonation misuse

Explanation

Speech systems may introduce fairness and misuse risks.


Question 9

Why is grounding important for speech-enabled agents?

A. It removes speech recognition
B. It disables multilingual support
C. It reduces hallucinations and unsupported responses
D. It eliminates latency completely

Answer

C. It reduces hallucinations and unsupported responses

Explanation

Grounding improves response reliability using trusted enterprise knowledge.


Question 10

Which platform supports orchestration of speech-enabled AI workflows?

A. Azure ExpressRoute
B. Azure DNS
C. Azure Load Balancer
D. Azure AI Foundry

Answer

D. Azure AI Foundry

Explanation

Azure AI Foundry supports orchestration and AI workflow management.


Go to the AI-103 Exam Prep Hub main page

Build a lightweight application by using Azure Speech in Foundry Tools (AI-901 Exam Prep)

This post is a part of the AI-901: Microsoft Azure AI Fundamentals Exam Prep Hub. 
This topic falls under these sections:
Implement AI solutions by using Microsoft Foundry (55–60%)
--> Implement AI solutions for text and speech by using Foundry
--> Build a lightweight application by using Azure Speech in Foundry Tools


Note that there are 10 practice questions (with answers and explanations) for each section to help you solidify your knowledge of the material. Also, there are 2 practice tests with 60 questions each available on the hub below the exam topics section.

Speech-enabled AI applications are becoming increasingly common in customer service, accessibility, virtual assistants, and productivity solutions. Microsoft Azure provides speech services that allow developers to add speech recognition and speech synthesis capabilities to lightweight AI applications.

For the AI-901 certification exam, candidates should understand the foundational concepts behind building lightweight speech-enabled applications using Azure Speech and Microsoft Foundry tools.

This topic falls under the “Implement AI solutions for text and speech by using Foundry” section of the AI-901 exam objectives.


What Is Azure AI Speech?

Azure AI Speech is a cloud-based AI service that enables speech-related functionality in applications.

Azure AI Speech supports:

  • Speech recognition
  • Speech synthesis
  • Speech translation
  • Voice generation

What Is a Lightweight Application?

A lightweight application is a simple application designed to perform focused tasks with minimal complexity.

Characteristics include:

  • Simple user interface
  • Fast deployment
  • Lower resource usage
  • Easy maintenance

Examples of Lightweight Speech Applications

Examples include:

  • Voice-enabled chatbots
  • Simple voice assistants
  • Speech-to-text applications
  • Text-to-speech readers
  • Voice-controlled support tools

Azure AI Foundry

Azure AI Foundry provides tools for building, deploying, and testing AI-powered applications.

Developers can:

  • Access AI services
  • Configure models
  • Test applications
  • Manage deployments

Speech Recognition

Speech recognition converts spoken language into text.

This process is commonly called:

  • Speech-to-text (STT)
  • Automatic speech recognition (ASR)

Example

Spoken Input

“Schedule a meeting tomorrow.”

Recognized Text

“Schedule a meeting tomorrow.”


Speech Synthesis

Speech synthesis converts written text into spoken audio.

This process is commonly called:

  • Text-to-speech (TTS)

Example

Text

“Your appointment is confirmed.”

Spoken Output

The application reads the text aloud.


Speech Translation

Speech translation converts spoken language from one language into another.


Example

Spoken English

“Good morning.”

Translated Spanish Audio

“Buenos días.”


Voice Generation

AI systems can generate natural-sounding voices for:

  • Virtual assistants
  • Narration
  • Accessibility
  • Customer service systems

Basic Workflow of a Speech Application

A lightweight speech application commonly follows this workflow:

  1. User speaks into microphone
  2. Application captures audio
  3. Azure Speech processes audio
  4. Speech is converted to text
  5. Application processes text
  6. Optional speech synthesis generates spoken response

Example End-to-End Scenario

User Speaks

“What are today’s weather conditions?”

Speech Service

Converts speech to text

AI Processing

Generates response

Text-to-Speech

Reads response aloud


APIs and Endpoints

Applications communicate with Azure Speech services using:

  • APIs
  • Endpoints

These allow applications to send requests and receive responses programmatically.


Authentication

Applications must securely authenticate before using Azure Speech services.

Common methods include:

  • API keys
  • Azure credentials
  • Managed identities

Common User Interface Components

A lightweight speech application often includes:

  • Microphone input button
  • Text display area
  • Playback controls
  • Response output area

Real-Time Processing

Many speech applications process audio in real time.

This allows conversational experiences with minimal delay.


Streaming Audio

Streaming audio enables continuous processing of speech as users speak.

Benefits include:

  • Faster responses
  • More natural interactions
  • Reduced waiting time

Conversation Context

Some applications preserve context across interactions.

This allows more natural conversations.


Example

User

“Who founded Microsoft?”

User Later

“When was it created?”

The system understands “it” refers to Microsoft.


System Prompts

System prompts guide AI behavior and responses.

They help define:

  • Tone
  • Personality
  • Response style
  • Safety boundaries

Example System Prompt

“You are a friendly virtual assistant.”


Responsible AI Considerations

Speech-enabled applications should follow Responsible AI principles.

Key considerations include:

  • Privacy
  • Security
  • Inclusiveness
  • Transparency
  • Fairness
  • Accountability

Privacy Concerns

Speech systems may process sensitive spoken information.

Organizations should:

  • Secure recordings
  • Protect user conversations
  • Minimize unnecessary data retention

Inclusiveness

Speech applications should support:

  • Different accents
  • Multiple languages
  • Diverse speech patterns
  • Accessibility needs

Transparency

Users should know:

  • AI is processing speech
  • Audio may be analyzed
  • AI-generated responses may contain errors

Hallucinations

Generative AI systems may occasionally generate inaccurate responses.

These inaccuracies are called hallucinations.

Applications should not assume responses are always correct.


Error Handling

Applications should handle:

  • Background noise
  • Recognition errors
  • Authentication failures
  • Network interruptions
  • Rate limits

Background Noise Challenges

Speech recognition accuracy may decrease in:

  • Loud environments
  • Crowded spaces
  • Poor microphone conditions

Rate Limits

Azure AI services may limit request frequency.

Applications should handle throttling gracefully.


Latency

Latency refers to delays between:

  • User speech
  • AI processing
  • Spoken responses

Low latency improves user experience.


Advantages of Speech-Enabled Applications

Benefits include:

  • Natural interaction
  • Hands-free usage
  • Accessibility improvements
  • Faster communication
  • Improved engagement

Limitations of Speech Applications

Challenges include:

  • Accent variability
  • Background noise
  • Recognition inaccuracies
  • Privacy concerns
  • Network dependency

Common Real-World Scenarios


Scenario 1: Voice Assistant

Goal

Allow users to ask spoken questions.

Features

  • Speech recognition
  • Spoken responses
  • Conversational interaction

Scenario 2: Accessibility Tool

Goal

Assist visually impaired users.

Features

  • Text-to-speech
  • Voice commands
  • Audio navigation

Scenario 3: Customer Support Bot

Goal

Provide voice-based support.

Features

  • Real-time speech recognition
  • AI-generated responses
  • Multilingual support

High-Level Application Workflow

A simplified workflow includes:

  1. Capture speech
  2. Convert speech to text
  3. Process request
  4. Generate response
  5. Convert response to speech
  6. Play audio response

Example High-Level Pseudocode

audio = capture_audio()
text = speech_to_text(audio)
response = process_request(text)
speak(response)

For AI-901, understanding the workflow is more important than memorizing exact syntax.


Important AI-901 Exam Tips

For the exam, remember these key points:

  • Azure AI Speech provides speech-related AI services.
  • Speech recognition converts speech to text.
  • Speech synthesis converts text to speech.
  • Azure AI Foundry supports AI application development.
  • APIs and endpoints connect applications to cloud AI services.
  • Authentication secures access to Azure services.
  • Streaming audio supports real-time interaction.
  • Responsible AI principles apply to speech-enabled applications.
  • Inclusiveness is important for diverse speech patterns and accents.
  • Hallucinations are inaccurate AI-generated outputs.

Quick Knowledge Check

Question 1

What does speech recognition do?

Answer

Converts spoken language into text.


Question 2

What does speech synthesis do?

Answer

Converts text into spoken audio.


Question 3

Why is authentication important?

Answer

It secures access to Azure AI services.


Question 4

Why is inclusiveness important in speech applications?

Answer

To support users with different accents, languages, and accessibility needs.


Practice Exam Questions

Question 1

What is the PRIMARY purpose of Azure AI Speech?

A. To manage virtual machines
B. To provide speech-related AI capabilities such as speech recognition and speech synthesis
C. To monitor network hardware
D. To create relational databases


Correct Answer

B. To provide speech-related AI capabilities such as speech recognition and speech synthesis


Explanation

Azure AI Speech provides cloud-based speech services including speech-to-text and text-to-speech capabilities.


Why the Other Answers Are Incorrect

A. To manage virtual machines

Virtual machine management is unrelated to speech AI.

C. To monitor network hardware

Azure AI Speech does not monitor infrastructure devices.

D. To create relational databases

Database creation is unrelated to speech services.


Question 2

What does speech recognition do?

A. Converts speech into text
B. Converts images into speech
C. Detects objects in video
D. Compresses audio files


Correct Answer

A. Converts speech into text


Explanation

Speech recognition, also called speech-to-text, converts spoken language into written text.


Why the Other Answers Are Incorrect

B. Converts images into speech

This is unrelated to speech recognition.

C. Detects objects in video

This is a computer vision task.

D. Compresses audio files

Speech recognition does not perform compression.


Question 3

What does speech synthesis perform?

A. Converts text into spoken audio
B. Detects entities in text
C. Creates spreadsheets automatically
D. Increases internet bandwidth


Correct Answer

A. Converts text into spoken audio


Explanation

Speech synthesis, also called text-to-speech, generates spoken audio from written text.


Why the Other Answers Are Incorrect

B. Detects entities in text

This is a text analysis task.

C. Creates spreadsheets automatically

This is unrelated to speech services.

D. Increases internet bandwidth

Speech synthesis does not affect networking.


Question 4

Which Microsoft platform provides tools for building and managing AI applications?

A. Azure AI Foundry
B. Microsoft Paint
C. Windows Media Player
D. Microsoft Calculator


Correct Answer

A. Azure AI Foundry


Explanation

Azure AI Foundry provides tools for building, testing, deploying, and managing AI solutions.


Why the Other Answers Are Incorrect

B. Microsoft Paint

Paint is a graphics editor.

C. Windows Media Player

This is a media playback application.

D. Microsoft Calculator

This is a utility application.


Question 5

How do lightweight applications typically communicate with Azure AI Speech services?

A. Through APIs and endpoints
B. Through printer drivers only
C. Through USB flash drives
D. Through monitor calibration settings


Correct Answer

A. Through APIs and endpoints


Explanation

Applications use APIs and cloud endpoints to send requests and receive AI-generated responses.


Why the Other Answers Are Incorrect

B. Through printer drivers only

Printer drivers are unrelated to AI services.

C. Through USB flash drives

Cloud AI services use network communication.

D. Through monitor calibration settings

This is unrelated to APIs.


Question 6

Why is authentication important when using Azure AI Speech?

A. To secure access to AI services
B. To improve microphone volume
C. To increase response creativity
D. To remove network latency


Correct Answer

A. To secure access to AI services


Explanation

Authentication helps ensure only authorized users and applications can access Azure AI resources.


Why the Other Answers Are Incorrect

B. To improve microphone volume

Authentication does not affect hardware settings.

C. To increase response creativity

Creativity is controlled through model parameters.

D. To remove network latency

Authentication does not control connection speed.


Question 7

What is a benefit of streaming audio in speech-enabled applications?

A. Faster and more natural interactions
B. Permanent elimination of all speech errors
C. Automatic hardware upgrades
D. Unlimited cloud storage


Correct Answer

A. Faster and more natural interactions


Explanation

Streaming audio enables real-time processing, improving responsiveness and conversational flow.


Why the Other Answers Are Incorrect

B. Permanent elimination of all speech errors

Speech systems can still make mistakes.

C. Automatic hardware upgrades

Streaming does not upgrade hardware.

D. Unlimited cloud storage

Streaming does not affect storage capacity.


Question 8

Which Responsible AI consideration is especially important for speech-enabled applications?

A. Protecting sensitive spoken information
B. Increasing screen brightness
C. Improving printer speed
D. Accelerating video rendering


Correct Answer

A. Protecting sensitive spoken information


Explanation

Speech applications may process personal or confidential audio, making privacy and security important concerns.


Why the Other Answers Are Incorrect

B. Increasing screen brightness

This is unrelated to Responsible AI.

C. Improving printer speed

Printers are unrelated to speech AI.

D. Accelerating video rendering

This is unrelated to speech processing.


Question 9

What challenge can negatively affect speech recognition accuracy?

A. Background noise
B. Spreadsheet formatting
C. Screen resolution
D. Video playback speed


Correct Answer

A. Background noise


Explanation

Loud environments and poor audio quality can reduce speech recognition accuracy.


Why the Other Answers Are Incorrect

B. Spreadsheet formatting

This does not affect speech recognition.

C. Screen resolution

Speech recognition does not depend on display quality.

D. Video playback speed

This is unrelated to speech input processing.


Question 10

What is one advantage of speech-enabled AI applications?

A. Hands-free interaction
B. Guaranteed perfect accuracy
C. Elimination of all privacy concerns
D. Removal of internet requirements


Correct Answer

A. Hands-free interaction


Explanation

Speech-enabled applications allow users to interact naturally without typing.


Why the Other Answers Are Incorrect

B. Guaranteed perfect accuracy

Speech systems can still make errors.

C. Elimination of all privacy concerns

Privacy protections are still necessary.

D. Removal of internet requirements

Cloud-based speech services generally require internet connectivity.


Final Thoughts

Building lightweight applications using Azure Speech in Foundry tools is an important AI-901 exam topic. Microsoft expects candidates to understand how speech-enabled AI applications work, including speech recognition, speech synthesis, APIs, authentication, Responsible AI considerations, and real-time conversational workflows.

Azure AI Speech and Azure AI Foundry provide powerful cloud-based tools that make it easier to create modern voice-enabled AI applications for business, accessibility, and productivity scenarios.


Go to the AI-901 Exam Prep Hub main page