Microsoft AI-200 Practice Test Questions and Exam Dumps Part9 Q161-180

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

 

Question 161

Which Azure AI Search capability retrieves documents using vector similarity?

  1. Vector search
  2. Faceting
  3. Autocomplete
  4. Synonym expansion

Correct Answer: 1

Explanation:

Vector search in Azure AI Search retrieves documents based on the similarity between vector representations rather than relying only on exact keyword matches. This makes it useful for AI applications where users may express an idea using words that differ from those stored in the source content. Faceting organizes results into categories, autocomplete assists with query completion, and synonym expansion handles predefined equivalent terms. Vector search can be combined with keyword retrieval to create hybrid experiences that consider both lexical matching and semantic similarity when finding relevant information.

Question 162

Which Azure AI Search field attribute enables a value to appear in search results?

  1. Filterable
  2. Sortable
  3. Retrievable
  4. Facetable

Correct Answer: 3

Explanation:

A retrievable field in Azure AI Search can have its value returned in search results. This is important when an application needs to display stored document information after a matching record is found. Filterable fields support filtering expressions, sortable fields allow ordering results, and facetable fields support category-based navigation. Field attributes determine how indexed data can be used by search operations, so selecting them appropriately helps balance functionality and index behavior. A field that should be displayed to users generally needs to be configured as retrievable.

Question 163

Which Cosmos DB operation reads one item using its identifier and partition key?

  1. Cross-partition query
  2. Point read
  3. Analytical scan
  4. Change-feed pull

Correct Answer: 2

Explanation:

A point read in Azure Cosmos DB retrieves a single item when the application provides the item’s identifier together with its partition key. Because Cosmos DB can directly locate the logical partition and item, point reads are generally an efficient way to access known records. Cross-partition queries search across multiple logical partitions, analytical scans support broader analytical processing, and change-feed operations consume changes rather than directly retrieving a specific item. Applications should use point reads when they already know which individual document they need.

Question 164

Which Cosmos DB consistency model provides the strongest read guarantees?

  1. Eventual
  2. Session
  3. Consistent prefix
  4. Strong

Correct Answer: 4

Explanation:

Strong consistency in Azure Cosmos DB provides the strongest read guarantees by ensuring that reads reflect the latest committed write according to the configured consistency behavior. This can be important for workloads where clients must not observe stale values. Eventual consistency provides weaker guarantees with greater flexibility, session consistency provides read-your-writes behavior within a client session, and consistent prefix ensures reads do not observe writes out of order. Choosing a consistency level requires balancing application correctness requirements against latency, availability, and geographic distribution considerations.

Question 165

Which Azure Storage redundancy option synchronously copies data across availability zones?

  1. ZRS
  2. LRS
  3. GRS
  4. RA-GRS

Correct Answer: 1

Explanation:

Zone-redundant storage, or ZRS, synchronously replicates supported storage data across multiple availability zones within the primary Azure region. This helps protect applications against failures affecting an individual availability zone while keeping data available within the region. LRS maintains copies within a single physical location, while GRS and RA-GRS provide geo-replication to a secondary region. ZRS is therefore useful when an AI workload requires stronger resilience against zone-level infrastructure failures without depending primarily on cross-region replication.

Question 166

Which Azure Storage access tier is intended for frequently accessed blob data?

  1. Archive
  2. Cool
  3. Hot
  4. Deep archive

Correct Answer: 3

Explanation:

The Hot access tier is designed for data that is accessed frequently. It generally provides lower access costs compared with less frequently accessed tiers, making it appropriate for active application data and workloads that repeatedly read stored content. Cool is intended for data accessed less frequently, while Archive is designed for long-term offline storage with higher retrieval latency. Selecting an appropriate access tier can help AI applications manage storage costs according to actual data-access patterns, particularly when large datasets are continuously processed or queried.

Question 167

Which Azure Blob Storage feature preserves previous blob versions after updates?

  1. Soft delete
  2. Versioning
  3. Leasing
  4. Immutability

Correct Answer: 2

Explanation:

Blob versioning automatically maintains previous versions of a blob when supported updates occur. This allows applications or administrators to recover earlier content and provides a history of blob modifications. Soft delete protects deleted blobs for a configured retention period, leasing provides coordination between clients, and immutability prevents protected content from being modified or deleted during a retention period. Versioning is useful for AI applications that repeatedly update documents or datasets and may need to recover an earlier version after an unintended modification.

Question 168

Which Azure Service Bus feature groups related messages for ordered processing?

  1. Topics
  2. Sessions
  3. Filters
  4. Forwarding

Correct Answer: 2

Explanation:

Azure Service Bus sessions provide a mechanism for grouping related messages and maintaining ordered processing for applications that require it. A session identifier associates messages with the same logical conversation or workflow, allowing a receiver to process that sequence as a unit. Topics provide publish-subscribe messaging, filters determine which messages a subscription receives, and forwarding routes messages between entities. Sessions are particularly useful for workflows where message order and state continuity matter, such as multi-step processing or conversational application interactions.

Question 169

Which Event Grid capability delivers events to supported handlers without polling?

  1. Push delivery
  2. Batch scanning
  3. Manual retrieval
  4. Scheduled polling

Correct Answer: 1

Explanation:

Event Grid uses event-driven push delivery to send events to supported handlers when subscribed events occur. This allows applications to react to changes without repeatedly polling a source to discover whether something happened. Push-based event handling can reduce unnecessary requests and improve responsiveness for reactive cloud applications. Batch scanning and scheduled polling require consumers to actively check for new information, while manual retrieval requires application-driven interaction. Push delivery is therefore well suited to architectures where services should respond automatically to events as they are generated.

Question 170

Which Azure Event Grid concept defines what events a subscriber receives?

  1. Topic endpoint
  2. Event subscription
  3. Event payload
  4. Delivery attempt

Correct Answer: 2

Explanation:

An Event Grid event subscription defines the events that a subscriber receives from a topic or supported event source. It can include configuration such as event-type filters and subject-based filtering to control which events are delivered. The topic endpoint represents the event source location, the event payload contains event information, and delivery attempts describe the process of sending an event to a handler. Event subscriptions are therefore central to controlling event routing between Azure services and application endpoints.

Question 171

Which Azure Functions trigger starts execution when a blob changes?

  1. Timer trigger
  2. HTTP trigger
  3. Blob trigger
  4. Queue trigger

Correct Answer: 3

Explanation:

A Blob trigger starts an Azure Function when changes to supported blob data are detected according to the trigger’s configuration and hosting model. This is useful for event-driven processing such as transforming uploaded files, extracting information from documents, or initiating downstream AI workflows. Timer triggers run according to schedules, HTTP triggers respond to HTTP requests, and Queue triggers react to queue messages. Blob-triggered functions can help create automated processing pipelines where newly stored content immediately initiates application logic.

Question 172

Which Azure Functions hosting option is designed for rapid serverless scaling?

  1. Consumption plan
  2. Dedicated plan
  3. App Service Environment
  4. Kubernetes hosting

Correct Answer: 1

Explanation:

The Azure Functions Consumption plan provides a serverless execution model in which Azure manages infrastructure allocation and automatically scales function instances according to workload demand within the plan’s capabilities. It is useful for event-driven applications where traffic can vary significantly and maintaining dedicated compute continuously may not be necessary. Dedicated plans provide allocated App Service compute, App Service Environment provides an isolated hosting environment, and Kubernetes hosting runs functions through Kubernetes infrastructure. The Consumption model is commonly suited to lightweight, event-driven workloads with variable execution patterns.

Question 173

Which Azure Container Apps setting controls the container’s listening port for ingress?

  1. Target port
  2. Replica count
  3. CPU request
  4. Registry path

Correct Answer: 1

Explanation:

The target port in Azure Container Apps identifies the port on which the application container listens for incoming ingress traffic. Correctly configuring this value allows the Container Apps ingress layer to route requests to the appropriate application process inside the container. Replica count controls how many instances are running, CPU request relates to allocated compute, and the registry path identifies where an image is stored. Target-port configuration is therefore important when exposing containerized APIs or services through Container Apps ingress.

Question 174

Which Azure Container Registry feature restricts access to selected repositories?

  1. Geo-replication
  2. Repository permissions
  3. Image layers
  4. Build logs

Correct Answer: 2

Explanation:

Azure Container Registry supports repository-scoped permissions that can restrict access to specific repositories within a registry. This allows organizations to apply more granular access controls when different teams or workloads should only interact with selected container images. Geo-replication distributes registry content across regions, image layers form the contents of container images, and build logs provide information about image-building operations. Repository-level permissions are particularly useful in larger AI development environments where multiple applications share a container registry but should not automatically have access to every image repository.

Question 175

Which Azure Monitor metric represents the number of requests handled by an application?

  1. Request count
  2. CPU temperature
  3. Storage capacity
  4. Network route

Correct Answer: 1

Explanation:

Request count represents the number of requests processed by an application or monitored component when the relevant telemetry source exposes that metric. Monitoring request volume helps developers understand application traffic, detect unusual changes, and correlate workload levels with latency or failures. CPU temperature is not a standard application request metric, storage capacity measures available or consumed storage, and network routes describe traffic paths rather than application demand. Request metrics can therefore contribute to capacity planning and operational monitoring for cloud-based AI applications.

Question 176

Which Azure Monitor component can trigger automation when a condition is met?

  1. Metric namespace
  2. Alert rule
  3. Workbook panel
  4. Diagnostic category

Correct Answer: 2

Explanation:

An Azure Monitor alert rule evaluates telemetry against defined conditions and can initiate configured actions when those conditions are satisfied. Alert rules can monitor metrics or other supported signals and work with action groups to deliver notifications or trigger automation. A metric namespace organizes metric definitions, workbook panels present monitoring information visually, and diagnostic categories identify types of platform logs or metrics. Alert rules are therefore important for detecting operational problems such as elevated errors, resource saturation, or unusual application behavior.

Question 177

Which Azure Resource Manager feature prevents accidental resource deletion?

  1. Resource lock
  2. Resource tag
  3. Deployment output
  4. Template parameter

Correct Answer: 1

Explanation:

Azure resource locks help prevent accidental deletion or modification of resources. Depending on the lock type, a resource can be protected from deletion while still allowing permitted configuration changes, or it can be protected from both deletion and modification. Tags provide metadata for organization and governance, deployment outputs expose values from deployments, and template parameters provide configurable deployment inputs. Resource locks can be especially valuable for AI infrastructure containing production databases, storage resources, or other components that should not be removed unintentionally.

Question 178

Which Bicep feature allows a deployment to use values supplied at runtime?

  1. Module
  2. Parameter
  3. Output
  4. Resource

Correct Answer: 2

Explanation:

Bicep parameters allow deployment values to be supplied externally rather than hard-coded directly into the template. Parameters can represent values such as resource names, regions, SKUs, or configuration settings and can be assigned during deployment. Modules organize reusable infrastructure definitions, outputs return values from a deployment, and resources define the Azure components being created or referenced. Using parameters makes infrastructure templates more reusable across environments such as development, testing, and production while reducing the need to maintain separate templates for every environment.

Question 179

Which Azure Policy effect blocks creation when a required condition is violated?

  1. Audit
  2. Deny
  3. Append
  4. Modify

Correct Answer: 2

Explanation:

The Deny effect in Azure Policy prevents a resource request from being created or updated when it violates the policy condition. This provides proactive governance by stopping noncompliant configurations before they are deployed. Audit records noncompliance without blocking the request, Append adds fields or values in supported scenarios, and Modify can alter resource properties when the policy and permissions support the operation. Deny is therefore useful when an organization needs mandatory controls, such as restricting unsupported resource types or enforcing specific configuration requirements.

Question 180

Which Azure service provides recommendations for improving cloud resource configuration?

  1. Azure Advisor
  2. Azure Service Health
  3. Azure Resource Graph
  4. Azure Activity Log

Correct Answer: 1

Explanation:

Azure Advisor analyzes Azure resource configurations and provides personalized recommendations across areas such as cost, performance, reliability, security, and operational excellence. These recommendations can help teams identify opportunities to improve how resources are configured or utilized. Azure Service Health provides information about service issues and planned maintenance, Azure Resource Graph enables resource inventory queries, and Activity Log records subscription-level management operations. Advisor is therefore useful when developers or administrators want actionable recommendations for improving the configuration and operation of their Azure environment.