View Full Microsoft AI-200 Exam Dumps and Practice Test Dumps
Question 241
Which Azure AI Search field type stores embedding vectors?
- Collection(Edm.Single)
- Edm.String
- Edm.Int64
- Edm.Boolean
Correct Answer: 1
Explanation:
Azure AI Search vector fields commonly use a collection of single-precision floating-point values to represent embeddings. Each vector contains numerical dimensions generated by an embedding model and is used for similarity-based retrieval. String fields store textual values, Int64 fields represent integers, and Boolean fields represent true or false values. The vector field must also be configured with the appropriate dimensions and vector-search settings. Correctly defining the vector field is essential when building semantic retrieval or retrieval-augmented generation solutions with Azure AI Search.
Question 242
Which Azure AI Search query combines text and vector retrieval in one request?
- Faceted query
- Hybrid query
- Suggestion query
- Prefix query
Correct Answer: 2
Explanation:
A hybrid query in Azure AI Search combines traditional text-based retrieval with vector search. This allows an application to benefit from exact or lexical matching while also finding content that is semantically similar to the query. Faceted queries emphasize categorized navigation, suggestion queries support query completion, and prefix queries focus on matching terms beginning with a specified sequence. Hybrid retrieval is useful for AI applications because users may express concepts differently from the wording stored in documents, making purely keyword-based retrieval less effective in some scenarios.
Question 243
Which Cosmos DB capability provides a serverless consumption model?
- Serverless account
- Dedicated gateway
- Analytical store
- Change feed
Correct Answer: 1
Explanation:
Azure Cosmos DB serverless capacity mode allows applications to consume database resources based on actual request activity rather than provisioning a fixed throughput amount in advance. This model can be suitable for workloads with intermittent or unpredictable traffic where continuously provisioned capacity may not be necessary. Dedicated gateway provides a caching and query-processing capability, analytical store supports analytical workloads, and change feed exposes item modifications. Serverless Cosmos DB can be useful for development environments, prototypes, and applications with relatively sporadic workloads.
Question 244
Which Cosmos DB feature provides a dedicated query-processing layer?
- Partition key
- Transactional batch
- Dedicated gateway
- TTL
Correct Answer: 3
Explanation:
The Azure Cosmos DB dedicated gateway provides a dedicated compute layer for supported query-processing scenarios. It can help applications use a dedicated gateway infrastructure for certain read-heavy workloads and caching scenarios without changing the underlying transactional data model. A partition key distributes data, transactional batch provides atomic operations within a logical partition, and TTL manages item expiration. A dedicated gateway can be useful when applications need to improve query performance or isolate supported query-processing workloads from the primary transactional request path.
Question 245
Which Azure Storage feature creates a read-only point-in-time copy of a blob?
- Blob snapshot
- Blob lease
- Metadata
- Access tier
Correct Answer: 1
Explanation:
A blob snapshot creates a read-only point-in-time version of a blob. Snapshots can be useful when applications need to preserve the state of blob data before making changes or when recovery from an earlier state may be required. A blob lease provides coordination, metadata stores custom descriptive values, and access tiers determine storage-access characteristics. Snapshots are particularly useful for workloads that process or modify important documents and need an additional recovery mechanism without replacing the original blob with a separate manually managed file.
Question 246
Which Azure Storage feature copies data across regions asynchronously?
- ZRS
- LRS
- GRS
- Premium SSD
Correct Answer: 3
Explanation:
Geo-redundant storage, or GRS, asynchronously replicates supported storage data from the primary Azure region to a secondary region. This provides geographic redundancy and can help protect data against a regional outage. ZRS replicates synchronously across availability zones within the primary region, LRS maintains redundant copies within a single physical location, and Premium SSD is a disk-storage offering rather than a Blob Storage redundancy option. GRS is therefore useful when an AI application requires protection against failures affecting an entire Azure region.
Question 247
Which Azure Service Bus feature selects messages using message properties?
- Session state
- Subscription filter
- Queue lock
- Message settlement
Correct Answer: 2
Explanation:
A Service Bus subscription filter allows a subscription to receive only messages that satisfy configured filtering conditions. Filters can evaluate message properties and other supported characteristics, helping route messages to the appropriate consumers. Session state stores application state associated with a message session, queue locks protect messages during processing, and message settlement completes or otherwise handles received messages. Subscription filters are valuable in publish-subscribe architectures where different AI processing components need different subsets of messages from the same Service Bus topic.
Question 248
Which Event Hubs concept provides independent offsets for separate applications?
- Partition
- Producer
- Consumer group
- Capture
Correct Answer: 3
Explanation:
An Event Hubs consumer group provides an independent consumption view of an event stream. Each consumer group maintains its own progress through the partitions, allowing multiple applications to process the same events independently. Partitions provide parallel event streams and ordering boundaries, producers send events into Event Hubs, and Capture writes event data to supported storage. Consumer groups are particularly useful when separate AI services need to analyze the same telemetry independently, because one application’s progress does not determine where another application begins processing.
Question 249
Which Event Grid feature stores events that cannot be delivered successfully?
- Event schema
- System topic
- Dead-letter destination
- Subject filter
Correct Answer: 3
Explanation:
An Event Grid dead-letter destination provides a location where events can be stored when Event Grid cannot successfully deliver them after the configured delivery process. This helps prevent failed events from simply disappearing and gives applications an opportunity to inspect or reprocess them. An event schema defines event structure, a system topic represents events from supported Azure resources, and subject filters restrict which events a subscription receives. Dead-lettering is therefore useful for building more resilient event-driven AI architectures where failed event deliveries must remain recoverable.
Question 250
Which Azure Functions feature executes multiple activities concurrently?
- Fan-out/fan-in
- Timer trigger
- HTTP trigger
- Queue binding
Correct Answer: 1
Explanation:
The Durable Functions fan-out/fan-in pattern allows an orchestration to start multiple independent activities and execute them concurrently before collecting their results. This is useful when a workflow contains many tasks that do not depend on one another and can be processed in parallel. Timer triggers schedule execution, HTTP triggers respond to web requests, and queue bindings connect functions with queue messages. For AI workloads, fan-out/fan-in can accelerate operations such as processing many independent documents, images, or records before combining the resulting outputs.
Question 251
Which Azure Container Apps feature defines how much traffic reaches each revision?
- Traffic weights
- Secret values
- Target ports
- Replica limits
Correct Answer: 1
Explanation:
Traffic weights in Azure Container Apps determine how incoming requests are distributed among application revisions. Developers can assign percentages to different revisions to support controlled rollouts, testing, or gradual migration between application versions. Secret values provide sensitive configuration, target ports identify where container traffic is delivered, and replica limits influence application scaling. Traffic weighting is particularly useful for AI services where a new model-serving version needs to be introduced gradually while the existing revision continues handling a portion of production traffic.
Question 252
Which Azure Container Apps capability reacts to messages from supported event sources?
- Internal DNS
- Event-driven scaling
- Container secrets
- Revision labels
Correct Answer: 2
Explanation:
Azure Container Apps supports event-driven scaling through KEDA-based scale rules for supported event sources. These rules can increase or decrease application replicas according to external workload signals rather than relying only on CPU or memory utilization. Internal DNS supports service discovery, container secrets store sensitive configuration, and revision labels identify deployed revisions. Event-driven scaling is valuable for AI processing services that consume messages or other asynchronous workloads because compute capacity can adjust according to the amount of work waiting to be processed.
Question 253
Which Azure Container Registry artifact provides an immutable content identifier?
- Repository name
- Image tag
- Image digest
- Registry hostname
Correct Answer: 3
Explanation:
An image digest identifies the exact content of a container image using a content-derived value. Unlike a mutable tag, a digest points to a specific image manifest and therefore provides a stable reference for deployments that require precise image identity. A repository name identifies an image collection, a tag provides a human-readable version reference, and the registry hostname identifies the registry endpoint. Using image digests can improve deployment reproducibility because the same digest consistently refers to the same image content.
Question 254
Which Azure Monitor capability visualizes telemetry through interactive dashboards?
- Alert rule
- Workbook
- Data collection endpoint
- Action group
Correct Answer: 2
Explanation:
Azure Monitor Workbooks provide interactive reports and dashboards that can combine charts, tables, text, queries, and other telemetry visualizations. They can help development and operations teams investigate application behavior and create customized monitoring views. Alert rules evaluate conditions and can trigger actions, data collection endpoints support telemetry ingestion architectures, and action groups define notification or automation responses. Workbooks are particularly useful for AI applications where teams need a consolidated view of service health, request performance, resource utilization, and other operational signals.
Question 255
Which Azure API Management policy validates an incoming JWT token?
- validate-jwt
- set-header
- rewrite-uri
- set-backend-service
Correct Answer: 1
Explanation:
The validate-jwt policy in Azure API Management validates JSON Web Tokens presented by API clients. It can verify supported token characteristics such as issuer, audience, signature, and required claims according to the configured policy. The set-header policy modifies HTTP headers, rewrite-uri changes request URLs, and set-backend-service controls the backend service used for routing. JWT validation is useful for protecting AI APIs because the gateway can reject unauthorized requests before they reach backend model or application services.
Question 256
Which Azure API Management feature exposes API documentation to developers?
- Backend service
- Product policy
- Developer portal
- Subscription key
Correct Answer: 3
Explanation:
The Azure API Management developer portal provides a customizable interface where API consumers can discover APIs, review documentation, and access other supported developer-facing capabilities. A backend service represents the destination receiving API requests, product policies control API behavior associated with products, and subscription keys provide consumer credentials. A developer portal is useful when an AI platform exposes multiple APIs and needs a centralized experience where developers can understand available endpoints, requirements, and usage information before integrating those APIs into applications.
Question 257
Which Azure SQL capability groups databases into a shared resource pool?
- Elastic pool
- Query Store
- Automatic tuning
- Database copy
Correct Answer: 1
Explanation:
An Azure SQL Database elastic pool allows multiple databases to share a common pool of compute and storage-related resources. This can be useful when databases have variable or complementary usage patterns and would benefit from shared capacity rather than individually sized resources. Query Store records query performance information, automatic tuning provides supported optimization capabilities, and database copy creates a separate database copy. Elastic pools can help organizations manage collections of Azure SQL databases more efficiently when their workloads fluctuate independently.
Question 258
Which Azure governance feature evaluates resources against organizational rules?
- Resource tag
- Azure Policy
- Resource lock
- Deployment output
Correct Answer: 2
Explanation:
Azure Policy evaluates resources and resource operations against defined organizational rules. Policies can audit configurations, deny noncompliant requests, or apply supported remediation behaviors depending on the selected effect. Resource tags provide metadata, resource locks protect resources from specific operations, and deployment outputs return values from infrastructure deployments. Azure Policy is useful for AI environments where organizations need consistent requirements across resources, such as approved regions, required configurations, or restrictions on certain resource types.
Question 259
Which Azure service provides information about planned maintenance and service incidents?
- Azure Advisor
- Azure Service Health
- Azure Policy
- Azure Cost Management
Correct Answer: 2
Explanation:
Azure Service Health provides personalized information about Azure service issues, planned maintenance, health advisories, and other events that may affect resources or services relevant to an organization’s environment. Azure Advisor provides configuration recommendations, Azure Policy enforces governance rules, and Cost Management focuses on analyzing and controlling cloud spending. Service Health can be important for AI applications because infrastructure teams need timely information about platform events that could affect availability, scheduled maintenance, or the operation of dependent Azure services.
Question 260
Which Azure resource service provides a central inventory of resources across subscriptions?
- Azure Resource Graph
- Azure DNS
- Azure Bastion
- Azure Load Testing
Correct Answer: 1
Explanation:
Azure Resource Graph provides a scalable way to query resource metadata across Azure subscriptions. It can help organizations build resource inventories, locate resources based on properties, and analyze infrastructure at scale using queries. Azure DNS provides name-resolution services, Azure Bastion provides secure browser-based access to virtual machines, and Azure Load Testing evaluates application behavior under simulated traffic. Resource Graph is especially useful for large AI environments where infrastructure spans many subscriptions and teams need a centralized method for discovering and analyzing resource information.