AI-900 Practice Question: Describe fundamental principles of machine learning on Azure
What is an endpoint in Azure Machine Learning?
⚠ Common exam trap
Test-takers frequently confuse the term 'endpoint' with the final step of training or with data storage, because in other Azure services 'endpoint' can refer to a storage endpoint or a training job output, but in Azure ML it specifically means the deployed model's REST API for inference.
Answer choices
Why each option matters
Answer the question above first, then reveal the full breakdown to understand why each option is right or wrong.
Correct answer & explanation
✓
A deployed ML model accessible via REST API for making predictions
In Azure Machine Learning, an endpoint is a REST API endpoint that exposes a deployed machine learning model for real-time inference. When you deploy a model to an Azure Kubernetes Service (AKS) or Azure Container Instances (ACI) cluster, Azure ML creates a scoring URI that clients can call with HTTP POST requests containing input data, and the endpoint returns predictions. This enables applications to integrate model predictions via standard HTTPS protocol.
Answer analysis
Option-by-option breakdown
For each option: why learners choose it and why it is or isn't the right answer here.
- ✗
A visual dashboard for monitoring model performance
Why it's wrong here
A visual dashboard for monitoring model performance is an observability tool, not an endpoint. In Azure Machine Learning, an endpoint is the HTTP(S) interface that applications call to send new data and receive predictions from a deployed model. Dashboards like Azure Monitor or the studio's model monitoring views display metrics such as accuracy, data drift, or latency, but they do not expose the model for real-time scoring.
- ✓
A deployed ML model accessible via REST API for making predictions
Why this is correct
In Azure Machine Learning, an endpoint represents a deployed model exposed as a REST API service, providing a scoring URI that client applications invoke with JSON payloads. The endpoint handles authentication, request routing, and returns prediction results, making it the live interface between the model and production applications. This is precisely what an endpoint is: a callable inference service, not a training artifact or monitoring view.
- ✗
The final training step that produces a saved model file
Why it's wrong here
The final training step that produces a saved model file describes model serialization or registration, such as saving a pickle file or registering a model in the Azure ML workspace. An endpoint, by contrast, is created only after a model is deployed to a compute target, and it provides a persistent network address for inference requests. The saved model file is a passive artifact; the endpoint actively serves the model to clients.
- ✗
A data storage location for training datasets
Why it's wrong here
A data storage location for training datasets refers to Azure datastores or datasets, which hold and version input data for training and validation. An endpoint, however, is the runtime service that exposes a trained model for inference, not a place where data is stored. While the model may read from storage during training, the endpoint's purpose is to accept new input and return predictions over HTTP.
Go deeper
Related to this question
Learn chapter
Machine Learning Core Concepts
Key term
Azure Machine Learning
Azure Machine Learning is a cloud service for building, training, and deploying machine learning models at scale.
Key term
Machine learning
Machine learning is a branch of artificial intelligence where computers learn patterns from data to make decisions or predictions without being explicitly programmed for every task.
About these practice questions
This AI-900 question is part of Courseiva's 985-question bank — original exam-style content with full explanations and wrong-answer analysis, never real exam questions or exam dumps. Learn why practice questions differ from exam dumps →
JA
Written by Johnson Ajibi, MSc IT Security
Senior Network & Security Engineer · founder of Courseiva
This AI-900 practice question is part of Courseiva's free Microsoft certification practice question bank. Courseiva provides original exam-style practice questions with explanations, topic-based practice, mock exams, readiness tracking, and study analytics to help learners prepare for the AI-900 exam.