Courseiva

CCNA Genaiops Infrastructure Questions

55 questions · Genaiops Infrastructure · All types, answers revealed

1
MCQeasy

You are monitoring the cost of your GenAI infrastructure. You want to track usage per specific project. Which feature in Azure AI Foundry should you use?

A.Use 'Resource Tags' on the Azure AI project resource.
B.Configure 'Cost Analysis' alerts in the Azure Portal.
C.Implement 'Azure Policy' to restrict resource types.
D.Switch to 'Pay-As-You-Go' subscription model.
AnswerA

Tags are the native method to categorize costs in Azure billing.

Why this answer

Tags are the standard mechanism in Azure for grouping resources and tracking costs associated with specific projects or teams.

2
MCQmedium

You are setting up a CI/CD pipeline for GenAI models. You need to evaluate the model's performance on a benchmark dataset before it is promoted to the production endpoint. Which Azure AI Foundry capability should be integrated into your pipeline?

A.Prompt Flow evaluation runs.
B.Model catalog benchmarking.
C.Azure AI Content Safety scanning.
D.Azure Machine Learning model drift monitor.
AnswerA

Evaluation runs are specifically designed to measure model responses against ground truth benchmarks.

Why this answer

Evaluation runs in Prompt Flow allow for automated testing of model quality against datasets, which is a required step for a robust GenAI CI/CD pipeline.

3
Multi-Selectmedium

Which THREE features does Azure AI Foundry provide to help developers?

Select 3 answers
A.Evaluation.
B.Azure Active Directory creation.
C.Direct physical hardware access.
D.Model Catalog.
E.Prompt Flow.
AnswersA, D, E

Simplifies model testing.

Why this answer

Model Catalog, Prompt Flow, and Evaluation are key developer-facing features in Azure AI Foundry.

4
MCQhard

Your team is using Semantic Kernel for agent orchestration. You notice frequent transient errors when the agent interacts with multiple LLM services. How should you implement infrastructure-level resiliency?

A.Disable the 'Streaming' flag in the agent request.
B.Use an 'Azure API Management' policy to implement a retry pattern.
C.Switch the model to a higher tier instance type.
D.Increase the 'Timeout' parameter in the model deployment manifest.
AnswerB

APIM policies provide a robust, centralized mechanism to handle retries for LLM endpoints.

Why this answer

Implementing exponential backoff and retries via the 'RetryHandler' in the HttpClient factory or Semantic Kernel settings is the standard approach for infrastructure-level resiliency.

5
MCQmedium

You are deploying a model that requires specific GPUs. How do you ensure you get the right infrastructure?

A.Choose the correct SKU during model deployment.
B.Add the model to a resource group.
C.Update the OS of the node.
D.Request a quota increase for CPU.
AnswerA

SKU selection determines the underlying compute resources.

Why this answer

Selecting the appropriate SKU (e.g., standard vs. GPU-optimized) during the deployment process ensures you get the required infrastructure.

6
Multi-Selectmedium

You want to automate the scaling of your AI agent orchestration. Which TWO components do you need to configure?

Select 2 answers
A.A manual human-in-the-loop review.
B.Hardcoded instance counts.
C.Static IP addresses.
D.Autoscale policies.
E.Monitoring metrics (e.g., latency, throughput).
AnswersD, E

Rules that determine when to scale.

Why this answer

Auto-scaling is driven by metrics and defined by policies that govern instance counts.

7
Multi-Selecthard

Which THREE metrics are critical for monitoring the health of a GenAI deployment?

Select 3 answers
A.Request Latency.
B.Tokens Per Minute (TPM).
C.User email addresses.
D.CPU Usage of the host node.
E.Error Rate.
AnswersA, B, E

Indicator of performance.

Why this answer

Latency, throughput (tokens per second), and error rates are the standard health metrics for AI deployments.

8
MCQeasy

What is the benefit of using 'Model Catalog' in Azure AI Foundry?

A.It provides free LLM usage for all models.
B.It eliminates the need for authentication.
C.It automatically builds your application UI.
D.It provides pre-optimized models with one-click deployment.
AnswerD

This allows for rapid and standard deployment of models.

Why this answer

The Model Catalog provides a curated list of models that are pre-optimized for deployment on Azure infrastructure.

9
MCQmedium

You are deploying a high-throughput Large Language Model on Azure AI Foundry. You need to ensure the underlying infrastructure supports rapid auto-scaling based on request latency. Which configuration should you prioritize in the deployment settings?

A.Enable 'Load Balancing' in the Azure AI Search resource.
B.Configure the 'Scale' settings in the deployment to use a custom metric based on 'Request Latency'.
C.Increase the 'Quota' of the underlying Azure subscription.
D.Set the minimum instance count to 0 in the deployment configuration.
AnswerB

Scaling by latency ensures infrastructure expands before performance degrades.

Why this answer

Auto-scaling for Azure AI Model Catalog deployments is managed via the 'Scale' tab, specifically targeting 'Instances' to handle request concurrency.

10
MCQhard

You are securing an agent orchestration infrastructure where agents must access internal data stores. To prevent data exfiltration, you need to restrict all traffic to the Azure AI Foundry project to a private network. What should be configured?

A.Enable a Virtual Network Service Endpoint on the storage account only.
B.Implement an Azure Firewall to inspect all outbound traffic from the agents.
C.Use an API Gateway with IP whitelisting.
D.Configure a Private Endpoint for the Azure AI project and disable public access.
AnswerD

Private Endpoints ensure traffic stays on the Microsoft backbone and is isolated from the public internet.

Why this answer

A Private Endpoint for the Azure AI project ensures that all communication with the service happens over a private IP address within your VNet.

11
MCQmedium

What is the purpose of a 'System-Assigned Managed Identity' in the context of an Azure AI project?

A.To automatically encrypt all data in transit.
B.To allow users to log in to the project portal.
C.To provide public IP connectivity.
D.To provide a secure identity for the resource to interact with other Azure services.
AnswerD

This is the primary purpose of managed identities.

Why this answer

Managed identities allow the project or compute resource to securely access other Azure resources (like Key Vault or storage) without managing explicit credentials.

12
Multi-Selectmedium

When configuring a private endpoint for your Azure AI resource, which TWO of the following must be set up?

Select 2 answers
A.A virtual network with a dedicated subnet.
B.A load balancer.
C.A firewall rule allowing all traffic.
D.A public IP address.
E.A private DNS zone for internal resolution.
AnswersA, E

Required for endpoint placement.

Why this answer

A private endpoint requires a target subnet and a private DNS zone for resolution.

13
MCQhard

You are troubleshooting high latency in a RAG-based application. The vector search is fast, but the generation phase is slow. Which component should be scaled?

A.Optimize the vector database index.
B.Increase the 'Instances' count for the LLM deployment.
C.Reduce the 'temperature' setting.
D.Increase the 'Embedding Model' throughput.
AnswerB

Scaling the LLM inference instance count increases generation throughput.

Why this answer

If the generation phase is slow, you likely need to scale the LLM inference endpoint (e.g., increasing instances or provisioned capacity).

14
Multi-Selecteasy

Which THREE items should you keep track of in your AI Foundry project to ensure good governance?

Select 3 answers
A.Quota usage.
B.User passwords.
C.Resource Tags.
D.Role-Based Access Control (RBAC) assignments.
E.Personal browser history.
AnswersA, C, D

For operational stability.

Why this answer

Governance relies on tracking tags, role assignments, and quotas.

15
MCQmedium

You have a sudden spike in requests. What is the quickest way to check if you have hit your Azure OpenAI token quota?

A.Review your monthly invoice.
B.Check the 'Quotas' tab in Azure AI Foundry.
C.Check the Azure Monitor 'Errors' log.
D.Check the model endpoint deployment logs.
AnswerB

This provides real-time visibility into quota usage.

Why this answer

The 'Quotas' section in the Azure AI Foundry or the Azure Portal 'Usage + Quotas' page displays current usage versus limits.

16
MCQhard

You are deploying a large model. During the deployment, you encounter a 'Resource Not Available' error. What is the most likely cause?

A.The API key is invalid.
B.The project name is too long.
C.The subscription is not registered for the service.
D.The region does not have capacity for the requested model SKU.
AnswerD

Capacity constraints are common for specific high-end GPU SKUs.

Why this answer

This error usually indicates that the region lacks sufficient capacity for the specific SKU requested.

17
MCQmedium

You need to ensure that your LLM responses are filtered for harmful content. Which infrastructure component provides this capability?

A.Azure Monitor
B.Azure Key Vault
C.Azure AI Content Safety
D.Azure Bastion
AnswerC

Content Safety is the native service for content moderation in AI Foundry.

Why this answer

Azure AI Content Safety is the integrated service used within AI Foundry to monitor and filter model outputs.

18
MCQeasy

When sharing an AI project with a team, which resource group architecture is best practice for lifecycle management?

A.Use a public resource group for all team members.
B.Spread resources across multiple regions.
C.Keep the project and its dependencies in a single resource group.
D.Place each component in a different subscription.
AnswerC

Single-group containment is best for lifecycle management.

Why this answer

Grouping the project, storage, and key vault in a single resource group simplifies management and deletion of the entire lifecycle.

19
Multi-Selecthard

You are experiencing throttling on your AI endpoint. Which TWO steps should you take?

Select 2 answers
A.Check current usage against quota limits.
B.Disable all security features.
C.Change the model version to one that is faster but less smart.
D.Request a quota increase for the model.
E.Delete all existing deployments.
AnswersA, D

Identifies the source of throttling.

Why this answer

To resolve throttling, you need to either optimize usage or increase the available quota/capacity.

20
MCQeasy

You have a new model deployment that is incurring high costs. How can you find the top-consuming deployments?

A.Use 'Cost Analysis' in the Azure Portal.
B.Check the 'Activity Log'.
C.Check the Azure AI Foundry 'Deployments' page.
D.Review the 'Quotas' tab.
AnswerA

Cost analysis is the standard tool for identifying spend by resource.

Why this answer

The cost analysis tool in the Azure portal allows you to group costs by 'Resource' or 'Tag' to identify top-consuming deployments.

21
MCQeasy

Where do you define the model deployment settings, including instance count and version?

A.Azure Portal -> Subscriptions
B.Azure Key Vault -> Secrets
C.Azure Monitor -> Alerts
D.Azure AI Foundry -> Project -> Deployments
AnswerD

This is the correct navigation path for model deployments.

Why this answer

The 'Models + Endpoints' section within the Azure AI Foundry portal is where model deployments are managed.

22
Multi-Selecthard

You are troubleshooting a failed agent deployment. Which TWO areas should you inspect first?

Select 2 answers
A.The Azure status page.
B.The endpoint availability status.
C.The 'Deployment Logs' in the Azure AI Foundry portal.
D.The user profile settings.
E.The billing usage report.
AnswersB, C

Indicates if the infrastructure is actually accepting requests.

Why this answer

Deployment logs and endpoint connectivity are the primary sources for identifying deployment failures.

23
MCQeasy

Your team is deploying a large language model in Azure AI Foundry. You need to ensure that the inference endpoint remains highly available across different regions. Which configuration should you implement?

A.Configure a Load Balancer at the VNet level for the model endpoint.
B.Set the model deployment to 'High Availability' mode in the Azure AI Foundry portal.
C.Enable global load balancing using Azure Front Door to route requests to multiple regional endpoint deployments.
D.Replicate the underlying storage account for the model weights across regions.
AnswerC

Azure Front Door is the recommended service for global HTTP load balancing across regional AI endpoints.

Why this answer

Azure AI Foundry supports multi-region endpoints via Azure Front Door or traffic manager integration to distribute requests across regional inference endpoints for high availability.

24
Multi-Selecthard

To optimize the cost of your AI infrastructure, which THREE actions should you consider?

Select 3 answers
A.Deleting unused model deployments.
B.Purchasing reserved capacity for long-term needs.
C.Deploying all models in every available region.
D.Right-sizing instances based on actual usage metrics.
E.Always selecting the 'Premium' SKU.
AnswersA, B, D

Stops ongoing costs for idle resources.

Why this answer

Choosing the right SKU, cleaning up unused deployments, and using reserved capacity are standard cost-optimization steps.

25
MCQhard

You are deploying a custom model in a container. To ensure the model infrastructure is highly available, what is the best practice?

A.Disable the 'Load Balancer' to save costs.
B.Use a 'Standard' tier App Service plan.
C.Deploy to 'Azure Kubernetes Service' with 'Availability Zones' enabled.
D.Deploy the container on a single large VM.
AnswerC

Availability zones provide the high-availability required for production deployments.

Why this answer

Deploying across multiple Availability Zones ensures that the infrastructure remains operational even if a specific datacenter fails.

26
MCQmedium

Which Azure feature should you use to restrict traffic to your AI Foundry project to specific IP addresses?

A.Azure Active Directory Conditional Access
B.Network Security Groups (NSG) on the VM
C.Azure AI Services 'Networking' (Firewall) settings
D.Azure Front Door WAF
AnswerC

This is the native feature to restrict access by IP.

Why this answer

IP Firewall rules in the Azure AI Services resource allow you to define allowed client IP ranges.

27
MCQmedium

You need to update a prompt flow without downtime. What deployment strategy should you use?

A.Use a Blue-Green deployment pattern.
B.Directly overwrite the existing deployment.
C.Stop the service during the update.
D.Delete the old deployment and create a new one.
AnswerA

This allows for seamless traffic switching between versions.

Why this answer

Blue-Green or Canary deployments allow updating the model/flow without impacting existing users.

28
MCQmedium

You need to audit all model access logs across your organization. What is the most effective approach?

A.Review individual request headers in the app logs.
B.Enable 'Diagnostic Settings' to send logs to a 'Log Analytics Workspace'.
C.Use 'Azure Advisor' to detect unauthorized access.
D.Download the 'Model Usage' report from the billing console.
AnswerB

This allows for centralized query and analysis of access patterns.

Why this answer

Enabling diagnostic settings on the Azure AI Services resource to send logs to a Log Analytics workspace is the standard for organization-wide auditing.

29
MCQhard

An agent orchestration system is timing out because it waits too long for tool output. How can you optimize the infrastructure handling of tool calls?

A.Increase the 'CPU count' on the hosting server.
B.Implement 'Asynchronous' execution patterns for long-running tools.
C.Increase the 'Global Timeout' for the entire agent.
D.Reduce the 'System Prompt' size.
AnswerB

Asynchrony prevents blocking the main orchestration thread.

Why this answer

Implementing tool-specific timeouts within the agent definition helps prevent long-running tasks from stalling the overall orchestration chain.

30
MCQhard

You are automating the deployment of your AI project. What is the recommended tool to manage infrastructure-as-code (IaC) for Azure AI Foundry?

A.Azure DevOps pipelines
B.Azure Bicep
C.Azure CLI alone
D.Python script with Azure SDK
AnswerB

Bicep is the preferred, declarative way to deploy Azure resources.

Why this answer

Bicep is the native, recommended IaC tool for Azure, providing deep integration for AI Foundry resources.

31
MCQhard

Your production agent application requires strict data isolation. You must ensure all requests to Azure OpenAI are routed through a private network. Which configuration is required?

A.Enable 'Public Network Access' set to 'Disabled' on the Azure AI resource.
B.Deploy the model inside a dedicated 'Azure Kubernetes Service' node pool.
C.Configure a 'Service Tag' for Azure OpenAI in the Firewall settings.
D.Add the 'Virtual Network' to the 'Allowed Subnets' in the AI Service.
AnswerA

Disabling public network access forces the use of private endpoints for connectivity.

Why this answer

To ensure traffic stays within the private network, you must configure Azure AI Services with Private Link and ensure all traffic is routed through a private endpoint.

32
MCQhard

You are configuring a connection to a vector store. What is the best way to handle the secret credential?

A.Hardcode the key in the flow configuration.
B.Store in Azure Key Vault and reference in the connection.
C.Pass it as a parameter in the code.
D.Store it in an environment variable.
AnswerB

This is the standard, secure practice.

Why this answer

Key Vault is the centralized store for all application secrets in Azure, which should be linked to the project connection.

33
Multi-Selecteasy

Which THREE of the following are components of an Azure AI Foundry project?

Select 3 answers
A.Azure Key Vault (the resource itself).
B.Azure Subscriptions.
C.Prompt Flows.
D.Connections.
E.Models.
AnswersC, D, E

Workflow orchestration and design.

Why this answer

Models, connections, and prompt flows are foundational components within the AI Foundry project environment.

34
MCQmedium

Your team wants to use prompt versioning. Where should this be managed in the AI Foundry workflow?

A.Azure Database for PostgreSQL
B.GitHub repository only
C.Prompt Flow in Azure AI Foundry
D.Azure Blob Storage
AnswerC

Prompt Flow provides native versioning for prompt engineering.

Why this answer

The 'Prompt Flow' feature in Azure AI Foundry includes built-in versioning and management for prompt templates.

35
Multi-Selectmedium

You are designing the infrastructure for a multi-agent system. Which THREE of the following are essential components to ensure agent orchestration scalability?

Select 3 answers
A.Azure Data Lake Storage for model weights.
B.Horizontal Pod Autoscaling (HPA) for inference services.
C.A message queue (e.g., Azure Service Bus) to decouple agent tasks.
D.A distributed cache (e.g., Azure Cache for Redis) for state management.
E.Azure Bastion for secure management.
AnswersB, C, D

HPA allows the inference infrastructure to expand based on demand.

Why this answer

Scalability in agent systems requires load balancing, message queuing, and state management to handle concurrent agent tasks and ensure high throughput.

36
MCQmedium

A team is scaling a GenAI application that utilizes multiple models via model-as-a-service. You notice that inference requests are being throttled. What is the most effective infrastructure-level adjustment to handle the increased load?

A.Purchase and deploy Provisioned Throughput Units (PTUs) for the specific model deployment.
B.Change the model version to a lower-parameter variant.
C.Move the deployment to a different subscription within the same Azure region.
D.Increase the number of instances in the associated Azure Kubernetes Service (AKS) cluster.
AnswerA

PTUs provide dedicated, guaranteed capacity for high-volume inference, bypassing standard rate limits.

Why this answer

Provisioned throughput units (PTUs) allow for dedicated capacity, which is the standard way to prevent throttling for high-scale GenAI workloads in Azure.

37
Multi-Selectmedium

You are planning a production GenAI deployment. Which THREE of the following are necessary infrastructure considerations?

Select 3 answers
A.Implementing Private Link for network isolation.
B.Setting up auto-scaling for inference endpoints.
C.Using the cheapest SKU regardless of capacity.
D.Enabling diagnostic logging for audit and monitoring.
E.Hardcoding credentials in the code.
AnswersA, B, D

Secures traffic paths.

Why this answer

Security, scalability, and monitoring are the three pillars of a production-ready AI infrastructure.

38
MCQmedium

You are managing a multi-region GenAI deployment using Azure AI Foundry. To reduce latency for global users, what routing architecture should you implement?

A.Implement 'Private Link' for every regional endpoint.
B.Deploy Azure Traffic Manager with 'Performance' routing.
C.Use Azure Front Door to route traffic to the nearest regional AI Foundry endpoint.
D.Configure 'Global VNet Peering' between model endpoints.
AnswerC

Front Door offers global load balancing and edge caching for improved latency.

Why this answer

Azure Front Door provides global HTTP load balancing and site acceleration, which is critical for reducing latency in geographically dispersed GenAI applications.

39
MCQmedium

You are building a RAG application. Where should you store the indexed documents for optimal retrieval performance?

A.Azure Blob Storage
B.Azure Cache for Redis
C.Azure AI Search
D.Azure SQL Database
AnswerC

AI Search is the recommended service for RAG indexing.

Why this answer

Azure AI Search is the native indexer and retriever for AI Foundry RAG applications.

40
MCQhard

You are optimizing the cost of your GenAI infrastructure. You have several agents running in Prompt Flow that are idle for large portions of the day. Which runtime configuration should be modified?

A.Change the VM SKU to a burstable instance type.
B.Set the 'automatic_shutdown' property on the Prompt Flow runtime compute instance.
C.Implement a script to delete the runtime when the flow is finished.
D.Set the concurrency limit to zero.
AnswerB

Configuring the automatic shutdown property allows the compute instance to release resources when idle.

Why this answer

Setting the 'idle_time_before_shutdown' or similar inactivity policies in the Prompt Flow runtime ensures compute resources are deallocated when not in use.

41
Multi-Selecteasy

Which TWO of the following are valid ways to authenticate to an Azure AI Foundry project?

Select 2 answers
A.API Keys.
B.Microsoft Entra ID (RBAC).
C.Hardcoded usernames in the code.
D.Local file-based passwords.
E.Public IP allow-listing only.
AnswersA, B

Used for programmatic access.

Why this answer

Entra ID (RBAC) and API Keys are the two primary methods for securing access to AI resources.

42
MCQeasy

Which Azure AI Foundry feature allows you to evaluate your model's performance?

A.Endpoint monitoring
B.Model Catalog
C.Deployment logs
D.Evaluation
AnswerD

This is the built-in feature for model assessment.

Why this answer

Evaluation in Azure AI Foundry allows you to run metrics against your model outputs to assess quality.

43
MCQmedium

You are configuring an agent orchestration system using Prompt Flow. You need to capture trace data for every step in the agent's reasoning process. Which infrastructure component must be enabled to visualize this in Azure AI Foundry?

A.Configure the Prompt Flow runtime to use a Managed Identity with read access to the Blob Storage account.
B.Deploy a specialized Azure Function to intercept and log flow run events.
C.Increase the timeout threshold in the runtime environment settings.
D.Enable Azure Monitor diagnostic settings to stream Prompt Flow logs to a Log Analytics workspace.
AnswerD

Diagnostic settings are the standard mechanism to capture and store detailed execution traces from Prompt Flow.

Why this answer

Enabling the connection to an Azure Log Analytics workspace within the Prompt Flow project settings allows for the storage and visualization of trace data.

44
MCQmedium

What is the recommended approach for managing configuration settings for different environments (Dev, Test, Prod) in an AI application?

A.Deploy different model versions for each environment.
B.Create separate Azure subscriptions for every environment.
C.Use 'App Configuration' service to manage environment-specific variables.
D.Hardcode values in the application code.
AnswerC

App Configuration enables centralized management of settings across environments.

Why this answer

Using environment variables or app configuration services is the standard way to inject configuration without hardcoding.

45
Multi-Selectmedium

Which TWO of the following are benefits of using Prompt Flow for orchestration?

Select 2 answers
A.Removal of the need for an LLM.
B.Integrated testing and evaluation.
C.No need for authentication.
D.Automatic hardware management.
E.Visual design of complex flows.
AnswersB, E

Streamlines quality assurance.

Why this answer

Prompt Flow offers a visual interface for complex flows and integrated evaluation, which simplifies orchestration.

46
MCQeasy

Which infrastructure artifact acts as the primary container for organizing and managing your models, deployments, and associated connections in Azure AI Foundry?

A.Azure AI Resource
B.Azure Machine Learning Workspace
C.Azure Resource Group
D.Azure AI Project
AnswerD

The Project is the specific container for model deployments, flows, and agent configurations.

Why this answer

An Azure AI project is the core resource that organizes models, deployments, connections, and flow assets within the Azure AI Foundry ecosystem.

47
Multi-Selectmedium

A developer is troubleshooting an agent that is failing to connect to an external tool. Which THREE of the following infrastructure settings should be verified?

Select 3 answers
A.The Azure AI Foundry 'Connections' configuration for the specific tool.
B.The Environment Variables passed to the Prompt Flow runtime.
C.The Azure Resource Group location.
D.The model version of the LLM.
E.The Network Security Group (NSG) rules allowing outbound traffic from the runtime.
AnswersA, B, E

The Connections object manages the credentials/API keys for external services.

Why this answer

Connection failures often stem from incorrect credential management, network blocking, or misconfigured environment variables that define the external tool's access.

48
MCQeasy

You are onboarding a team to Azure AI Foundry. You need to assign the minimum permissions for a developer to deploy and test a model. Which role should you assign?

A.Owner
B.Reader
C.Azure AI Developer
D.Contributor
AnswerC

This role is specifically designed for developers working within AI Foundry projects.

Why this answer

The 'Azure AI Developer' role provides sufficient permissions to manage resources and perform model deployments within the project.

49
MCQhard

You are implementing an agentic workflow using Azure AI Foundry. The agent needs to access a secure external API. How should you store the API key securely within the project?

A.Pass the key as an environment variable in the deployment YAML.
B.Hardcode the key in the prompt template.
C.Save the key in a local '.env' file in the code repository.
D.Store the key in an 'Azure Key Vault' and reference it as a 'Connection' in the AI Project.
AnswerD

Using Key Vault with AI project connections is the secure, recommended practice.

Why this answer

Azure AI Foundry provides a 'Connections' feature that allows storing credentials as secrets, which can then be referenced by agents.

50
Multi-Selectmedium

Your team wants to monitor the safety of model outputs. Which THREE steps should you take?

Select 3 answers
A.Configure 'Diagnostic Logs' to track flagged content.
B.Enable 'Content Safety' filters in the deployment.
C.Set up 'Alerts' for high content violation rates.
D.Allow all models to bypass filters for performance.
E.Disable all logging to save storage space.
AnswersA, B, C

Visibility into filtered events.

Why this answer

Setting up content filters, monitoring logs, and configuring alerts are key to ensuring output safety.

51
MCQmedium

You want to automate the testing of your prompt flows as part of your CI/CD pipeline. Which tool should you use?

A.Prompt Flow CLI
B.Azure Logic Apps
C.Azure Functions
D.Azure AI Search test console
AnswerA

The CLI is the standard tool for integration into CI/CD.

Why this answer

The 'pf' (Prompt Flow) CLI is designed to run flows and evaluations programmatically in CI/CD pipelines.

52
MCQeasy

You notice your model deployment status is 'Succeeded' but inference requests are failing. Where should you first check for connectivity issues?

A.The 'Endpoints' tab in Azure AI Foundry
B.The 'Keys' tab in the Azure Portal
C.Azure Subscription usage reports
D.Azure Storage Account logs
AnswerA

This is the primary location to verify endpoint health and URI.

Why this answer

The 'Endpoints' view in the AI Foundry project shows the connectivity status and endpoint URLs for the model.

53
MCQhard

You need to monitor the 'latency' and 'token usage' of your model deployments in real-time. Which tool provides the most granular view?

A.Azure Billing dashboard
B.Azure Monitor with diagnostic logs
C.Azure Activity Log
D.Azure AI Foundry 'Overview' tab
AnswerB

This allows querying specific events, latency, and token consumption.

Why this answer

Azure Monitor with custom log queries against the diagnostic logs of the AI resource provides the most granular view.

54
MCQmedium

What is the primary function of the 'Prompt Flow' tool within Azure AI Foundry?

A.To create and test prompt-based workflows.
B.To manage Azure subscriptions.
C.To perform data visualization.
D.To manage firewall rules.
AnswerA

Prompt flow is dedicated to building and testing agentic workflows.

Why this answer

Prompt Flow is a development tool designed to streamline the entire development cycle of AI applications, from prototyping to deployment.

55
Multi-Selecthard

You are reviewing the infrastructure architecture for a GenAI application that requires strict regulatory compliance. Which TWO of the following configurations are required to ensure data privacy and residency?

Select 2 answers
A.Disabling the storage of input/output data in the Azure AI service via policy.
B.Using Private Link to ensure traffic never touches the public internet.
C.Increasing the model throughput capacity.
D.Enabling Public IP access for remote debugging.
E.Deploying models across multiple global regions.
AnswersA, B

Ensuring data is not persisted by the AI service is a key compliance requirement.

Why this answer

Data residency and privacy in GenAI are best managed by ensuring data is not stored permanently in the AI service and by strictly controlling network traffic via Private Links.

Ready to test yourself?

Try a timed practice session using only Genaiops Infrastructure questions.