Azure AI Fundamentals groups AI workloads into six areas you must recognise: machine learning, computer vision, natural language processing (NLP), knowledge mining/document intelligence, generative AI, and conversational AI (bots/agents). Exam questions often give you a scenario and ask which workload it maps to - learn the trigger words. 'Read text from a scanned form' = document intelligence. 'Detect objects in a photo' = computer vision. 'Summarise customer reviews' = NLP. 'Write a product description from a prompt' = generative AI.
Microsoft defines six responsible AI principles, and the exam expects you to match a scenario to the right one:
Students mix up fairness (bias/equity) with inclusiveness (access/diverse needs) - fairness is about outcomes across groups, inclusiveness is about who can use and benefit from the system. Also watch transparency vs accountability: transparency is about explaining decisions to users, accountability is about who is responsible when things go wrong (governance, human-in-the-loop). Reliability and safety often gets confused with security - reliability is about consistent correct performance, security is about protecting data and systems from harm.
Expect scenario questions where a high-stakes decision (medical, legal, financial) needs human review before acting - that's accountability plus reliability and safety working together. Microsoft's guidance stresses that responsible AI isn't a single checkbox; it spans the whole lifecycle from design through deployment and monitoring.
When a question describes a real-world AI scenario, first identify the workload type, then separately identify which responsible AI principle(s) apply if asked. Don't assume every question wants both - read carefully whether it's asking 'what kind of AI is this' or 'which principle does this violate/support'.
Machine learning (ML) is a subset of AI where a model learns patterns from data instead of being explicitly programmed with rules. The model is trained on historical data, then used to make predictions on new data. In Azure, the core service for building ML models is Azure Machine Learning (Azure ML), accessed via Azure ML Studio.
Every ML project follows roughly the same steps: collect and prepare data, split it into training and validation (test) datasets, select an algorithm, train the model, evaluate its performance with metrics, then deploy it as an endpoint others can call. A common mistake is evaluating a model on the same data it was trained on - this gives falsely high accuracy, which is why a held-out test set matters.
A feature is an input variable used to make a prediction (eg square footage). A label is the known output value used in supervised training (eg the actual sale price). The exam expects you to identify which is which in a scenario.
Azure ML Studio offers a no-code Designer (drag-and-drop pipelines), Automated ML (AutoML, which automatically tries multiple algorithms and picks the best), and Notebooks for full code control using Python SDK. AutoML is the go-to answer for 'build a model quickly with minimal code'.
Azure's computer vision services let you extract information from images and video without training your own models. The two main services are Azure AI Vision (formerly Computer Vision) and Azure AI Custom Vision. There's also Face for face detection/analysis and Azure AI Video Indexer for video.
This is the general-purpose, pre-trained service. Key capabilities:
Use this when the built-in tags don't match your business need - for example spotting a specific defect on a production line, or identifying a particular product. Custom Vision has two project types:
You upload and tag your own training images, then train and publish a model via the Custom Vision portal or SDK. It needs far fewer images than building a model from scratch because it uses transfer learning on top of a pre-trained backbone.
Detects human faces in an image and returns attributes like bounding box, head pose and (with limited access approval) age and emotion. Face identification and verification (matching a face to a known identity) are restricted-access features due to responsible AI concerns - you must apply for approval.
You can create a single Vision resource (billed only for that service) or an Azure AI Services multi-service resource (one key/endpoint covers Vision, Language, Speech etc, useful for prototyping and consolidated billing).
Natural language processing (NLP) is how Azure AI services understand and generate human language - text and speech. For AI-900 the two headline services are Azure AI Language and Azure AI Speech, both part of Azure AI Services (the multi-service resource).
Azure AI Language handles written text tasks (sentiment, key phrases, NER, PII, language detection, CLU, Question Answering). Azure AI Speech handles spoken language tasks (speech-to-text, text-to-speech, translation, speaker recognition). Both can be accessed through a single multi-service Azure AI Services resource or as standalone resources.
Generative AI creates new content - text, images, code, audio - rather than just classifying or predicting from existing data.
Azure OpenAI Service gives you managed, enterprise-grade access to OpenAI's models (GPT, embeddings, DALL-E) inside your own Azure subscription, with Azure's security, networking and compliance wrapped around it.
Don't confuse Azure OpenAI Service (specific OpenAI models via Azure) with Azure AI Studio / Azure AI Foundry (the broader platform for building generative AI apps, including model catalog beyond OpenAI). Also remember DALL-E is for image generation, not Whisper (that's speech) - the exam likes to mix these up.
Azure AI services (formerly Cognitive Services) are pre-built, pre-trained AI models exposed as APIs or SDKs. You call them without training your own model, which makes them the fastest route to adding AI capability to an app.
When you provision in the Azure portal you choose between:
Note: Azure OpenAI and some newer/preview services still need their own dedicated resource — they are not bundled into the multi-service resource.
Microsoft's six Responsible AI principles apply across every Azure AI service: fairness, reliability and safety, privacy and security, inclusiveness, transparency, and accountability. Expect exam questions matching a scenario to one of these six.