Microsoft AI-200 Practice Test Questions and Exam Dumps Part16 Q301-320

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

 

Question 301

Which Azure AI Search feature defines how semantic ranking interprets fields?

  1. Indexer
  2. Vectorizer
  3. Semantic configuration
  4. Data source

Correct Answer: 3

Explanation:

A semantic configuration in Azure AI Search identifies the fields that should be considered for semantic ranking and related semantic capabilities. It can specify important content, title, and keyword fields so the semantic ranker has meaningful information to interpret when improving search results. An indexer loads and transforms content, a vectorizer supports vectorization scenarios, and a data source identifies the origin of indexed information. Proper semantic configuration helps search applications produce more relevant results when users submit natural-language queries against rich document collections.

Question 302

Which Cosmos DB API uses JSON documents as its primary data model?

  1. NoSQL
  2. Cassandra
  3. Gremlin
  4. Table

Correct Answer: 1

Explanation:

The Azure Cosmos DB for NoSQL API uses JSON documents as its primary data model and provides SQL-like query syntax for working with those documents. Cassandra is designed around the Cassandra data model, Gremlin supports graph workloads, and Table provides a key-value-oriented table model. The NoSQL API is widely suited to applications that need flexible schemas and horizontally scalable document storage. AI applications can use it to store application state, metadata, conversational information, and other semi-structured data.

Question 303

Which Cosmos DB feature limits RU consumption for a client workload?

  1. Analytical store
  2. Throughput control
  3. Change feed
  4. Point-in-time restore

Correct Answer: 2

Explanation:

Cosmos DB throughput control helps applications regulate the request-unit consumption of client workloads. It can be useful when one workload should operate within a defined throughput budget instead of consuming an uncontrolled portion of available capacity. Analytical store supports analytical processing, change feed exposes data modifications, and point-in-time restore provides recovery capabilities. Throughput control is particularly useful in environments containing multiple applications or background processes, where an intensive AI workload could otherwise consume resources needed by other application operations.

Question 304

Which Cosmos DB capability supports transactions across multiple items in one partition?

  1. Change feed
  2. Analytical store
  3. Transactional batch
  4. Dedicated gateway

Correct Answer: 3

Explanation:

Cosmos DB transactional batch enables multiple operations to be executed atomically when they belong to the same logical partition. This means the operations succeed together or fail together, which is useful when several related document changes must maintain consistency. Change feed exposes item modifications, analytical store supports analytical workloads, and the dedicated gateway provides a dedicated query-processing layer for supported scenarios. Transactional batch is useful for AI applications that update several related records as part of one logical operation.

Question 305

Which Blob Storage capability retains previous blob versions automatically?

  1. Blob versioning
  2. Static website
  3. Access tier
  4. Lease management

Correct Answer: 1

Explanation:

Blob versioning automatically maintains previous versions of a blob whenever the blob is modified. Each version receives a unique version identifier, allowing applications or administrators to reference earlier states when needed. Static website hosting serves static web content, access tiers influence storage and access economics, and lease management provides coordination over blob operations. Versioning can be valuable for AI workloads that frequently update documents, model artifacts, configuration files, or other important objects and need the ability to recover earlier versions.

Question 306

Which Azure Storage capability identifies blobs using searchable key-value attributes?

  1. Blob snapshots
  2. Object replication
  3. Blob index tags
  4. Soft delete

Correct Answer: 3

Explanation:

Blob index tags provide searchable key-value attributes that can be associated with blobs. Applications can use these tags to categorize or locate objects based on business or application metadata without relying solely on blob names or directory structures. Snapshots preserve point-in-time states, object replication copies supported data between storage accounts, and soft delete helps recover deleted data. Blob index tags are useful in AI data pipelines where large collections of documents, images, or datasets need to be classified and efficiently discovered.

Question 307

Which Service Bus feature detects repeated messages using application-defined identifiers?

  1. Duplicate detection
  2. Message deferral
  3. Session state
  4. Scheduled delivery

Correct Answer: 1

Explanation:

Azure Service Bus duplicate detection helps identify messages that have already been processed based on the configured duplicate detection mechanism and message identifiers. This can reduce unintended duplicate processing in reliable messaging workflows. Message deferral postpones normal delivery, session state stores state associated with a session, and scheduled delivery makes a message available at a future time. Duplicate detection is particularly useful for AI pipelines where retry behavior or repeated submissions could otherwise cause the same business operation to execute more than once.

Question 308

Which Service Bus protocol is commonly used for advanced messaging interoperability?

  1. HTTP
  2. AMQP
  3. FTP
  4. SMTP

Correct Answer: 2

Explanation:

AMQP, or Advanced Message Queuing Protocol, is a messaging protocol supported by Azure Service Bus and designed for reliable, feature-rich message exchange. It supports advanced messaging semantics and interoperability between compatible clients and systems. HTTP is commonly used for web communication, FTP is intended for file transfer, and SMTP is used for email transport. AMQP is well suited to enterprise AI architectures where multiple services need dependable asynchronous communication and advanced messaging capabilities across supported platforms.

Question 309

Which Event Hubs mechanism records a consumer’s processing position?

  1. Capture
  2. Partition key
  3. Checkpoint
  4. Throughput unit

Correct Answer: 3

Explanation:

An Event Hubs checkpoint records a consumer’s position within an event stream so processing can resume from an appropriate location after a restart or failure. Checkpointing is generally handled through a supported checkpoint store by the consumer application or processing framework. Capture persists event data to storage, partition keys influence event distribution, and throughput units relate to capacity. Reliable checkpointing is important for AI streaming applications because consumers may need to recover without unnecessarily replaying large amounts of already processed telemetry.

Question 310

Which Event Grid feature restricts events delivered by subject pattern?

  1. Event domain
  2. Custom topic
  3. Subject filtering
  4. Dead-letter destination

Correct Answer: 3

Explanation:

Event Grid subject filtering allows an event subscription to select events according to subject-related criteria. This enables consumers to receive only relevant events instead of processing every event published to a topic. An event domain organizes multiple topics, a custom topic accepts application-generated events, and a dead-letter destination stores events that cannot be successfully delivered. Subject filtering is useful for AI event-driven systems where different processing functions should respond only to specific resources, paths, or categories represented in event subjects.

Question 311

Which Durable Functions feature waits until a specified time before continuing?

  1. External event
  2. Durable timer
  3. Activity trigger
  4. Retry policy

Correct Answer: 2

Explanation:

A Durable Functions timer allows an orchestration to pause until a specified future time before continuing execution. The timer is durable, meaning the orchestration can maintain its state while waiting rather than requiring a continuously running process. External events wait for signals from other applications or processes, activity triggers execute individual workflow tasks, and retry policies control repeated activity attempts. Durable timers are useful for AI workflows involving scheduled processing, delayed follow-up actions, expiration windows, or time-based business rules.

Question 312

Which Container Apps workload is designed for finite-duration execution?

  1. Jobs
  2. Revisions
  3. Ingress
  4. Environment variables

Correct Answer: 1

Explanation:

Azure Container Apps Jobs are designed for workloads that run to completion rather than serving continuous application traffic. They can be useful for scheduled, manual, or event-driven batch processing tasks. Revisions represent deployed application versions, ingress controls network access to applications, and environment variables provide runtime configuration. Container Apps Jobs can support AI workloads such as batch document processing, dataset preparation, scheduled evaluation tasks, or other operations where a container starts, performs its work, and then exits.

Question 313

Which Azure Container Registry feature identifies an image version with a human-readable name?

  1. Image digest
  2. Repository
  3. Image tag
  4. Registry endpoint

Correct Answer: 3

Explanation:

An image tag provides a human-readable reference for a container image version in Azure Container Registry. Tags such as release identifiers or environment names make images easier for developers and deployment pipelines to reference. An image digest identifies exact image content, a repository groups related images, and the registry endpoint identifies where images are hosted. Tags are convenient for deployment workflows, although production systems that require immutable image identity may prefer referencing a digest to ensure that the exact image content is deployed.

Question 314

Which Azure Monitor component defines how collected telemetry is transformed or routed?

  1. Action group
  2. Data collection rule
  3. Workbook
  4. Alert condition

Correct Answer: 2

Explanation:

Azure Monitor data collection rules define how supported monitoring data is collected, processed, and routed. They can be used to control collection behavior and destinations for applicable telemetry sources. Action groups define alert responses, Workbooks visualize monitoring information, and alert conditions determine when an alert should fire. Data collection rules are useful in modern monitoring architectures because organizations may need consistent control over telemetry ingestion across multiple applications, virtual machines, and other monitored Azure resources.

Question 315

Which Azure API Management feature stores reusable configuration values securely?

  1. Named values
  2. API revisions
  3. Backends
  4. Products

Correct Answer: 1

Explanation:

Azure API Management named values provide reusable configuration values that policies can reference. They can help centralize values such as service URLs, configuration strings, or supported secret references instead of duplicating them across multiple policies. API revisions represent different versions of an API configuration, backends identify backend services, and products group APIs for consumer access. Named values can simplify API policy management and make configuration changes easier because a shared value can be updated without editing every policy that references it.

Question 316

Which Azure SQL Database tier automatically adjusts compute based on workload demand?

  1. Serverless
  2. Basic
  3. Standard
  4. Elastic pool

Correct Answer: 1

Explanation:

Azure SQL Database serverless provides compute resources that automatically scale within configured limits according to workload demand. It can also support automatic pause behavior when configured and when the database remains inactive for the required period. Basic and Standard are provisioned purchasing tiers, while an elastic pool provides shared resources across multiple databases rather than being a single database compute tier. Serverless can be useful for applications with variable or intermittent workloads where continuously provisioning peak compute capacity would be inefficient.

Question 317

Which PostgreSQL Flexible Server capability maintains a standby in another availability zone?

  1. Read replica
  2. Zone-redundant high availability
  3. PgBouncer
  4. Query statistics

Correct Answer: 2

Explanation:

Azure Database for PostgreSQL Flexible Server supports zone-redundant high availability, which places the standby server in a different availability zone from the primary when configured. This architecture helps improve resilience against availability-zone failures. A read replica is primarily intended for read scaling and replication scenarios, PgBouncer provides connection pooling, and query statistics provide information about database activity. Zone-redundant high availability can be important for AI applications that depend on PostgreSQL and require stronger resilience for transactional metadata or application state.

Question 318

Which Azure identity capability lets workloads obtain Entra tokens without storing credentials?

  1. Application password
  2. SAS token
  3. Workload identity
  4. Shared access key

Correct Answer: 3

Explanation:

Azure workload identity enables supported workloads to authenticate to Azure resources using Microsoft Entra identities and tokens rather than storing long-lived credentials inside applications. This approach is particularly useful for containerized workloads that need access to Azure services. Application passwords, SAS tokens, and shared access keys are credential-based mechanisms that require secrets or tokens to be managed. Workload identity can reduce credential-management overhead and support more secure authentication patterns for AI services running in supported cloud environments.

Question 319

Which Azure service reports planned maintenance affecting subscribed resources?

  1. Azure Advisor
  2. Azure Service Health
  3. Azure Resource Graph
  4. Azure Cost Management

Correct Answer: 2

Explanation:

Azure Service Health provides personalized information about Azure service incidents, planned maintenance, health advisories, and related events that may affect resources or subscriptions. Azure Advisor provides optimization recommendations, Resource Graph enables resource inventory and querying, and Cost Management focuses on cloud spending. Service Health is valuable for operational teams because it provides context about platform events that may affect application availability or planned maintenance activities. AI workloads with strict availability requirements can use this information when coordinating operational responses.

Question 320

Which Azure governance feature protects a resource from accidental deletion?

  1. Azure Policy
  2. Resource lock
  3. Resource tag
  4. Management group

Correct Answer: 2

Explanation:

An Azure resource lock can help prevent accidental deletion or modification of protected resources, depending on the lock type applied. Delete locks prevent deletion while allowing supported modifications, whereas read-only locks provide stronger restrictions. Azure Policy evaluates compliance, resource tags provide metadata, and management groups organize subscriptions into governance hierarchies. Resource locks are useful for important AI infrastructure components such as production storage accounts, critical databases, or shared services where accidental administrative deletion could disrupt applications.