Tag: AI

Identify Features of Deep Learning Techniques (AI-900 Exam Prep)

Where This Fits in the Exam

  • Exam Domain: Describe fundamental principles of machine learning on Azure (15–20%)
  • Sub-Domain: Identify common machine learning techniques
  • Topic: Identify features of deep learning techniques

On the AI-900 exam, deep learning questions focus on what makes deep learning distinct, when it is used, and what types of problems it solves well.


What Is Deep Learning?

Deep learning is a subset of machine learning that uses artificial neural networks with multiple layers (deep neural networks) to learn complex patterns in data.

  • Inspired by how the human brain works
  • Uses many layers to extract increasingly abstract features
  • Particularly effective with large and complex datasets

Key exam idea:
Deep learning uses multi-layer neural networks to automatically learn features from data.


Key Features of Deep Learning Techniques

Multi-Layer Neural Networks

Deep learning models consist of:

  • An input layer
  • One or more hidden layers
  • An output layer

Each layer learns progressively more complex representations of the data.

This “depth” is what differentiates deep learning from traditional machine learning models.


Automatic Feature Extraction

Traditional machine learning often requires manual feature engineering.

Deep learning:

  • Automatically learns relevant features
  • Reduces the need for human-designed features
  • Is well-suited for unstructured data

This is a high-frequency exam point.


Works Well with Unstructured Data

Deep learning excels at handling:

  • Images
  • Audio
  • Video
  • Natural language text

These data types are difficult for traditional ML models but ideal for deep neural networks.


Requires Large Amounts of Data

Deep learning models typically:

  • Perform better with large datasets
  • Require significant training data
  • Benefit from increased data volume and variety

On the exam, deep learning is often associated with big data scenarios.


High Computational Requirements

Deep learning models:

  • Require more processing power
  • Often use GPUs for training
  • Take longer to train than simpler models

You don’t need hardware details for AI-900 — just recognize that deep learning is computationally intensive.


Common Deep Learning Use Cases

Computer Vision

  • Image classification
  • Facial recognition
  • Object detection

Natural Language Processing

  • Language translation
  • Sentiment analysis
  • Text generation

Speech Recognition

  • Voice assistants
  • Speech-to-text systems

These scenarios frequently appear in AI-900 questions tied to deep learning.


Deep Learning vs Traditional Machine Learning

This comparison is commonly tested.

AspectTraditional MLDeep Learning
Feature engineeringManualAutomatic
Model complexitySimpler modelsMulti-layer neural networks
Data requirementsSmaller datasetsLarge datasets
Best forStructured dataUnstructured data
Compute needsLowerHigher

Azure Context for AI-900

In Azure, deep learning is commonly associated with:

  • Azure Machine Learning
  • AI services built on deep neural networks
  • Vision, speech, and language workloads

You are not expected to:

  • Build neural networks
  • Choose architectures
  • Write training code

Focus on identifying features and use cases.


Common Exam Traps and Misconceptions

  • ❌ Deep learning is required for all ML problems
  • ❌ Deep learning works best with small datasets
  • ❌ Deep learning requires manual feature selection
  • ✅ Deep learning excels at complex, unstructured data tasks

Key Takeaways for the Exam

  • Deep learning uses multi-layer neural networks
  • It automatically learns features from data
  • It works best with large datasets
  • It is ideal for images, text, audio, and video
  • It requires more computational resources than traditional ML

Go to the Practice Exam Questions for this topic.

Go to the AI-900 Exam Prep Hub main page.

Practice Exam Questions: Identify Features of the Transformer Architecture (AI-900 Exam Prep)

Practice Exam Questions


Question 1

What is the primary purpose of the self-attention mechanism in a Transformer model?

A. To reduce the size of the training dataset
B. To allow the model to focus on relevant parts of the input sequence
C. To replace the need for training data
D. To process words strictly in order

Correct Answer: B

Explanation:
Self-attention enables a Transformer to determine which words in a sentence are most relevant to one another, improving context understanding. It does not enforce strict order or reduce dataset size.


Question 2

Which feature allows Transformers to be trained more efficiently than recurrent neural networks (RNNs)?

A. Sequential word processing
B. Parallel processing of input data
C. Manual feature engineering
D. Rule-based language models

Correct Answer: B

Explanation:
Transformers process entire sequences in parallel, unlike RNNs that process tokens sequentially. This makes Transformers faster and more scalable.


Question 3

A key reason Transformers require positional encoding is because they:

A. Use convolutional layers
B. Process all input tokens at the same time
C. Rely on labeled data only
D. Perform unsupervised learning

Correct Answer: B

Explanation:
Because Transformers process words in parallel, positional encoding is needed to preserve information about word order in a sentence.


Question 4

Which type of AI workload most commonly uses Transformer-based models?

A. Time-series forecasting
B. Natural language processing
C. Image compression
D. Robotics control systems

Correct Answer: B

Explanation:
Transformers are primarily used for NLP tasks such as translation, summarization, and conversational AI.


Question 5

Which statement best describes the encoder–decoder architecture used in many Transformer models?

A. Both components generate output text
B. The encoder understands input, and the decoder generates output
C. The decoder trains the encoder
D. Both components store training data

Correct Answer: B

Explanation:
The encoder processes and understands the input sequence, while the decoder generates the output sequence based on that understanding.


Question 6

Why are Transformers better at handling long-range dependencies in text compared to earlier models?

A. They use fewer parameters
B. They rely on handcrafted grammar rules
C. They use attention to relate all words in a sequence
D. They process words one at a time

Correct Answer: C

Explanation:
Self-attention allows Transformers to evaluate relationships between all words in a sentence, regardless of distance.


Question 7

Which Azure scenario is most likely to involve a Transformer-based model?

A. Predicting tomorrow’s stock price
B. Detecting network hardware failures
C. Translating text between languages
D. Calculating average sales per region

Correct Answer: C

Explanation:
Language translation is a classic NLP task that relies heavily on Transformer architectures.


Question 8

What is a major advantage of Transformers over traditional sequence models?

A. They require no training data
B. They eliminate bias automatically
C. They improve scalability and performance
D. They work only with structured data

Correct Answer: C

Explanation:
Transformers scale efficiently due to parallel processing and attention mechanisms, improving performance on large datasets.


Question 9

Which statement about Transformers is TRUE?

A. They are rule-based AI systems
B. They process data strictly sequentially
C. They are a type of deep learning model
D. They are limited to image recognition

Correct Answer: C

Explanation:
Transformers are deep learning architectures commonly used for NLP tasks.


Question 10

Which feature enables a Transformer model to understand the context of a word based on surrounding words?

A. Positional encoding
B. Tokenization
C. Self-attention
D. Data labeling

Correct Answer: C

Explanation:
Self-attention allows the model to weigh the importance of surrounding words when interpreting meaning and context.


Quick Exam Tip

If you see keywords like:

  • attention
  • context
  • parallel processing
  • language understanding
  • Azure OpenAI

You’re almost certainly dealing with a Transformer-based model.


Go to the AI-900 Exam Prep Hub main page.

Describe How Training and Validation Datasets Are Used in Machine Learning (AI-900 Exam Prep)

This section of the AI-900: Microsoft Azure AI Fundamentals exam focuses on understanding how machine learning models learn from data and how their performance is evaluated. Specifically, it covers the role of training datasets and validation datasets, which are core concepts in supervised machine learning.

This topic appears under: Describe fundamental principles of machine learning on Azure (15–20%) → Describe core machine learning concepts

You are not expected to build or tune models for AI-900, but you must be able to describe the purpose of training and validation datasets and how they differ.


Why Datasets Are Split in Machine Learning

In machine learning, using the same data to both train and evaluate a model can lead to misleading results. To avoid this, datasets are commonly split into separate subsets, each with a distinct purpose.

At a minimum, most machine learning workflows use:

  • A training dataset
  • A validation dataset

These datasets help ensure that a model can generalize to new, unseen data.


Training Dataset

A training dataset is the portion of data used to teach the machine learning model how to make predictions.

Key Characteristics of Training Data

  • Contains both features and labels (in supervised learning)
  • Used to identify patterns and relationships in the data
  • Typically makes up the largest portion of the dataset

What Happens During Training

  • The model makes predictions using the features
  • Predictions are compared to the known labels
  • The model adjusts its internal parameters to reduce errors

In Azure Machine Learning, this is the phase where the model “learns” from historical data.


Validation Dataset

A validation dataset is used to evaluate how well the model performs on unseen data during the training process.

Key Characteristics of Validation Data

  • Separate from the training dataset
  • Contains features and labels
  • Used to assess model accuracy and generalization

Why Validation Data Is Important

  • Helps detect overfitting (when a model memorizes training data)
  • Provides an unbiased evaluation of model performance
  • Supports decisions about model selection or improvement

For AI-900, the key idea is that validation data is not used to train the model, only to evaluate it.


Training vs Validation: Key Differences

AspectTraining DatasetValidation Dataset
Primary purposeTeach the modelEvaluate the model
Used to adjust model parametersYesNo
Seen by the model during learningYesNo
Helps detect overfittingIndirectlyYes

Understanding this distinction is essential for AI-900 exam questions.


Common Data Split Ratios

While AI-900 does not test exact percentages, common industry practices include:

  • 70% training / 30% validation
  • 80% training / 20% validation

The exact split depends on dataset size and use case, but the concept is what matters for the exam.


Example Scenario

A company is building a model to predict whether customers will cancel a subscription.

  • Training dataset:
    • Used to teach the model using historical customer behavior and known outcomes
  • Validation dataset:
    • Used to test how accurately the model predicts cancellations for customers it has not seen before

This approach helps ensure the model performs well in real-world scenarios.


Overfitting and Generalization

One of the main reasons for using a validation dataset is to avoid overfitting.

  • Overfitting occurs when a model performs well on training data but poorly on new data
  • Validation data helps confirm that the model can generalize beyond the training set

For AI-900, you only need to recognize this relationship, not the mathematical details.


Azure Context for AI-900

In Azure Machine Learning:

  • Training data is used to train machine learning models
  • Validation data is used to evaluate model performance during development
  • This separation supports reliable and responsible AI solutions

Exam Tips for AI-900

  • If the question mentions learning or adjusting the model, think training dataset
  • If the question mentions evaluation or performance on unseen data, think validation dataset
  • Validation data is not used to teach the model
  • AI-900 focuses on understanding why datasets are separated

Key Takeaways

  • Training datasets are used to teach machine learning models
  • Validation datasets are used to evaluate model performance
  • Separating datasets helps prevent overfitting
  • Understanding these roles is a core AI-900 exam skill

Go to the Practice Exam Questions for this topic.

Go to the AI-900 Exam Prep Hub main page.

Practice Questions: Describe Capabilities of Automated Machine Learning (AI-900 Exam Prep)

Practice Exam Questions


Question 1

What is the primary purpose of Automated Machine Learning (AutoML) in Azure?

A. To replace data scientists
B. To automatically label data
C. To select and optimize machine learning models
D. To deploy models without evaluation

Correct Answer: C

Explanation:
AutoML automatically selects algorithms and tunes parameters to identify the best-performing model for a given dataset.


Question 2

Which machine learning scenarios are supported by Azure Automated Machine Learning?

A. Clustering only
B. Regression and classification
C. Reinforcement learning
D. Rule-based automation

Correct Answer: B

Explanation:
AutoML supports supervised learning scenarios such as regression and classification, which are core to AI-900.


Question 3

How does AutoML reduce the need for deep machine learning expertise?

A. By eliminating the need for training data
B. By automatically selecting models and hyperparameters
C. By generating business requirements
D. By replacing human oversight

Correct Answer: B

Explanation:
AutoML handles model selection and hyperparameter tuning automatically, reducing manual effort and expertise requirements.


Question 4

Which task is handled automatically by Azure AutoML?

A. Defining business objectives
B. Cleaning poor-quality data
C. Hyperparameter tuning
D. Approving model deployment

Correct Answer: C

Explanation:
AutoML automatically adjusts hyperparameters to improve model performance.


Question 5

A team wants to quickly build a sales forecasting model with minimal manual configuration.
Which Azure capability should they use?

A. Azure Cognitive Services
B. Azure Bot Service
C. Automated Machine Learning
D. Azure Logic Apps

Correct Answer: C

Explanation:
AutoML is designed to quickly build supervised ML models, including time-series forecasting.


Question 6

Which statement about Automated Machine Learning is TRUE?

A. AutoML guarantees perfect model accuracy
B. AutoML removes the need for human review
C. AutoML compares multiple models automatically
D. AutoML works only with unlabeled data

Correct Answer: C

Explanation:
AutoML evaluates and compares multiple models to identify the best-performing option.


Question 7

Which Azure service provides Automated Machine Learning capabilities?

A. Azure Functions
B. Azure Machine Learning
C. Azure App Service
D. Azure Synapse Analytics

Correct Answer: B

Explanation:
Automated Machine Learning is a feature within Azure Machine Learning.


Question 8

What is a key benefit of using AutoML?

A. Manual feature engineering
B. Faster model development
C. Elimination of data preparation
D. Guaranteed regulatory compliance

Correct Answer: B

Explanation:
AutoML speeds up model development by automating model selection, tuning, and evaluation.


Question 9

Which of the following is NOT a capability of Automated Machine Learning?

A. Automatic model evaluation
B. Automatic algorithm selection
C. Automatic business decision-making
D. Hyperparameter tuning

Correct Answer: C

Explanation:
AutoML supports model creation and evaluation but does not make business decisions.


Question 10

Why is Automated Machine Learning especially useful for beginners?

A. It removes the need for labeled data
B. It eliminates model deployment steps
C. It simplifies model creation and experimentation
D. It replaces Azure Machine Learning

Correct Answer: C

Explanation:
AutoML simplifies experimentation by automating many steps involved in building machine learning models.


Exam Strategy Tip

On AI-900, think of AutoML as a productivity accelerator:

  • You provide the data and goal
  • AutoML handles model selection, tuning, and evaluation
  • Humans still review and deploy the model

If a question mentions automatic selection, minimal configuration, or quick model building, the answer is might be related to Automated Machine Learning.


Go to the AI-900 Exam Prep Hub main page.

Practice Questions: Identify Features of Image Classification Solutions (AI-900 Exam Prep)

Practice Questions


Question 1

A company wants to automatically categorize uploaded photos as landscape, food, or people. The location of objects in the image is not required. Which computer vision solution should be used?

A. Object detection
B. Image segmentation
C. Image classification
D. Facial recognition

Correct Answer: C

Explanation:
Image classification assigns one or more labels to an entire image without identifying object locations.


Question 2

Which output is typically returned by an image classification model?

A. Bounding boxes and coordinates
B. Pixel-level masks
C. Labels with confidence scores
D. Audio transcripts

Correct Answer: C

Explanation:
Image classification returns labels that describe the image, usually with confidence or probability scores.


Question 3

Which scenario is the best fit for image classification?

A. Counting the number of people in an image
B. Identifying where objects appear in an image
C. Determining whether an image contains a cat or a dog
D. Tracking a moving object in a video

Correct Answer: C

Explanation:
Image classification is ideal when determining what is in the image, not where it appears.


Question 4

Which Azure service allows you to train a custom image classification model using labeled images?

A. Azure AI Vision
B. Azure OpenAI
C. Azure AI Custom Vision
D. Azure Cognitive Search

Correct Answer: C

Explanation:
Azure AI Custom Vision enables training custom image classification models using user-provided labeled datasets.


Question 5

What is a key difference between image classification and object detection?

A. Image classification requires training; object detection does not
B. Image classification identifies object locations
C. Object detection assigns labels only
D. Image classification analyzes the entire image

Correct Answer: D

Explanation:
Image classification evaluates the whole image and assigns labels, while object detection also locates objects using bounding boxes.


Question 6

Which Azure service provides prebuilt image classification capabilities without requiring model training?

A. Azure AI Custom Vision
B. Azure AI Vision
C. Azure Machine Learning
D. Azure Blob Storage

Correct Answer: B

Explanation:
Azure AI Vision offers prebuilt computer vision models that can classify images without custom training.


Question 7

An image classification solution returns a confidence score of 0.95 for the label Animal. What does this indicate?

A. The model has been retrained
B. The label is incorrect
C. The model is highly confident in the prediction
D. The image contains multiple objects

Correct Answer: C

Explanation:
Confidence scores indicate how certain the model is about its prediction.


Question 8

Which requirement would make image classification insufficient as a solution?

A. Categorizing images by content
B. Identifying whether images contain people
C. Locating objects within an image
D. Tagging images with labels

Correct Answer: C

Explanation:
Image classification does not provide spatial location data. Object detection would be required instead.


Question 9

Which type of machine learning model is most commonly used for image classification?

A. Decision trees
B. Linear regression
C. Convolutional neural networks
D. K-means clustering

Correct Answer: C

Explanation:
Convolutional neural networks (CNNs) are widely used for image classification due to their effectiveness with visual data.


Question 10

Which phrase in an exam question is the strongest indicator that image classification is the correct solution?

A. “Identify and count objects”
B. “Detect faces and emotions”
C. “Assign a category to an image”
D. “Draw bounding boxes”

Correct Answer: C

Explanation:
Keywords such as classify, label, or categorize strongly indicate image classification.


Final AI-900 Exam Reminders

  • Image classification = labels, not locations
  • Prebuilt models → Azure AI Vision
  • Custom labels → Azure AI Custom Vision
  • Watch for exam “traps” involving bounding boxes

Go to the AI-900 Exam Prep Hub main page.

Practice Questions: Identify Features and Uses for Key Phrase Extraction (AI-900 Exam Prep)

Practice Questions


Question 1

A company wants to automatically identify the main topics discussed in thousands of customer reviews without determining whether the reviews are positive or negative.

Which NLP capability should be used?

A. Sentiment analysis
B. Language detection
C. Key phrase extraction
D. Entity recognition

Correct Answer: C

Explanation:
Key phrase extraction identifies important topics and concepts in text without analyzing emotional tone, making it ideal for summarizing review content.


Question 2

Which output is most likely returned by a key phrase extraction service?

A. A sentiment score between –1 and 1
B. A list of important words or short phrases
C. A detected language code
D. A classification label

Correct Answer: B

Explanation:
Key phrase extraction returns a list of relevant words or phrases that summarize the main ideas of the text.


Question 3

Which Azure service provides key phrase extraction using prebuilt models?

A. Azure Machine Learning
B. Azure AI Vision
C. Azure AI Language
D. Azure Cognitive Search

Correct Answer: C

Explanation:
Key phrase extraction is part of Azure AI Language, which offers prebuilt NLP models accessible via APIs.


Question 4

A support team wants to automatically tag incoming support tickets with topics such as billing, login issues, or performance.

Which NLP capability should they use?

A. Named entity recognition
B. Key phrase extraction
C. Sentiment analysis
D. Speech-to-text

Correct Answer: B

Explanation:
Key phrase extraction identifies important topics in unstructured text, making it suitable for tagging and categorization.


Question 5

Which scenario is NOT a typical use of key phrase extraction?

A. Summarizing the main topics of documents
B. Improving document search and indexing
C. Detecting the emotional tone of text
D. Identifying trending discussion topics

Correct Answer: C

Explanation:
Detecting emotional tone is handled by sentiment analysis, not key phrase extraction.


Question 6

Which statement best describes key phrase extraction for the AI-900 exam?

A. It requires labeled training data
B. It extracts names and dates only
C. It uses pretrained models on unstructured text
D. It classifies text into predefined categories

Correct Answer: C

Explanation:
Key phrase extraction uses pretrained NLP models and works directly on unstructured text without training.


Question 7

A multinational company wants to extract key topics from documents written in multiple languages.

Which feature of Azure AI Language supports this requirement?

A. Custom model training
B. Multi-language support
C. Facial recognition
D. Object detection

Correct Answer: B

Explanation:
Azure AI Language supports multiple languages for key phrase extraction, enabling global text analysis.


Question 8

Which NLP capability focuses on identifying specific items such as names, locations, and dates?

A. Key phrase extraction
B. Sentiment analysis
C. Language detection
D. Entity recognition

Correct Answer: D

Explanation:
Entity recognition extracts specific entities, while key phrase extraction focuses on main topics and concepts.


Question 9

A business wants to quickly understand what large volumes of text are about, without reading every document.

Which benefit of key phrase extraction addresses this need?

A. Emotion detection
B. Automatic topic identification
C. Speech recognition
D. Image analysis

Correct Answer: B

Explanation:
Key phrase extraction automatically identifies important topics, allowing rapid understanding of large text collections.


Question 10

Which responsible AI consideration is most relevant when using key phrase extraction?

A. Identity verification
B. Avoiding misinterpretation of extracted phrases
C. Biometric data protection
D. Facial bias detection

Correct Answer: B

Explanation:
Key phrase extraction outputs are contextual summaries, so users must avoid treating them as definitive conclusions.


Exam Tip Recap 🔑

Often paired with search, tagging, and trend analysis

Key phrase extraction = What is this text about?

It does not analyze sentiment

Uses prebuilt models in Azure AI Language


Go to the AI-900 Exam Prep Hub main page.

Identify Features and Uses for Key Phrase Extraction (AI-900 Exam Prep)

Overview

Key phrase extraction is a Natural Language Processing (NLP) capability that identifies the main topics or important terms within unstructured text. In the context of the AI-900: Microsoft Azure AI Fundamentals exam, you are expected to understand what key phrase extraction does, when to use it, and how it differs from other NLP workloads.

In Azure, key phrase extraction is provided through Azure AI Language using prebuilt models, requiring no custom training.


What Is Key Phrase Extraction?

Key phrase extraction answers the question:

“What is this text mainly about?”

It analyzes text and returns a list of relevant words or short phrases that summarize the core ideas.

Example:

“Azure AI provides cloud-based artificial intelligence services for developers.”

Extracted key phrases might include:

  • Azure AI
  • artificial intelligence services
  • cloud-based
  • developers

Core Features of Key Phrase Extraction

1. Automatic Topic Identification

The service automatically identifies:

  • Important concepts
  • Repeated or emphasized terms
  • Meaningful noun phrases

This helps users quickly understand large volumes of text.


2. Works with Unstructured Text

Key phrase extraction can be applied to:

  • Customer reviews
  • Support tickets
  • Emails
  • Social media posts
  • Articles and documents

No formatting or labeling is required.


3. Prebuilt NLP Models

For AI-900 purposes:

  • No model training is required
  • No labeled datasets are needed
  • The service is accessed via API calls or SDKs

This makes it ideal for rapid implementation.


4. Multi-Language Support

Azure AI Language supports multiple languages for key phrase extraction, making it suitable for global applications.


Common Use Cases

Summarizing Customer Feedback

Organizations can extract key phrases from thousands of customer comments to identify:

  • Common complaints
  • Popular features
  • Emerging issues

Search and Indexing

Key phrases can be used to:

  • Improve document search
  • Tag content automatically
  • Enhance content discoverability

Trend and Topic Analysis

By aggregating extracted phrases, businesses can:

  • Identify trending topics
  • Monitor brand mentions
  • Analyze public sentiment themes

Key Phrase Extraction vs Other NLP Workloads

NLP CapabilityPrimary Purpose
Key phrase extractionIdentify main topics in text
Sentiment analysisDetermine emotional tone
Language detectionIdentify the language used
Entity recognitionExtract specific entities (names, dates, locations)

Understanding these distinctions is critical for AI-900 exam questions.


Typical AI-900 Exam Scenarios

You may see questions describing:

  • Analyzing large amounts of feedback text
  • Automatically tagging documents
  • Identifying main discussion points without understanding emotion

Correct answers will reference:

  • Key phrase extraction
  • Azure AI Language
  • Prebuilt NLP models

Responsible AI Considerations

Although key phrase extraction does not directly analyze people, responsible usage still includes:

  • Avoiding misinterpretation of extracted phrases
  • Understanding that output is contextual, not definitive
  • Using extracted phrases as decision support, not final judgment

Key Takeaways for the AI-900 Exam

  • Key phrase extraction identifies important topics, not sentiment
  • It works on unstructured text
  • It uses pretrained models in Azure AI Language
  • It complements other NLP workloads rather than replacing them

A strong grasp of when to use key phrase extraction will help you confidently answer AI-900 questions related to Natural Language Processing workloads.


Go to the Practice Exam Questions for this topic.

Go to the AI-900 Exam Prep Hub main page.

Practice Questions: Identify features and uses for sentiment analysis (AI-900 Exam Prep)

Practice Questions


Question 1

What is the primary purpose of sentiment analysis in Natural Language Processing?

A. To identify people, places, and organizations in text
B. To determine the emotional tone of text
C. To translate text between languages
D. To summarize large documents

Correct Answer: B

Explanation:
Sentiment analysis evaluates the emotional tone or opinion expressed in text, such as positive, negative, neutral, or mixed. Entity recognition, translation, and summarization are different NLP tasks.


Question 2

Which Azure service provides sentiment analysis capabilities?

A. Azure Machine Learning
B. Azure AI Vision
C. Azure AI Language
D. Azure Cognitive Search

Correct Answer: C

Explanation:
Sentiment analysis is part of Azure AI Language, which provides pretrained NLP models for analyzing text sentiment, key phrases, entities, and more.


Question 3

A company wants to analyze customer reviews to determine whether feedback is positive or negative. Which AI capability should they use?

A. Key phrase extraction
B. Sentiment analysis
C. Entity recognition
D. Language detection

Correct Answer: B

Explanation:
Sentiment analysis is designed to classify text based on emotional tone, making it ideal for customer reviews and feedback analysis.


Question 4

Which sentiment classifications can Azure AI Language return?

A. Happy, Sad, Angry
B. Positive, Negative, Neutral, Mixed
C. True, False, Unknown
D. Approved, Rejected, Pending

Correct Answer: B

Explanation:
Azure sentiment analysis classifies text into positive, negative, neutral, or mixed sentiments.


Question 5

Which additional information is returned with sentiment analysis results?

A. Translation accuracy
B. Confidence scores
C. Named entities
D. Text summaries

Correct Answer: B

Explanation:
Sentiment analysis includes confidence scores, indicating how strongly the model believes the sentiment classification applies.


Question 6

A support team wants to automatically identify angry customer emails for escalation. Which NLP feature is most appropriate?

A. Entity recognition
B. Key phrase extraction
C. Sentiment analysis
D. Language detection

Correct Answer: C

Explanation:
Sentiment analysis helps detect negative or frustrated emotions, enabling automated prioritization of customer support requests.


Question 7

Which scenario is NOT an appropriate use case for sentiment analysis?

A. Measuring public opinion on social media
B. Identifying dissatisfaction in survey responses
C. Extracting product names from reviews
D. Monitoring brand perception

Correct Answer: C

Explanation:
Extracting product names is a task for entity recognition, not sentiment analysis.


Question 8

Does sentiment analysis in Azure AI Language require custom model training?

A. Yes, labeled data is required
B. Yes, but only for large datasets
C. No, it uses pretrained models
D. Only when using multiple languages

Correct Answer: C

Explanation:
Azure AI Language uses pretrained models, allowing sentiment analysis without building or training custom machine learning models.


Question 9

At which levels can sentiment analysis be applied?

A. Document level only
B. Sentence level only
C. Word level only
D. Document and sentence level

Correct Answer: D

Explanation:
Azure sentiment analysis evaluates sentiment at both the document level and sentence level, allowing more detailed insights.


Question 10

A business wants to understand how customers feel about a product, not what the product is. Which NLP capability should be used?

A. Key phrase extraction
B. Entity recognition
C. Sentiment analysis
D. Language detection

Correct Answer: C

Explanation:
Sentiment analysis focuses on emotional tone, while key phrase extraction and entity recognition focus on content and structure.


Final Exam Tip 🎯

For AI-900, always ask yourself:

“Am I being asked about emotion or opinion?”

If the answer is yes → Sentiment analysis


Go to the AI-900 Exam Prep Hub main page.

Identify Features and Uses for Sentiment Analysis (AI-900 Exam Prep)

Overview

Sentiment analysis is a Natural Language Processing (NLP) capability that determines the emotional tone or opinion expressed in text. In the context of the AI-900 exam, sentiment analysis is tested as a foundational NLP workload and is typically associated with scenarios involving customer feedback, reviews, social media posts, and support interactions.

On Azure, sentiment analysis is provided through Azure AI Language, which offers pretrained models that can analyze text without requiring machine learning expertise.


What Is Sentiment Analysis?

Sentiment analysis evaluates text to identify:

  • Overall sentiment (positive, negative, neutral, or mixed)
  • Confidence scores indicating how strongly the sentiment is expressed
  • Sentence-level sentiment (in addition to document-level sentiment)
  • Opinion mining (identifying sentiment about specific aspects, at a high level)

Example:

“The product works great, but the delivery was slow.”

Sentiment analysis can identify:

  • Positive sentiment about the product
  • Negative sentiment about the delivery
  • An overall mixed sentiment for the entire text

Azure Service Used for Sentiment Analysis

Sentiment analysis is a feature of:

Azure AI Language

Part of Azure AI Services, Azure AI Language provides several NLP capabilities, including:

  • Sentiment analysis
  • Key phrase extraction
  • Entity recognition
  • Language detection

For AI-900:

  • No custom model training is required
  • Prebuilt models are used
  • Text can be analyzed via REST APIs or SDKs

Key Features of Sentiment Analysis

1. Sentiment Classification

Text is classified into:

  • Positive
  • Negative
  • Neutral
  • Mixed

This classification applies at both:

  • Document level
  • Sentence level

2. Confidence Scores

Each sentiment classification includes a confidence score, indicating how strongly the model believes the sentiment applies.

Example:

  • Positive: 0.92
  • Neutral: 0.05
  • Negative: 0.03

Higher confidence scores indicate stronger sentiment.


3. Multi-Language Support

Azure AI Language supports sentiment analysis across multiple languages, making it suitable for global applications.


4. Pretrained Models

Sentiment analysis:

  • Uses pretrained AI models
  • Requires no labeled data
  • Can be implemented quickly

This aligns with the AI-900 focus on using AI services rather than building models.


Common Use Cases for Sentiment Analysis

1. Customer Feedback Analysis

Analyze:

  • Product reviews
  • Surveys
  • Net Promoter Score (NPS) comments

Goal: Understand customer satisfaction trends at scale.


2. Social Media Monitoring

Organizations analyze social media posts to:

  • Track brand perception
  • Identify emerging issues
  • Measure reaction to announcements or campaigns

3. Support Ticket Prioritization

Sentiment analysis can help:

  • Identify frustrated or angry customers
  • Escalate negative interactions automatically
  • Improve response times

4. Market Research

Sentiment analysis helps companies understand:

  • Public opinion about competitors
  • Trends in consumer sentiment
  • Product reception after launch

What Sentiment Analysis Is NOT Used For

This distinction is commonly tested on the exam.

TaskCorrect Capability
Extract names or datesEntity recognition
Identify important topicsKey phrase extraction
Translate textTranslation
Detect emotional toneSentiment analysis

Sentiment Analysis vs Related NLP Features

Sentiment Analysis vs Key Phrase Extraction

  • Sentiment analysis: How does the user feel?
  • Key phrase extraction: What is the text about?

Sentiment Analysis vs Entity Recognition

  • Sentiment analysis: Emotional tone
  • Entity recognition: Specific items (people, places, dates)

AI-900 Exam Tips 💡

  • Focus on when to use sentiment analysis, not how to implement it
  • Expect scenario-based questions (customer reviews, feedback, tweets)
  • Remember: Sentiment analysis is part of Azure AI Language
  • No training, tuning, or ML pipelines are required for AI-900

Summary

Sentiment analysis is a core NLP workload that enables organizations to automatically evaluate opinions and emotions in text. For the AI-900 exam, you should understand:

  • What sentiment analysis does
  • Common real-world use cases
  • How it differs from other NLP features
  • That it is delivered through Azure AI Language using pretrained models

Go to the Practice Exam Questions for this topic.

Go to the AI-900 Exam Prep Hub main page.

Practice Questions: Identify Features and Uses for Speech Recognition and Synthesis (AI-900 Exam Prep)

Practice Questions


Question 1

A company wants to convert recorded customer support calls into written transcripts for analysis.
Which NLP workload is required?

A. Speech synthesis
B. Language modeling
C. Speech recognition
D. Text translation

Correct Answer: C

Explanation:
Speech recognition converts spoken audio into text. Transcribing recorded calls is a classic speech recognition scenario.


Question 2

An application reads incoming emails aloud to visually impaired users.
Which capability does this require?

A. Speech recognition
B. Speech synthesis
C. Key phrase extraction
D. Sentiment analysis

Correct Answer: B

Explanation:
Speech synthesis converts text into spoken audio, making it ideal for reading text aloud.


Question 3

Which Azure service provides both speech-to-text and text-to-speech capabilities?

A. Azure AI Language
B. Azure AI Vision
C. Azure AI Speech
D. Azure Machine Learning

Correct Answer: C

Explanation:
Azure AI Speech supports both speech recognition (speech-to-text) and speech synthesis (text-to-speech).


Question 4

A voice-controlled virtual assistant must understand spoken commands from users.
Which NLP workload does this scenario require?

A. Text analytics
B. Speech synthesis
C. Speech recognition
D. Language translation

Correct Answer: C

Explanation:
Understanding spoken commands requires converting speech into text, which is speech recognition.


Question 5

A chatbot responds verbally to users after processing their requests.
Which capability enables the chatbot to speak its responses?

A. Speech recognition
B. Speech synthesis
C. Entity recognition
D. Language detection

Correct Answer: B

Explanation:
Speech synthesis generates spoken audio from text, enabling verbal responses.


Question 6

Which input and output combination correctly describes speech recognition?

A. Text input → Audio output
B. Audio input → Text output
C. Text input → Text output
D. Audio input → Audio output

Correct Answer: B

Explanation:
Speech recognition takes audio input and produces text output.


Question 7

Which scenario uses both speech recognition and speech synthesis?

A. Extracting key phrases from a document
B. Translating text from English to Spanish
C. A voice assistant that listens and responds verbally
D. Analyzing customer sentiment in reviews

Correct Answer: C

Explanation:
A voice assistant listens (speech recognition) and speaks back (speech synthesis), using both capabilities together.


Question 8

A system generates natural-sounding voices with adjustable pitch and speed.
Which technology is being used?

A. Speech recognition
B. Language modeling
C. Speech synthesis
D. Optical character recognition

Correct Answer: C

Explanation:
Speech synthesis creates spoken audio and can adjust voice characteristics such as pitch and speed.


Question 9

Which phrase in a question most strongly indicates a speech recognition workload?

A. “Identify important terms in a document”
B. “Analyze the emotional tone of text”
C. “Convert spoken instructions into written commands”
D. “Generate audio from text responses”

Correct Answer: C

Explanation:
Converting spoken instructions into text is speech recognition.


Question 10

Which Azure NLP workload is most appropriate for real-time meeting transcription?

A. Speech synthesis
B. Speech recognition
C. Entity recognition
D. Language detection

Correct Answer: B

Explanation:
Real-time transcription requires converting live audio into text, which is speech recognition.


Final Exam Tips

  • Speech → Text = Speech recognition
  • Text → Speech = Speech synthesis
  • Voice assistants usually require both
  • Azure service to remember: Azure AI Speech
  • Watch for keywords like:
    • Transcribe, dictate, spoken commands → Recognition
    • Read aloud, generate voice, spoken response → Synthesis

Go to the AI-900 Exam Prep Hub main page.