Microsoft AI-200 Practice Test Questions and Exam Dumps Part17 Q321-340

View Full Microsoft AI-200 Exam Dumps and Practice Test Dumps

 

Question 321

Which Azure AI Search feature normalizes text before matching terms?

  1. Scoring profile
  2. Semantic configuration
  3. Normalizer
  4. Indexer

Correct Answer: 3

Explanation:

An Azure AI Search normalizer performs lexical normalization on keyword-style fields without tokenizing the text into separate words. It can support consistent matching for values where variations in casing or other supported normalization behavior should not prevent matches. Scoring profiles influence ranking, semantic configurations support semantic ranking, and indexers import content into search indexes. Normalizers are particularly useful for filterable, facetable, or sortable fields where consistent textual representation is important for reliable search behavior.

Question 322

Which Cosmos DB capability restores data to an earlier point in time?

  1. Point-in-time restore
  2. Session consistency
  3. Change feed
  4. Analytical store

Correct Answer: 1

Explanation:

Cosmos DB point-in-time restore allows supported account data to be restored to a previous point within the configured retention period. This capability can help recover from accidental modifications, deletions, or other data-management problems. Session consistency controls read guarantees, change feed exposes item modifications, and analytical store supports analytical workloads. Point-in-time recovery is valuable for AI applications that maintain important operational data because it provides a recovery mechanism beyond application-level backups or manual data exports.

Question 323

Which Azure Storage feature records object changes for audit-style processing?

  1. Static website
  2. Change feed
  3. Access tier
  4. Blob lease

Correct Answer: 2

Explanation:

Azure Blob Storage change feed records changes made to blobs in a persistent, ordered log. Applications can consume this information for downstream processing, auditing-oriented workflows, indexing, replication logic, or other event-driven scenarios. Static website hosting serves static content, access tiers determine storage-access characteristics, and blob leases provide coordination over blob operations. Change feed is useful when an AI data pipeline needs to understand how stored objects change over time without repeatedly scanning the entire storage account for differences.

Question 324

Which Service Bus capability forwards messages automatically between entities?

  1. Message settlement
  2. Auto-forwarding
  3. Lock renewal
  4. Session state

Correct Answer: 2

Explanation:

Azure Service Bus auto-forwarding allows messages to be automatically transferred from one queue or subscription to another supported Service Bus entity. This can simplify routing architectures by moving messages between logical processing stages without requiring an intermediate consumer application to receive and resend every message. Message settlement controls the outcome of received messages, lock renewal extends processing locks, and session state stores state associated with sessions. Auto-forwarding can support multi-stage AI workflows where messages need to move through predefined processing paths.

Question 325

Which Event Hubs feature distributes events according to a producer-supplied value?

  1. Capture
  2. Consumer group
  3. Partition key
  4. Checkpoint

Correct Answer: 3

Explanation:

An Event Hubs partition key allows producers to specify a value used to determine the partition receiving an event. Events with the same partition-key value can therefore be routed consistently to the same partition, helping preserve ordering for related events. Capture persists events to storage, consumer groups provide independent consumption views, and checkpoints record consumer progress. Partition keys are useful in AI telemetry systems when related events need predictable partition placement while the overall event stream continues to scale across multiple partitions.

Question 326

Which Event Grid feature stores application-published events independently of Azure resources?

  1. Custom topic
  2. System topic
  3. Event schema
  4. Retry policy

Correct Answer: 1

Explanation:

An Event Grid custom topic provides an endpoint for applications or services to publish their own events. Unlike system topics, which represent events from supported Azure resources, custom topics are intended for application-defined event sources. Event schemas describe event structure, while retry policies influence delivery behavior. Custom topics are useful for AI architectures where application components need to publish business or processing events, such as document classification completion, model-processing status, or workflow state changes.

Question 327

Which Azure Functions feature bundles commonly used binding extensions?

  1. Custom handler
  2. Extension bundle
  3. Deployment slot
  4. Function key

Correct Answer: 2

Explanation:

Azure Functions extension bundles provide collections of binding extensions that can be used by supported functions applications. They simplify dependency management by allowing commonly used extensions to be referenced as a bundle rather than individually managing every extension package. Custom handlers support external runtimes, deployment slots provide separate deployment environments, and function keys provide supported access-control mechanisms. Extension bundles can simplify function development when an application uses several triggers or bindings that require corresponding Functions extensions.

Question 328

Which Azure Functions setting controls runtime behavior through host configuration?

  1. Host.json
  2. Function endpoint
  3. Deployment package
  4. Application route

Correct Answer: 1

Explanation:

The host.json file contains configuration settings that apply to the Azure Functions host and can influence runtime behavior, logging, extensions, and other supported host-level features. A function endpoint identifies an invocation route, a deployment package contains application artifacts, and an application route concerns request addressing. Host-level configuration is useful when an AI serverless application needs consistent runtime settings across its functions rather than configuring each function independently.

Question 329

Which Container Apps capability provides labels for identifying revisions?

  1. Revision labels
  2. Secret references
  3. Scale triggers
  4. Environment variables

Correct Answer: 1

Explanation:

Azure Container Apps revision labels provide stable names that can be associated with specific application revisions. They can simplify traffic management and application access when revisions change, because a label can identify a particular revision without requiring consumers to depend on an automatically generated revision name. Secret references provide access to stored sensitive values, scale triggers control scaling behavior, and environment variables provide runtime configuration. Revision labels are useful for controlled testing and release workflows involving multiple versions of an AI service.

Question 330

Which Azure Container Apps feature runs containers without requiring a persistent application endpoint?

  1. Jobs
  2. Ingress
  3. Revisions
  4. Dapr

Correct Answer: 1

Explanation:

Azure Container Apps Jobs are intended for finite-duration container workloads that execute a task and then finish. Unlike continuously running applications, a job does not need to maintain a persistent application endpoint for its primary purpose. Ingress controls incoming network traffic, revisions represent deployed versions, and Dapr provides distributed application capabilities. Jobs can support AI batch processing, scheduled data preparation, evaluation workflows, and other workloads where containers should run only while useful work is being performed.

Question 331

Which Azure Container Registry capability triggers automation when registry events occur?

  1. Webhook
  2. Repository token
  3. Image digest
  4. Manifest list

Correct Answer: 1

Explanation:

Azure Container Registry webhooks can notify an external endpoint when supported registry events occur, such as image pushes or deletions. This enables registry activity to participate in automated deployment and integration workflows. Repository tokens support scoped authentication, image digests identify exact image content, and manifest lists describe multi-platform image manifests. Webhooks can be useful in AI deployment pipelines where publishing a new container image should trigger another system to begin validation, deployment, testing, or model-serving updates.

Question 332

Which Azure Monitor capability creates application-defined numeric telemetry?

  1. Custom metrics
  2. Workbooks
  3. Action groups
  4. Service Health

Correct Answer: 1

Explanation:

Azure Monitor custom metrics allow applications to publish application-specific numerical measurements that are not necessarily represented by built-in platform metrics. These measurements can support monitoring of business or application behavior and can be incorporated into supported monitoring and alerting scenarios. Workbooks visualize telemetry, action groups define alert responses, and Service Health reports Azure service events. Custom metrics can be useful for AI services when teams need to observe values such as inference throughput, processing counts, queue-related application measurements, or other domain-specific indicators.

Question 333

Which API Management policy changes the backend URL for a request?

  1. validate-jwt
  2. set-header
  3. set-backend-service
  4. rewrite-uri

Correct Answer: 4

Explanation:

The Azure API Management set-backend-service policy changes the backend service used to process an API request. This can be useful when APIs need to route traffic to different backend services based on configuration or policy logic. validate-jwt validates JSON Web Tokens, set-header changes HTTP headers, and rewrite-uri modifies the request URI. Backend selection is particularly useful for AI APIs when a gateway needs to direct requests toward different inference services, environments, or backend implementations.

Question 334

Which Azure API Management capability groups related APIs for consumer access?

  1. Products
  2. Revisions
  3. Named values
  4. Backends

Correct Answer: 1

Explanation:

API Management products group related APIs and define how those APIs are exposed to consumers. Products can help organize API offerings and associate supported access and policy configurations with a collection of APIs. Revisions represent different configurations of an API, named values store reusable configuration values, and backends identify backend services. Products are useful when an AI platform exposes several related APIs and needs to present them as coherent offerings to different application developers or consumer groups.

Question 335

Which PostgreSQL Flexible Server feature reduces connection overhead?

  1. PgBouncer
  2. Read replica
  3. High availability
  4. Geo-redundant backup

Correct Answer: 1

Explanation:

PgBouncer is a lightweight connection pooler supported with Azure Database for PostgreSQL Flexible Server. It can reduce the overhead associated with establishing and maintaining large numbers of database connections by reusing connections efficiently. Read replicas are intended for read scaling, high availability provides resilience through standby infrastructure, and geo-redundant backup supports disaster recovery scenarios. Connection pooling can be especially useful for AI applications that create many short-lived requests and would otherwise generate excessive database connection-management overhead.

Question 336

Which PostgreSQL capability provides a secondary copy for read-heavy workloads?

  1. Read replica
  2. PgBouncer
  3. Firewall rule
  4. Server parameter

Correct Answer: 1

Explanation:

Azure Database for PostgreSQL Flexible Server read replicas provide replicated database instances that can serve supported read workloads. They can help distribute read traffic away from the primary server and support applications with substantial read demand. PgBouncer manages connection pooling, firewall rules control network access, and server parameters configure supported database behavior. Read replicas can be useful for AI applications that perform frequent analytical or retrieval operations while maintaining transactional workloads on the primary PostgreSQL server.

Question 337

Which Azure governance mechanism temporarily excludes a scope from a policy?

  1. Policy exemption
  2. Policy definition
  3. Initiative reference
  4. Compliance state

Correct Answer: 1

Explanation:

An Azure Policy exemption allows a specified scope or resource to be excluded from a policy or initiative under defined circumstances. Exemptions can be useful when a legitimate exception exists and applying a policy requirement would not be appropriate for a particular resource or environment. A policy definition establishes the rule, an initiative groups policies, and compliance state reports evaluation results. Properly managed exemptions help organizations maintain governance while documenting intentional exceptions rather than simply ignoring policy compliance findings.

Question 338

Which Azure Cost Management capability monitors spending against a defined threshold?

  1. Cost analysis
  2. Budget
  3. Export
  4. Reservation

Correct Answer: 2

Explanation:

Azure Cost Management budgets allow organizations to define spending thresholds and monitor actual or forecasted costs against those limits. Budgets can help teams identify when spending approaches configured targets and can support alerting workflows. Cost analysis provides detailed spending views, exports can move cost information for external analysis, and reservations relate to committed purchasing models. Budgets are useful for AI environments because compute-intensive workloads, storage, and managed services can produce variable costs that teams may want to monitor closely.

Question 339

Which Microsoft Defender for Cloud capability provides recommendations for exposed management ports?

  1. Regulatory compliance
  2. Security recommendations
  3. Resource inventory
  4. Cost optimization

Correct Answer: 2

Explanation:

Microsoft Defender for Cloud provides security recommendations that identify configuration and security issues across supported cloud resources. Recommendations can include findings related to exposed management interfaces, vulnerable configurations, identity controls, and other security posture concerns depending on the environment and enabled capabilities. Regulatory compliance provides compliance-oriented views, resource inventory helps identify assets, and cost optimization is not the primary purpose of Defender for Cloud. Security recommendations help teams prioritize configuration improvements across complex AI infrastructure.

Question 340

Which Azure infrastructure setting determines the deployment scope of a Bicep file?

  1. Target scope
  2. Resource loop
  3. Module path
  4. Output value

Correct Answer: 1

Explanation:

The Bicep targetScope declaration determines the scope at which a Bicep file is intended to deploy resources. Depending on the deployment design, supported scopes can include resource groups, subscriptions, management groups, or tenants. Resource loops repeat resource declarations, module paths identify reusable Bicep modules, and output values return information from a deployment. Correctly defining the target scope is important when deploying AI infrastructure across different Azure governance levels because resources may need to be created at different administrative scopes.