View Full Microsoft AI-200 Exam Dumps and Practice Test Dumps
Question 381
Which Azure AI Search feature maps equivalent terms to one another?
- Analyzer profile
- Search alias
- Synonym map
- Ranking profile
Correct Answer: 3
Explanation:
A synonym map in Azure AI Search defines equivalent terms that should be treated as related during search operations. This can improve recall when users search with alternative terminology, abbreviations, or domain-specific vocabulary. An analyzer controls how text is tokenized and processed, an index alias provides an alternate name for an index, and a ranking profile influences scoring. Synonym maps are especially useful in AI applications where users may express the same concept using different words and the search experience should recognize those relationships.
Question 382
Which Cosmos DB operation retrieves one item using its identifier and partition key?
- Point read
- Cross-partition query
- Change feed scan
- Bulk query
Correct Answer: 1
Explanation:
A Cosmos DB point read retrieves a single item when the application knows both the item’s identifier and its partition key. This operation is highly efficient because Cosmos DB can directly locate the target item without evaluating a broader query across documents. A cross-partition query examines data across multiple logical partitions, while change feed operations focus on item modifications and bulk operations are designed for processing multiple items. AI applications frequently use point reads when retrieving individual configuration records, user profiles, job states, or previously stored inference results.
Question 383
Which Blob Storage feature identifies objects using searchable key-value metadata?
- Blob metadata
- Access tier
- Blob lease
- Object replication
Correct Answer: 1
Explanation:
Blob metadata consists of user-defined key-value pairs associated with a blob. Applications can use metadata to store descriptive information about an object, although metadata itself is not the same as Blob Index Tags, which are designed for searchable indexing scenarios. Access tiers determine storage access characteristics, leases provide controlled write access, and object replication copies supported blob data between accounts. Metadata can help AI data pipelines retain descriptive attributes such as processing state, source information, or dataset version details alongside stored objects.
Question 384
Which Service Bus feature schedules a message for future availability?
- Message deferral
- Scheduled delivery
- Queue transfer
- Session locking
Correct Answer: 2
Explanation:
Azure Service Bus scheduled delivery allows an application to specify a future time when a message should become available for normal processing. This is useful for delayed workflows, reminders, deferred jobs, and time-based orchestration. Message deferral is different because it temporarily sets aside a received message for later retrieval by its sequence number. Queue transfer handles supported forwarding scenarios, while session locking concerns session-aware processing. Scheduled delivery can help AI systems initiate tasks at predetermined times without requiring an external timer to publish every message.
Question 385
Which Event Hubs feature records events directly into Azure Storage?
- Event Hubs Capture
- Consumer checkpoint
- Partition ownership
- Throughput unit
Correct Answer: 1
Explanation:
Event Hubs Capture automatically writes streaming event data to supported Azure Storage destinations. This provides a convenient way to retain event streams for later analysis, archival, or batch processing without requiring a separate custom consumer application solely for storage. Consumer checkpoints track processing progress, partition ownership coordinates consumers, and throughput units provide capacity. Capture can be useful for AI workloads that continuously ingest telemetry, application activity, or operational events and later use those records for analytics, training-data preparation, or auditing.
Question 386
Which Event Grid filter targets events based on their subject prefix?
- Data filter
- Advanced filter
- Subject begins-with filter
- Event type rule
Correct Answer: 3
Explanation:
Event Grid supports subject filtering that can restrict delivery based on the beginning or ending portion of an event subject. A subject begins-with filter is useful when events follow predictable resource or object naming conventions. Data filters inspect event data, advanced filters provide additional comparison capabilities, and event type filtering selects events according to their declared type. Subject-based filtering can reduce unnecessary event processing in AI architectures by delivering only events associated with relevant resources, containers, folders, or application-generated paths.
Question 387
Which Azure Functions option packages dependencies with a function deployment?
- Deployment package
- Function endpoint
- Host extension
- Runtime variable
Correct Answer: 1
Explanation:
A deployment package can contain the application files and required dependencies needed by an Azure Function. Packaging the function and its dependencies together supports repeatable deployments and helps ensure that the runtime receives the expected application content. A function endpoint identifies an HTTP-accessible interface, host extensions provide runtime functionality, and runtime variables configure execution behavior. Packaging is particularly useful for AI applications that depend on multiple libraries because deployment automation can consistently deliver the tested application version to the target Function App.
Question 388
Which Durable Functions feature stores state for individual application entities?
- Durable timer
- Durable entity
- Activity trigger
- HTTP starter
Correct Answer: 2
Explanation:
Durable entities provide a programming model for maintaining small pieces of state that can be accessed and updated through operations. They are useful when an application needs durable, addressable state associated with logical entities rather than only following a single orchestration sequence. Durable timers schedule future orchestration actions, activity triggers execute work, and HTTP starters initiate orchestrations through HTTP requests. AI systems can use durable entities for counters, aggregation state, status information, or other application-level state that must survive function executions.
Question 389
Which Container Apps feature sends traffic to different revisions by percentage?
- Revision labels
- Traffic splitting
- Replica balancing
- Environment routing
Correct Answer: 2
Explanation:
Azure Container Apps traffic splitting allows incoming requests to be distributed across application revisions according to configured percentages. This can support controlled rollout strategies where a new revision receives only a portion of production traffic before broader adoption. Revision labels provide identifiable revision endpoints, replica balancing handles application instances, and environment routing is not the specific revision percentage mechanism. Traffic splitting is valuable for AI services because a new model-serving revision can be exposed gradually while the existing version continues handling the remaining requests.
Question 390
Which Azure Container Registry capability builds images automatically from source changes?
- ACR Tasks
- Registry login
- Image retention
- Repository access
Correct Answer: 1
Explanation:
ACR Tasks provides automated container image building and related registry workflows. Tasks can be configured to build images from source changes or other triggers, reducing the need for a separate build environment for supported scenarios. Registry login manages authentication, image retention concerns lifecycle management, and repository access controls permissions. Automated image builds are useful for AI applications because changes to model-serving code or application dependencies can trigger repeatable container builds and help integrate image creation into a broader development and deployment pipeline.
Question 391
Which Azure Monitor capability defines reusable visual reports from query results?
- Workbooks
- Activity records
- Resource locks
- Diagnostic settings
Correct Answer: 1
Explanation:
Azure Monitor Workbooks provide interactive reports that can combine text, queries, metrics, parameters, and visualizations into reusable monitoring experiences. They are useful for creating operational dashboards tailored to specific applications or teams. Activity records document management operations, resource locks protect resources from certain changes, and diagnostic settings configure telemetry routing. For AI platforms, workbooks can consolidate service health, application performance, model-serving telemetry, and infrastructure indicators into a single view for operational investigation.
Question 392
Which API Management feature lets multiple APIs be grouped for subscriber access?
- Backend pool
- Product
- Gateway instance
- Policy fragment
Correct Answer: 2
Explanation:
An API Management product groups one or more APIs together and defines how subscribers can access them. Products can be configured with subscription requirements and publication settings, making them useful for organizing related APIs for consumers. A backend pool represents backend connectivity concepts, gateway instances provide API gateway functionality, and policy fragments contain reusable policy sections. Products are useful when an AI platform exposes several related services and wants to offer them as a coherent API package to approved consumers.
Question 393
Which Azure SQL feature captures historical query execution information?
- Query Store
- Schema compare
- Database watcher
- Backup catalog
Correct Answer: 1
Explanation:
Query Store captures query-related information over time, including execution statistics and query plans, enabling administrators and developers to investigate performance behavior. It can help identify changes in query performance and support troubleshooting of workloads that evolve over time. Schema comparison focuses on structural differences, database monitoring tools provide broader observability, and backup catalogs concern recovery information. Query Store is valuable for AI applications backed by Azure SQL when developers need to identify inefficient queries or investigate performance changes after application updates.
Question 394
Which PostgreSQL capability maintains a secondary readable copy of database data?
- Connection pooling
- Read replica
- Maintenance window
- Storage autoscaling
Correct Answer: 2
Explanation:
A PostgreSQL read replica maintains a secondary copy that can serve supported read workloads. This can help separate read-intensive operations from the primary database and may be useful for applications with substantial query demand. Connection pooling manages database connections, maintenance windows define preferred maintenance periods, and storage autoscaling addresses storage capacity. AI applications may use read replicas for reporting, analytical queries, or read-heavy application components while preserving primary database resources for transactional operations.
Question 395
Which Azure App Configuration feature helps detect when configuration should be refreshed?
- Sentinel key
- Access token
- Deployment slot
- Service endpoint
Correct Answer: 1
Explanation:
A sentinel key in Azure App Configuration can act as a trigger indicating that related configuration values should be refreshed by an application. Instead of checking every individual setting for changes, an application can monitor the sentinel and refresh configuration when its value changes. Access tokens handle authentication, deployment slots separate application versions, and service endpoints provide connectivity. Sentinel-based refresh is useful for AI services where configuration such as feature flags, model endpoints, or runtime behavior may need to change without redeploying the entire application.
Question 396
Which Azure Storage redundancy option maintains copies across availability zones?
- Locally redundant storage
- Zone-redundant storage
- Geo-redundant storage
- Read-access geo storage
Correct Answer: 2
Explanation:
Zone-redundant storage, or ZRS, synchronously replicates data across availability zones within a supported Azure region. This design helps protect storage data against failures affecting an individual availability zone. Locally redundant storage maintains copies within a single physical location, while geo-redundant options provide replication to another region. Choosing appropriate redundancy is important for AI workloads that store application state, datasets, or generated artifacts and require resilience against infrastructure failures without necessarily requiring cross-region replication.
Question 397
Which Microsoft Entra object represents an application identity in a tenant?
- Service principal
- Security group
- Managed domain
- Directory contact
Correct Answer: 1
Explanation:
A service principal represents an application’s identity within a Microsoft Entra tenant and can be assigned permissions to access supported resources. Applications commonly use service principals when automated processes need authenticated access without relying on an interactive user account. Security groups organize identities, managed domains describe directory configuration, and directory contacts represent contact objects. Service principals are frequently used in deployment and automation scenarios, including AI infrastructure pipelines that need controlled access to Azure resources.
Question 398
Which Azure Policy effect blocks creation of noncompliant resources?
- Audit
- Modify
- Deny
- Disabled
Correct Answer: 3
Explanation:
The Azure Policy deny effect prevents a resource request from proceeding when the request violates the applicable policy rule. This makes it an enforcement mechanism rather than a reporting-only control. The audit effect records noncompliance without blocking deployment, modify can alter supported resource properties, and disabled prevents the policy rule from being evaluated. Deny policies can help enforce required configurations across AI environments, such as restricting unsupported resource types or requiring particular deployment characteristics.
Question 399
Which Azure Resource Graph capability searches resources across subscriptions?
- Cross-resource query
- Local resource scan
- Single-tenant lookup
- Runtime inspection
Correct Answer: 1
Explanation:
Azure Resource Graph supports querying Azure resources at scale across subscriptions and other supported management scopes. It is designed for efficient resource inventory, governance, compliance, and operational discovery using a query language based on Kusto Query Language. A local resource scan would be limited in scope, while single-tenant lookup and runtime inspection are not the defining Resource Graph capability. Cross-resource querying can help AI platform teams locate resources, compare configurations, and identify deployment patterns across large Azure environments.
Question 400
Which Azure Cost Management feature sets spending thresholds and notifications?
- Cost alert
- Budget
- Usage meter
- Billing scope
Correct Answer: 2
Explanation:
Azure Cost Management budgets allow organizations to define spending thresholds and configure notifications when actual or forecasted costs approach or exceed specified amounts. A budget helps teams monitor financial consumption without directly changing resource capacity or stopping workloads by itself. Cost alerts describe notification behavior, usage meters provide consumption measurements, and billing scopes define organizational billing boundaries. Budgets can be useful for AI workloads because compute-intensive inference, data processing, and storage activities can cause consumption to vary significantly as application usage changes.