View Full Microsoft AI-200 Exam Dumps and Practice Test Dumps
Question 181
Which Azure AI Search option enables filtering results by a field value?
- Filterable
- Retrievable
- Searchable
- Facetable
Correct Answer: 1
Explanation:
A field configured as filterable in Azure AI Search can be used in filter expressions to restrict returned documents based on field values. For example, an application could filter products by category, status, or numeric range. Retrievable controls whether a field can appear in returned results, searchable enables text-based searching, and facetable supports category-based navigation. Proper field configuration is important because search indexes are designed around the operations applications need to perform. Filterable fields are especially useful when AI applications need to combine semantic or keyword retrieval with structured constraints.
Question 182
Which Azure AI Search capability groups matching documents by category?
- Analyzer
- Faceting
- Synonym map
- Vector profile
Correct Answer: 2
Explanation:
Faceting in Azure AI Search allows applications to present categorized counts based on field values. For example, a product-search application can show how many matching items belong to each category, brand, or other facetable field. An analyzer controls text processing, synonym maps provide alternative search terms, and vector profiles configure vector-search behavior. Facets are useful when users need to narrow broad search results interactively. In AI-powered search experiences, faceting can complement semantic or vector retrieval by providing structured navigation alongside relevance-based results.
Question 183
Which Cosmos DB capability distributes items across logical partitions?
- Consistency level
- Change feed
- Partition key
- TTL policy
Correct Answer: 3
Explanation:
The partition key in Azure Cosmos DB determines how items are distributed across logical partitions. Choosing an appropriate partition key is fundamental because it affects scalability, request distribution, and query behavior. A good key generally provides sufficient cardinality and distributes workload evenly while supporting common access patterns. Consistency levels control read guarantees, the change feed exposes item changes, and TTL policies control automatic expiration. For AI applications handling large datasets or high request volumes, thoughtful partition-key selection is an important part of designing scalable Cosmos DB containers.
Question 184
Which Azure Cosmos DB capability exposes item changes to downstream processors?
- Index transformation
- Change feed
- Point read
- Partition routing
Correct Answer: 4
Explanation:
The Cosmos DB change feed provides an ordered record of changes to items within supported containers. Applications can consume these changes to trigger downstream processing, synchronize systems, build projections, or initiate event-driven workflows. Index transformation modifies indexing behavior, point reads retrieve individual known items, and partition routing determines where requests are directed. Change feed is particularly useful for AI architectures where newly created or modified documents should automatically trigger enrichment, indexing, analytics, or other downstream processing without repeatedly scanning the entire dataset.
Question 185
Which Azure Service Bus capability lets a receiver process one message at a time?
- Receive-and-delete
- Peek-lock
- Topic forwarding
- Batch send
Correct Answer: 2
Explanation:
The Peek-Lock receive mode in Azure Service Bus allows a receiver to obtain a message lock while processing the message. The message remains available for settlement after successful processing, and the receiver can complete, abandon, or otherwise settle it according to the outcome. Receive-and-delete removes the message as soon as it is received, while topic forwarding routes messages between entities and batch send groups outgoing messages. Peek-Lock is valuable when reliable processing is required because an application can avoid losing a message before its processing work is completed.
Question 186
Which Azure Service Bus operation marks a successfully processed message?
- Complete
- Defer
- Abandon
- Renew
Correct Answer: 1
Explanation:
The Complete operation settles a successfully processed Azure Service Bus message and removes it from normal delivery. This is typically performed after the receiving application has successfully finished the required processing. Defer postpones processing while keeping the message available for later retrieval, Abandon releases the current lock so the message can be made available again, and Renew extends a message lock when supported. Completing messages only after successful processing is an important pattern for building reliable message-driven AI applications.
Question 187
Which Event Hubs property helps preserve ordering for related events?
- Consumer group
- Partition key
- Capture policy
- Throughput unit
Correct Answer: 2
Explanation:
An Event Hubs partition key can be used to route related events to the same partition. Events within a partition maintain their ordering, so consistently using an appropriate partition key for related events helps preserve their relative sequence. Consumer groups provide independent consumption views, Capture stores event data externally, and throughput units describe ingestion and processing capacity in applicable Event Hubs configurations. Partition-key design is therefore important for AI workloads processing telemetry or event streams where the order of related events affects application logic.
Question 188
Which Azure Event Grid feature filters events by their subject path?
- Delivery retry
- Subject filtering
- Dead-lettering
- Event schema
Correct Answer: 2
Explanation:
Event Grid subject filtering allows event subscriptions to restrict delivery based on the subject associated with an event. Prefix and suffix filtering can be used in supported configurations to select only events relevant to a particular resource path or naming pattern. Delivery retry controls repeated delivery attempts, dead-lettering provides a destination for events that cannot be delivered successfully, and the event schema defines the structure of event information. Subject filtering is useful when one event source produces many event types but a subscriber needs only a particular subset.
Question 189
Which Azure Functions feature invokes code through an HTTP request?
- HTTP trigger
- Timer trigger
- Blob trigger
- Event trigger
Correct Answer: 1
Explanation:
An HTTP trigger allows an Azure Function to execute in response to an HTTP request. This makes it suitable for building lightweight APIs, webhooks, and request-driven endpoints. Timer triggers execute according to schedules, Blob triggers respond to blob-related activity, and event-driven triggers respond to supported messaging or event sources. HTTP-triggered functions can serve as entry points into AI processing workflows, such as receiving a document request, accepting application data, or initiating an asynchronous processing operation.
Question 190
Which Azure Functions trigger runs according to a defined schedule?
- Queue trigger
- Service Bus trigger
- Timer trigger
- Blob trigger
Correct Answer: 3
Explanation:
The Azure Functions Timer trigger executes a function according to a configured schedule. It is useful for recurring maintenance, periodic data processing, scheduled synchronization, and other workloads that do not depend on an external request or message. Queue and Service Bus triggers respond to messaging activity, while Blob triggers respond to supported blob changes. Timer-triggered functions can be combined with other Azure services to create recurring AI workflows, such as refreshing data, generating reports, or initiating periodic cleanup operations.
Question 191
Which Azure Container Apps setting controls the minimum running replica count?
- Min replicas
- Target port
- Revision mode
- Environment ID
Correct Answer: 1
Explanation:
The minimum replica setting in Azure Container Apps controls the lowest number of application replicas maintained according to the application’s scaling configuration. Keeping a minimum number of replicas can help reduce startup delays for workloads that need consistent availability. The target port identifies where ingress traffic reaches the container, revision mode controls deployment behavior, and the environment ID identifies the Container Apps environment. Proper replica configuration can help AI applications balance responsiveness, availability, and resource consumption.
Question 192
Which Azure Container Apps setting defines the desired concurrent request level for scaling?
- CPU threshold
- HTTP scale rule
- Registry setting
- Secret reference
Correct Answer: 2
Explanation:
An HTTP scale rule in Azure Container Apps can use request concurrency as a scaling signal. The application can be configured so that the platform adjusts replicas according to the number of concurrent HTTP requests relative to the configured target. CPU thresholds use compute utilization as a scaling signal, registry settings relate to container images, and secret references provide access to sensitive configuration. HTTP-based scaling is useful for API-oriented AI workloads where incoming request volume is a more meaningful scaling indicator than CPU utilization alone.
Question 193
Which Azure Container Registry object identifies a stored container image version?
- Registry endpoint
- Repository
- Image tag
- Access policy
Correct Answer: 3
Explanation:
An image tag in Azure Container Registry identifies a particular tagged version or variant of a container image. Tags such as environment or release identifiers can help deployment systems select the intended image. A repository organizes related images, the registry endpoint identifies where the registry is accessed, and an access policy controls permissions. Tags are commonly used in container deployment workflows, although production pipelines may also use immutable image digests when exact image identity must be guaranteed.
Question 194
Which Azure Monitor capability collects application telemetry for performance analysis?
- Application Insights
- Resource locks
- Azure Policy
- Cost Management
Correct Answer: 1
Explanation:
Application Insights is an Azure Monitor feature designed for application performance monitoring and telemetry collection. It can provide information about requests, dependencies, exceptions, traces, and other application behavior depending on the instrumentation used. Resource locks protect Azure resources, Azure Policy enforces governance requirements, and Cost Management focuses on spending analysis. Application Insights is particularly valuable for AI applications because developers can use telemetry to investigate failures, latency, dependency behavior, and overall application performance in production environments.
Question 195
Which Azure Monitor signal measures elapsed time for application requests?
- Availability result
- Request duration
- Resource count
- Deployment status
Correct Answer: 2
Explanation:
Request duration measures how long an application request takes to complete. Monitoring this value helps developers identify slow endpoints, performance degradation, and changes in application responsiveness. Availability results indicate whether an availability test succeeds, resource count represents inventory information, and deployment status describes deployment activity. Request-duration telemetry is especially useful for AI services where model inference, retrieval operations, database access, or downstream dependencies can introduce latency. Tracking duration alongside failures and dependency telemetry provides a clearer view of application performance.
Question 196
Which Azure API Management feature groups multiple APIs for consumers?
- Products
- Certificates
- Backends
- Named values
Correct Answer: 1
Explanation:
Azure API Management products group one or more APIs and define how those APIs are exposed to consumers. Products can help organize APIs according to audiences, access requirements, or application offerings. Certificates provide security credentials, backends represent services that APIM forwards requests to, and named values store reusable configuration values for policies. Products are useful when an AI platform exposes multiple APIs and needs a structured way to package and manage access to related API capabilities.
Question 197
Which Azure API Management feature stores reusable configuration values?
- API revisions
- Named values
- Subscription products
- Policy conditions
Correct Answer: 2
Explanation:
Named values in Azure API Management provide reusable configuration values that policies can reference. They can help centralize values such as endpoints, configuration strings, or supported secret references instead of repeating them directly throughout policy definitions. API revisions manage different versions of API configurations, subscription products organize API offerings, and policy conditions control conditional policy execution. Named values can make APIM policies easier to maintain because a shared value can be changed centrally rather than edited separately in multiple policy statements.
Question 198
Which Azure Database for PostgreSQL feature provides a managed high-availability configuration?
- Flexible Server HA
- Query Store
- Elastic pool
- Service Bus tier
Correct Answer: 1
Explanation:
Azure Database for PostgreSQL Flexible Server supports managed high-availability configurations designed to improve database resilience. High availability can help applications continue operating when certain infrastructure failures occur by using supported standby mechanisms. Query Store is associated with query performance analysis in supported database services, elastic pools are an Azure SQL concept, and Service Bus tiers belong to messaging infrastructure. High availability is important for AI applications whose APIs, processing services, or data pipelines depend on a PostgreSQL database that should remain accessible during infrastructure disruptions.
Question 199
Which Azure App Configuration feature separates configuration from application code?
- Configuration keys
- Replica sets
- Container layers
- Search fields
Correct Answer: 1
Explanation:
Azure App Configuration uses configuration keys to store application settings separately from application code. Applications can retrieve centralized configuration values at runtime or through supported configuration mechanisms, reducing the need to hard-code environment-specific settings. Replica sets relate to distributed data systems, container layers are components of container images, and search fields belong to indexed search documents. Centralized configuration is useful for AI applications that need different settings across development, testing, and production environments without maintaining separate code versions for every configuration change.
Question 200
Which Azure security service continuously assesses cloud resources for security recommendations?
- Microsoft Defender for Cloud
- Azure Traffic Manager
- Azure Load Testing
- Azure Resource Mover
Correct Answer: 1
Explanation:
Microsoft Defender for Cloud provides cloud security posture management capabilities that assess resources and environments for security-related recommendations and risks. It can help organizations identify configuration weaknesses, improve security posture, and monitor supported workloads. Traffic Manager distributes traffic based on DNS-based routing methods, Azure Load Testing evaluates application performance under load, and Resource Mover helps relocate supported resources between Azure regions. Defender for Cloud is therefore relevant when an AI application requires ongoing security assessment across its Azure infrastructure.