View Full Microsoft AI-200 Exam Dumps and Practice Test Dumps
Question 201
Which Azure AI Search feature allows applications to replace an existing index without changing its name?
- Search analyzer
- Scoring profile
- Skillset
- Index alias
Correct Answer: 4
Explanation:
An index alias provides an abstraction over an Azure AI Search index so applications can reference a stable alias instead of directly depending on a specific index name. This is useful when deploying a new version of an index because the alias can be switched to the replacement index after validation. Search analyzers process text, scoring profiles influence ranking, and skillsets perform enrichment operations. Index aliases can therefore support safer search-index deployment strategies by reducing the need to update application configuration whenever a new index version is introduced.
Question 202
Which Azure AI Search capability returns concise matching passages from documents?
- Semantic captions
- Facet counts
- Query suggestions
- Synonym rules
Correct Answer: 1
Explanation:
Semantic captions in Azure AI Search provide concise passages from matching documents that highlight content relevant to the user’s query. They can help applications present useful context without displaying an entire document. Facet counts summarize categories, query suggestions help users complete searches, and synonym rules expand matching terminology. Semantic captions are particularly useful in AI-powered search interfaces because users can quickly understand why a result is relevant. They can also provide compact textual context for interfaces that display search results before users open the full document.
Question 203
Which Azure Cosmos DB option automatically scales provisioned throughput with demand?
- Manual throughput
- Autoscale throughput
- Fixed capacity
- Reserved capacity
Correct Answer: 2
Explanation:
Cosmos DB autoscale throughput automatically adjusts provisioned throughput within a configured maximum according to workload demand. This can help applications handle changing traffic patterns without continuously maintaining a manually selected throughput level. Manual throughput requires the application owner to adjust capacity, while fixed and reserved capacity represent different capacity-management concepts rather than the autoscaling behavior described. Autoscale can be useful for AI workloads with unpredictable or fluctuating request volumes because it can provide additional capacity during demand peaks while reducing provisioned throughput when demand is lower.
Question 204
Which Cosmos DB capability supports automatic indexing of newly written items?
- Partition routing
- Change feed
- Indexing policy
- Consistency setting
Correct Answer: 3
Explanation:
The Cosmos DB indexing policy determines how item properties are indexed and can be configured to automatically index supported newly written or updated data. Developers can customize indexing behavior to balance query requirements, storage usage, and write performance. Partition routing determines where requests are directed, the change feed exposes item changes, and consistency settings control read guarantees. Proper indexing configuration is important when AI applications frequently query document properties because unnecessary indexing can consume additional resources while missing indexes can limit query capabilities.
Question 205
Which Azure Storage feature stores metadata as name-value pairs on blobs?
- Blob metadata
- Access tier
- Lease state
- Replication status
Correct Answer: 1
Explanation:
Blob metadata allows applications to associate custom name-value information with individual blobs. This metadata can help applications classify or describe stored objects without changing the blob’s main content. Access tiers determine storage pricing and access characteristics, lease state represents coordination information, and replication status describes replication-related behavior. Metadata can be useful in AI document-processing systems where blobs need lightweight application-specific descriptors, such as processing categories, source identifiers, or workflow information that downstream components can inspect.
Question 206
Which Azure Storage capability identifies blobs using custom searchable tags?
- Blob metadata
- Blob index tags
- Access conditions
- Storage snapshots
Correct Answer: 2
Explanation:
Blob index tags provide key-value attributes that can be used to categorize and locate blobs based on application-defined conditions. Unlike ordinary metadata, index tags are designed to support searching across blobs using tag values. Metadata remains associated with a blob but is not intended to provide the same indexed search capability. Access conditions control operation requirements, while snapshots preserve point-in-time blob states. Blob index tags are useful for AI applications that need to locate stored documents based on processing status, classification, source, or other structured attributes.
Question 207
Which Azure Service Bus capability temporarily extends a message lock?
- Lock renewal
- Message forwarding
- Subscription filtering
- Dead-letter routing
Correct Answer: 1
Explanation:
Azure Service Bus lock renewal allows a receiver to extend the lock on a message when processing takes longer than the original lock duration. This helps prevent another receiver from acquiring the message while the current application is still working on it. Message forwarding routes messages to another entity, subscription filtering controls which topic messages are delivered, and dead-letter routing handles messages that cannot be processed normally. Lock renewal is particularly important for AI processing tasks that may require significant time to complete before a message can safely be settled.
Question 208
Which Azure Service Bus feature allows messages to be retrieved later by sequence number?
- Peek
- Complete
- Deferral
- Abandon
Correct Answer: 3
Explanation:
Message deferral in Azure Service Bus allows a receiver to postpone processing a message while keeping it in the queue or subscription. A deferred message can later be retrieved using its sequence number when the application is ready to process it. Peek only inspects messages, Complete settles successfully processed messages, and Abandon releases a message lock for possible redelivery. Deferral is useful when a message cannot currently be processed because a dependency or prerequisite is unavailable but the application still needs to preserve the message for later handling.
Question 209
Which Event Hubs capability writes incoming events to supported storage automatically?
- Consumer group
- Partition key
- Event Hubs Capture
- Checkpoint store
Correct Answer: 3
Explanation:
Event Hubs Capture automatically writes incoming event data to supported storage according to configured capture settings. This provides a convenient way to retain event streams for later processing, analytics, archival, or replay-oriented workflows. Consumer groups provide independent consumption views, partition keys influence event placement, and checkpoint stores track consumer progress. Capture can be valuable for AI and analytics applications that need to retain telemetry or event streams without requiring a custom consumer application solely for copying every event into durable storage.
Question 210
Which Event Grid configuration specifies the endpoint that receives events?
- Topic type
- Event handler
- Retry policy
- Event schema
Correct Answer: 2
Explanation:
An Event Grid event handler identifies the destination that receives delivered events from an event subscription. Depending on the integration, the handler can represent supported Azure services or application endpoints that process incoming events. The topic type identifies the event source category, retry policy controls repeated delivery behavior, and event schema determines the event structure. Correct handler configuration is essential in event-driven architectures because it determines where an event is delivered after Event Grid evaluates the subscription and its filtering conditions.
Question 211
Which Azure Functions binding provides access to a storage queue message?
- Queue input binding
- HTTP output binding
- Blob output binding
- Timer metadata
Correct Answer: 1
Explanation:
A Queue input binding provides Azure Functions with access to messages from Azure Storage Queue without requiring application code to implement the underlying storage access logic directly. Bindings simplify integration between functions and supported Azure services by mapping inputs or outputs to function parameters. An HTTP output binding produces an HTTP response, a Blob output binding writes data to Blob Storage, and timer metadata describes scheduled invocation information. Queue input bindings can simplify AI workflows where background tasks are represented as storage queue messages.
Question 212
Which Azure Functions binding writes function output directly to Blob Storage?
- Queue trigger
- Blob output binding
- HTTP trigger
- Timer trigger
Correct Answer: 2
Explanation:
A Blob output binding allows an Azure Function to write output data to Azure Blob Storage using binding configuration rather than implementing direct storage-client operations for every write. This can simplify functions that generate files, transformed documents, model outputs, or other artifacts. Queue triggers start functions from queue messages, HTTP triggers respond to web requests, and Timer triggers execute according to schedules. Blob output bindings can be especially convenient in AI processing pipelines where function results need to be persisted as files for later retrieval or downstream processing.
Question 213
Which Azure Container Apps feature stores sensitive configuration separately from application code?
- Secrets
- Replicas
- Ingress routes
- Revision labels
Correct Answer: 1
Explanation:
Azure Container Apps secrets provide a mechanism for storing sensitive configuration values separately from ordinary application code and container images. Applications can reference configured secrets when needed rather than embedding sensitive values directly into source code or image layers. Replicas control running application instances, ingress routes manage traffic exposure, and revision labels identify deployed versions. Keeping sensitive values in the platform’s secret mechanism helps reduce the risk of accidentally exposing credentials or connection information through source repositories or container images.
Question 214
Which Azure Container Apps option controls whether ingress is publicly reachable?
- Target port
- Traffic weight
- Ingress visibility
- CPU allocation
Correct Answer: 3
Explanation:
Azure Container Apps ingress configuration determines how an application is exposed and whether it can receive external traffic. Visibility can be configured according to the application’s networking requirements, allowing services to remain internal when public exposure is unnecessary. Target port identifies the application port, traffic weight controls distribution between revisions, and CPU allocation defines compute resources. Proper ingress configuration is important for AI architectures because backend services may need private communication while only selected frontend or API components should be reachable externally.
Question 215
Which Azure Container Registry authentication method uses Microsoft Entra identities?
- Managed identity
- Anonymous pull
- Admin account
- Repository token
Correct Answer: 1
Explanation:
Azure Container Registry supports Microsoft Entra-based authentication through managed identities and other supported identity mechanisms. A managed identity allows an Azure resource to authenticate to the registry without embedding a long-lived username and password in application configuration. Anonymous pull is only applicable when a registry is configured to permit it, an admin account uses registry-level credentials, and repository tokens provide scoped authentication mechanisms. Managed identity authentication is useful for automated Azure workloads that need to pull private container images while minimizing credential-management overhead.
Question 216
Which Azure Monitor feature tests application availability from external locations?
- Metric alert
- Availability test
- Diagnostic rule
- Resource query
Correct Answer: 2
Explanation:
Application Insights availability tests can check whether an application endpoint is reachable and responding as expected from configured test locations. These tests help detect outages or availability problems that might not be visible from internal application telemetry alone. Metric alerts evaluate monitored values against conditions, diagnostic rules manage telemetry collection behavior, and resource queries retrieve resource information. Availability testing is useful for AI applications that expose APIs or web endpoints because it can provide an external perspective on whether those services are accessible to users.
Question 217
Which Azure API Management feature allows a request to be transformed before reaching a backend?
- Policy
- Product
- Subscription
- Certificate
Correct Answer: 1
Explanation:
Azure API Management policies can transform requests before they are forwarded to backend services. Policies support many gateway behaviors, including modifying headers, rewriting URLs, validating requests, transforming content, and applying access controls. Products group APIs, subscriptions provide consumer access credentials and relationships, and certificates support authentication or secure communication scenarios. Request transformation through policies can help AI APIs present a consistent external contract while adapting incoming requests to the specific requirements of backend services.
Question 218
Which Azure API Management feature provides consumers with access credentials for APIs?
- Backend
- Subscription
- Policy fragment
- Revision
Correct Answer: 2
Explanation:
An Azure API Management subscription provides consumers with access to APIs associated with a product and typically includes subscription credentials that can be used when calling protected APIs. Backends define services that receive forwarded requests, policy fragments contain reusable policy logic, and revisions represent versions of an API configuration. Subscriptions provide an organized way to manage API consumer access and can also support monitoring and usage management. They are useful when an AI platform exposes APIs to different applications, teams, or external consumers.
Question 219
Which Azure SQL capability automatically recommends or applies selected performance improvements?
- Query Store
- Automatic tuning
- Firewall rules
- Elastic jobs
Correct Answer: 2
Explanation:
Azure SQL automatic tuning can provide recommendations or automatically apply supported performance optimizations based on observed database behavior and configuration. Depending on the supported scenario, it can help address issues such as inefficient query plans. Query Store records query performance information and helps investigate historical behavior, firewall rules control network access, and elastic jobs coordinate database tasks across multiple databases. Automatic tuning can reduce the amount of manual database optimization required for applications whose workload patterns change over time.
Question 220
Which Azure governance feature assigns metadata for organizing resources?
- Resource tags
- Resource locks
- Policy assignments
- Management groups
Correct Answer: 1
Explanation:
Azure resource tags are name-value metadata labels that can be applied to resources for organization and management. Tags can help categorize resources by application, environment, owner, cost center, or other organizational attributes. Resource locks protect resources from certain modifications, policy assignments apply governance rules, and management groups organize subscriptions into administrative hierarchies. Tags are especially useful for AI environments containing many resources because they can support inventory organization, cost analysis, operational grouping, and automated management processes based on resource metadata.