AKS is a managed Kubernetes service used to deploy, scale, and manage containerized applications.
Incorrect! Try again.
8In AKS, what is a pod?
Azure Kubernetes Service (AKS)
Easy
A.A dashboard that displays security alerts
B.A registry that stores container images
C.A unit that runs one or more containers
D.A firewall that filters network traffic
Correct Answer: A unit that runs one or more containers
Explanation:
A pod is the smallest deployable Kubernetes unit and can contain one or more closely related containers.
Incorrect! Try again.
9Which component does Azure manage in a standard AKS cluster?
Azure Kubernetes Service (AKS)
Easy
A.The Kubernetes control plane
B.The application source code
C.The user account passwords
D.The container image content
Correct Answer: The Kubernetes control plane
Explanation:
Azure manages the Kubernetes control plane in AKS, reducing the administrative work required from users.
Incorrect! Try again.
10Which Azure service provides a logically isolated network for cloud resources?
Network isolation
Easy
A.Azure DevOps
B.Azure Cost Management
C.Azure Virtual Network
D.Azure Advisor
Correct Answer: Azure Virtual Network
Explanation:
Azure Virtual Network provides a logically isolated environment in which Azure resources can communicate securely.
Incorrect! Try again.
11What is the primary function of a Network Security Group (NSG)?
Network isolation
Easy
A.To schedule virtual machine backups
B.To store encryption keys
C.To filter inbound and outbound traffic
D.To build and publish container images
Correct Answer: To filter inbound and outbound traffic
Explanation:
An NSG uses security rules to allow or deny inbound and outbound network traffic.
Incorrect! Try again.
12What does an Azure private endpoint provide?
Network isolation
Easy
A.A backup copy of a virtual network
B.A private IP address for a service
C.A shared password for administrators
D.A public URL for every resource
Correct Answer: A private IP address for a service
Explanation:
A private endpoint assigns a private IP address from a virtual network to access a supported Azure service privately.
Incorrect! Try again.
13Which Azure service collects and analyzes metrics and logs from Azure resources?
Monitor services
Easy
A.Azure Container Registry
B.Azure Kubernetes Service
C.Azure Bastion
D.Azure Monitor
Correct Answer: Azure Monitor
Explanation:
Azure Monitor collects, analyzes, and acts on telemetry such as metrics and logs from Azure resources.
Incorrect! Try again.
14What is a metric in Azure Monitor?
Monitor services
Easy
A.A rule used to route network traffic
B.A password assigned to a resource
C.A numerical value measured over time
D.A file used to build a container
Correct Answer: A numerical value measured over time
Explanation:
A metric is a numerical measurement collected over time, such as CPU usage or request count.
Incorrect! Try again.
15What is the purpose of an Azure Monitor alert?
Monitor services
Easy
A.To store a container image
B.To notify or act when a condition occurs
C.To assign a private IP address
D.To create a new subscription
Correct Answer: To notify or act when a condition occurs
Explanation:
Azure Monitor alerts can notify users or trigger actions when monitored data meets a specified condition.
Incorrect! Try again.
16Which Azure service provides cloud-based identity and authentication?
Authentication services
Easy
A.Azure Load Balancer
B.Azure Virtual Network
C.Azure Blob Storage
D.Microsoft Entra ID
Correct Answer: Microsoft Entra ID
Explanation:
Microsoft Entra ID provides identity, authentication, and access management for users and applications.
Incorrect! Try again.
17What does multi-factor authentication require?
Authentication services
Easy
A.Two or more forms of verification
B.Two or more container images
C.Two or more storage accounts
D.Two or more virtual networks
Correct Answer: Two or more forms of verification
Explanation:
Multi-factor authentication strengthens security by requiring more than one form of identity verification.
Incorrect! Try again.
18What is a key benefit of using a managed identity for an Azure resource?
Authentication services
Easy
A.It increases the resource's disk capacity
B.It disables all network security rules
C.It creates a public endpoint automatically
D.It removes the need to store credentials
Correct Answer: It removes the need to store credentials
Explanation:
A managed identity lets an Azure resource authenticate to supported services without storing credentials in code.
Incorrect! Try again.
19What is Azure Container Registry primarily used to store?
Manage Azure Container Registry
Easy
A.Kubernetes control planes
B.Network monitoring alerts
C.Virtual machine passwords
D.Private container images
Correct Answer: Private container images
Explanation:
Azure Container Registry is a managed service for storing and managing private container images and related artifacts.
Incorrect! Try again.
20Which Azure CLI command is used to sign in to an Azure Container Registry?
Manage Azure Container Registry
Easy
A.az network open
B.az aks connect
C.az acr login
D.az vm login
Correct Answer: az acr login
Explanation:
The az acr login command authenticates the current user or service with an Azure Container Registry.
Incorrect! Try again.
21A company needs administrators to connect to Azure virtual machines without assigning public IP addresses to those machines. Which solution best meets this requirement?
Azure Bastion
Medium
A.Azure Application Gateway
B.Azure Traffic Manager
C.Azure Load Balancer
D.Azure Bastion
Correct Answer: Azure Bastion
Explanation:
Azure Bastion provides browser-based RDP and SSH access through the Azure portal without requiring public IP addresses on the target virtual machines.
Incorrect! Try again.
22An administrator wants to use Azure Bastion to connect to a virtual machine in a virtual network. Which subnet configuration is required for Bastion?
Azure Bastion
Medium
A.A subnet named AzureBastionSubnet
B.A subnet named AzureFirewallSubnet
C.A subnet named ManagementSubnet
D.A subnet named GatewaySubnet
Correct Answer: A subnet named AzureBastionSubnet
Explanation:
Azure Bastion must be deployed in a dedicated subnet named AzureBastionSubnet within the virtual network.
Incorrect! Try again.
23A security team wants to reduce exposure from administrative protocols while still allowing support staff to connect to virtual machines from a web browser. Which Bastion capability is most relevant?
Azure Bastion
Medium
A.Private DNS forwarding
B.Container image scanning
C.Portal-based RDP and SSH
D.Automatic disk encryption
Correct Answer: Portal-based RDP and SSH
Explanation:
Bastion enables RDP and SSH connections through the Azure portal, reducing the need to expose those protocols directly to the internet.
Incorrect! Try again.
24A virtual machine normally receives no inbound management traffic, but administrators occasionally need SSH access. Which Just-in-Time configuration is most appropriate?
Just-in-Time virtual machine access
Medium
A.Allow SSH only for approved time windows
B.Allow SSH permanently from all networks
C.Allow RDP permanently from one subnet
D.Allow HTTP only during business hours
Correct Answer: Allow SSH only for approved time windows
Explanation:
Just-in-Time access opens selected management ports for a limited duration and restricts access to approved source addresses.
Incorrect! Try again.
25A Just-in-Time request opens TCP port 3389 for two hours from an administrator's public IP address. What happens when the approved period ends?
Just-in-Time virtual machine access
Medium
A.The virtual machine is automatically stopped
B.The public IP address is deleted
C.The security rule is removed or closed
D.The administrator account is disabled
Correct Answer: The security rule is removed or closed
Explanation:
When the Just-in-Time duration expires, the temporary network access rule is closed, reducing the VM's exposure to management traffic.
Incorrect! Try again.
26A security engineer wants to use Just-in-Time VM access, but inbound rules are managed by a network security group. What should the engineer verify first?
Just-in-Time virtual machine access
Medium
A.The required management ports are controlled by an NSG
B.The VM is configured as a domain controller
C.The VM has a public load balancer
D.The VM uses premium managed disks
Correct Answer: The required management ports are controlled by an NSG
Explanation:
Just-in-Time access works by managing temporary inbound access rules, so the relevant management ports must be governed by a network security group.
Incorrect! Try again.
27An organization wants Azure to manage the Kubernetes control plane while its team focuses on deploying applications and configuring worker nodes. Which service should it use?
Azure Kubernetes Service (AKS)
Medium
A.Azure Logic Apps
B.Azure Batch
C.Azure Kubernetes Service
D.Azure Functions
Correct Answer: Azure Kubernetes Service
Explanation:
AKS is a managed Kubernetes service that reduces the operational burden of maintaining the Kubernetes control plane.
Incorrect! Try again.
28A company needs pods in an AKS cluster to access a database hosted in a protected Azure virtual network. Which design best supports this requirement?
Azure Kubernetes Service (AKS)
Medium
A.Route database traffic through Azure CDN
B.Expose the database through a public IP
C.Store database credentials in pod labels
D.Deploy AKS with virtual network integration
Correct Answer: Deploy AKS with virtual network integration
Explanation:
Virtual network integration allows AKS workloads to communicate with private resources through controlled network routes and security rules.
Incorrect! Try again.
29An AKS application must access Azure Storage without storing a long-lived storage key in a container image. Which approach is most appropriate?
Azure Kubernetes Service (AKS)
Medium
A.Use the cluster administrator password
B.Use a managed identity with suitable permissions
C.Embed the storage key in the application code
D.Place the storage key in a ConfigMap
Correct Answer: Use a managed identity with suitable permissions
Explanation:
Managed identities allow applications to authenticate to Azure resources without embedding long-lived secrets in images or source code.
Incorrect! Try again.
30A three-tier application contains web, application, and database virtual machines. Which network isolation design best limits lateral movement?
Network isolation
Medium
A.Use separate subnets with restrictive NSG rules
B.Assign public IPs to every virtual machine
C.Allow all internal traffic between subnets
D.Place every tier in one unrestricted subnet
Correct Answer: Use separate subnets with restrictive NSG rules
Explanation:
Separate subnets combined with least-privilege NSG rules limit which tiers can communicate and reduce the impact of a compromised workload.
Incorrect! Try again.
31A database should be reachable from an application subnet but not from the public internet. Which Azure design is most suitable?
Network isolation
Medium
A.Place the database behind a public DNS record
B.Use a private endpoint and subnet restrictions
C.Allow database traffic from any source
D.Assign the database a public IP address
Correct Answer: Use a private endpoint and subnet restrictions
Explanation:
A private endpoint provides private connectivity to the database, while subnet and NSG rules restrict which application resources can reach it.
Incorrect! Try again.
32A workload must connect to an Azure service using an address that remains within the organization's virtual network. Which feature should be considered?
Network isolation
Medium
A.Public load balancing
B.Azure Front Door
C.Internet-facing DNS
D.Private Link
Correct Answer: Private Link
Explanation:
Azure Private Link provides private access to supported Azure services through a private endpoint in the consumer's virtual network.
Incorrect! Try again.
33A platform team needs to determine whether increased response times are caused by an application dependency or by the application itself. Which Azure Monitor capability is most useful?
Application Insights tracks requests and dependencies, helping identify whether delays originate in the application or in an external service.
Incorrect! Try again.
34An operations team wants an alert whenever a virtual machine's average CPU usage exceeds 80 percent for five minutes. Which Azure Monitor feature should it configure?
Monitor services
Medium
A.A resource lock
B.A metric alert
C.A diagnostic setting
D.A service health bookmark
Correct Answer: A metric alert
Explanation:
Metric alerts evaluate numerical platform metrics against thresholds over a specified time period.
Incorrect! Try again.
35Security analysts need to query sign-in events and administrative activity across multiple Azure resources. Which destination is best suited for this analysis?
Monitor services
Medium
A.A virtual machine availability set
B.A Log Analytics workspace
C.An Azure Bastion subnet
D.A storage account static website
Correct Answer: A Log Analytics workspace
Explanation:
A Log Analytics workspace stores and queries collected logs, including activity and authentication data when the appropriate diagnostic sources are configured.
Incorrect! Try again.
36A company wants employees to use one identity for Azure resources and several SaaS applications, with centralized sign-in controls. Which service should it use?
Authentication services
Medium
A.Azure Virtual Network
B.Azure Storage
C.Microsoft Entra ID
D.Azure DNS
Correct Answer: Microsoft Entra ID
Explanation:
Microsoft Entra ID provides cloud identity, authentication, single sign-on, and access management for Azure and integrated applications.
Incorrect! Try again.
37An administrator wants to require a second verification method when users sign in from an unfamiliar location. Which control addresses this requirement?
Authentication services
Medium
A.Conditional Access with multifactor authentication
B.A storage lifecycle policy
C.A network security group rule
D.An availability zone assignment
Correct Answer: Conditional Access with multifactor authentication
Explanation:
Conditional Access evaluates sign-in conditions and can require multifactor authentication when risk or location rules indicate additional verification is needed.
Incorrect! Try again.
38An application running on an Azure virtual machine must read secrets from Key Vault without storing credentials in its configuration files. Which approach is preferred?
Authentication services
Medium
A.Store a service principal secret in a script
B.Make the Key Vault publicly writable
C.Use the developer's personal password
D.Assign a managed identity to the virtual machine
Correct Answer: Assign a managed identity to the virtual machine
Explanation:
A managed identity gives the VM an Azure identity that can be granted Key Vault permissions without managing application-held credentials.
Incorrect! Try again.
39A deployment pipeline must push container images to Azure Container Registry without using an administrator account. Which option provides the most appropriate access model?
Manage Azure Container Registry
Medium
A.Share the registry owner password
B.Use a public storage account key
C.Use a service principal with scoped permissions
D.Enable anonymous push access
Correct Answer: Use a service principal with scoped permissions
Explanation:
A service principal can authenticate the pipeline and receive only the permissions required to push images, following least-privilege principles.
Incorrect! Try again.
40A team wants an AKS cluster to pull private images from Azure Container Registry without placing registry credentials in Kubernetes manifests. What should the team configure?
Manage Azure Container Registry
Medium
A.Attach the AcrPull role to the AKS identity
B.Grant the cluster the Owner role
C.Add the registry password to every pod
D.Make the registry publicly accessible
Correct Answer: Attach the AcrPull role to the AKS identity
Explanation:
Granting the AKS managed identity the AcrPull role allows it to retrieve private images without distributing registry passwords.
Incorrect! Try again.
41A company deploys Azure Bastion in a hub virtual network. Virtual machines reside in peered spoke virtual networks and have no public IP addresses. Administrators can open Bastion sessions to hub VMs but not to spoke VMs. Which configuration should be verified first?
Azure Bastion
Hard
A.The spoke VMs use Azure-provided DNS instead of custom DNS servers
B.The hub-to-spoke peering permits virtual network access in both directions
D.The hub contains a NAT Gateway associated with AzureBastionSubnet
Correct Answer: The hub-to-spoke peering permits virtual network access in both directions
Explanation:
Bastion can connect to VMs in peered virtual networks, but the peerings must allow virtual network access in both directions. Gateway propagation, Azure DNS, and NAT Gateway association are not prerequisites for the private RDP or SSH path.
Incorrect! Try again.
42An NSG protects a target VM subnet. Administrators reach the VMs only through Azure Bastion, and direct RDP or SSH from all other sources must be blocked. Which inbound rule most precisely permits the required traffic?
Azure Bastion
Hard
A.Allow TCP 443 from the AzureBastionSubnet address prefix
B.Allow TCP 22 and 3389 from the AzureBastionSubnet address prefix
C.Allow TCP 22 and 3389 from the AzureLoadBalancer service tag
D.Allow TCP 443 from the Internet service tag
Correct Answer: Allow TCP 22 and 3389 from the AzureBastionSubnet address prefix
Explanation:
Bastion reaches target VMs over their private IP addresses using RDP port 3389 or SSH port 22. HTTPS port 443 is used between the client and Bastion, not between Bastion and the target VM.
Incorrect! Try again.
43Security policy requires administrators to use their local SSH clients while Azure Bastion transports the connection to private Linux VMs. The team also needs Bastion session recording. Which design satisfies both requirements?
Azure Bastion
Hard
A.Deploy the Premium SKU and enable native client support plus session recording
B.Deploy the Developer SKU and enable IP-based connections plus packet capture
C.Deploy the Basic SKU and enable shareable links plus diagnostic settings
D.Deploy the Standard SKU and enable tunneling plus NSG flow logs
Correct Answer: Deploy the Premium SKU and enable native client support plus session recording
Explanation:
Native client connectivity requires Bastion tunneling support, while session recording is a Premium capability. NSG flow logs and diagnostic settings can record network or service telemetry, but they do not provide replayable Bastion session recordings.
Incorrect! Try again.
44A VM protected by an NSG has Just-in-Time access configured for TCP 3389. An approved request is made for one administrator's public IP address for two hours. What change should the administrator expect?
Just-in-Time virtual machine access
Hard
A.The existing deny rule is permanently replaced with a source-specific allow rule
B.A higher-priority temporary NSG rule allows that source until access expires
C.A temporary public IP address is assigned to the VM for two hours
D.An Azure Bastion tunnel is automatically created for the approved source
Correct Answer: A higher-priority temporary NSG rule allows that source until access expires
Explanation:
JIT locks down management ports and creates a time-bound, source-specific allow rule after approval. It does not assign public IP addresses, provision Bastion, or permanently replace the protective rules.
Incorrect! Try again.
45A VM's effective route sends Internet-bound traffic through Azure Firewall, and no NSG is associated with its NIC or subnet. The VM is configured for JIT access. Which control must JIT be able to modify to grant an approved SSH request?
Just-in-Time virtual machine access
Hard
A.An Azure Firewall network rule governing the VM's management traffic
C.A route table entry governing the VM's outbound default route
D.A DNS proxy rule governing resolution of the VM's private address
Correct Answer: An Azure Firewall network rule governing the VM's management traffic
Explanation:
When Azure Firewall controls the applicable inbound path, JIT uses firewall network rules to open the requested management port temporarily. Application rules are for FQDN-oriented application traffic, while routing and DNS rules do not authorize SSH.
Incorrect! Try again.
46A security engineer enables JIT on TCP 22 with a three-hour maximum duration. A developer requests access from 203.0.113.20/32 for four hours, but the request is rejected before any rule is created. Which change addresses the rejection without broadening source access?
Just-in-Time virtual machine access
Hard
A.Request a duration no longer than the configured three-hour maximum
B.Replace the /32 source with the VM subnet's address prefix
C.Change the protected port from TCP 22 to TCP 443
D.Assign a static public IP address to the target VM
Correct Answer: Request a duration no longer than the configured three-hour maximum
Explanation:
A JIT request must comply with the port's configured maximum access duration. Reducing the requested time preserves the narrow /32 source scope and does not require a different port or public IP configuration.
Incorrect! Try again.
47Pods in AKS must access Azure Key Vault without Kubernetes secrets, without node-level identity permissions, and without the deprecated pod-managed identity mechanism. Which configuration best meets the requirement?
Azure Kubernetes Service (AKS)
Hard
A.Assign the cluster control-plane identity to each pod specification
B.Enable OIDC issuer and workload identity, then federate a service account
C.Grant the kubelet managed identity direct access to every required vault
D.Store a service principal secret in a namespace-scoped Kubernetes Secret
Correct Answer: Enable OIDC issuer and workload identity, then federate a service account
Explanation:
Microsoft Entra Workload ID uses the cluster's OIDC issuer and a federated identity credential to map a Kubernetes service account to an Azure identity. This avoids stored credentials and prevents all pods from inheriting node-wide permissions.
Incorrect! Try again.
48An AKS private cluster resolves its API server name correctly from the hub network, but administrators on-premises cannot connect over ExpressRoute. Network security rules allow TCP 443. Which missing element is the most likely cause?
Azure Kubernetes Service (AKS)
Hard
A.A user-defined route from the node subnet to the Kubernetes service CIDR
B.A route from on-premises to the private endpoint address used by the API server
C.A NAT Gateway association on the subnet containing the API server endpoint
D.A public DNS record mapping the API server name to a public frontend
Correct Answer: A route from on-premises to the private endpoint address used by the API server
Explanation:
Correct DNS proves name resolution, but clients still require private network reachability to the API server's private endpoint address. A public record or NAT Gateway would contradict the private-access design.
Incorrect! Try again.
49An AKS cluster enforces a default-deny egress network policy. Application pods must retrieve images from ACR during startup, so the team adds an egress rule to the application pods. Image pulls still fail. Why?
Azure Kubernetes Service (AKS)
Hard
A.Image pulls are performed by CoreDNS through the application's egress policy
B.Image pulls are performed by the node's kubelet before the application pod runs
C.Image pulls are performed by the ingress controller after the pod becomes ready
D.Image pulls are performed by the API server through the pod's service account
Correct Answer: Image pulls are performed by the node's kubelet before the application pod runs
Explanation:
The kubelet and container runtime on the node pull images before the workload container starts. A pod-level egress policy therefore does not authorize the node's registry connection; node identity, DNS, routing, firewall, and ACR access must be correct.
Incorrect! Try again.
50A deployment has 10 replicas, maxUnavailable: 0, and maxSurge: 20%. During a rolling update, what is the maximum number of pods that may exist simultaneously for this deployment?
Azure Kubernetes Service (AKS)
Hard
A.10 pods
B.12 pods
C.11 pods
D.20 pods
Correct Answer: 12 pods
Explanation:
A 20% surge over 10 replicas permits additional pods, so up to 12 may exist during the rollout. maxUnavailable: 0 preserves all 10 desired available replicas but does not disable surge capacity.
Incorrect! Try again.
51A storage account disables public network access and exposes a private endpoint in a spoke virtual network. Clients in a peered hub resolve the account name to its public IP and fail to connect. Routing between the networks works. What is the most direct fix?
Network isolation
Hard
A.Add the Storage service tag to the spoke subnet NSG
B.Link the appropriate Private DNS zone to the hub virtual network
C.Enable a service endpoint on the hub client subnet
D.Advertise the storage public prefix through the hub gateway
Correct Answer: Link the appropriate Private DNS zone to the hub virtual network
Explanation:
Private Endpoint clients must resolve the service FQDN to the endpoint's private IP. Linking the relevant Private DNS zone, or forwarding equivalent private DNS records, corrects resolution for hub clients.
Incorrect! Try again.
52Two private endpoints for the same Key Vault are created in separate virtual networks. A central private DNS zone is linked to both networks and contains records for both endpoint IPs. Clients must always use the endpoint local to their own network. Which design is most reliable?
Network isolation
Hard
A.Replace both private endpoints with subnet service endpoints for Key Vault
B.Use one record with both IPs and rely on virtual network peering preferences
C.Use separate DNS resolution scopes so each network returns only its local endpoint
D.Keep both records and rely on DNS round-robin to select the nearest endpoint
Correct Answer: Use separate DNS resolution scopes so each network returns only its local endpoint
Explanation:
A shared zone with multiple A records can return either endpoint and does not understand network locality. Split DNS scopes, separate zones with controlled links, or DNS policies should ensure each client receives only its intended private IP.
Incorrect! Try again.
53A subnet uses a Storage service endpoint, and a storage firewall allows that subnet. Security now requires the storage account to have a private IP in the virtual network and to reject every public-endpoint path. What must change?
Network isolation
Hard
A.Create a private endpoint, configure private DNS, and disable public network access
B.Add a user-defined route for Storage, configure BGP, and remove the subnet rule
C.Create an application gateway, enable WAF, and allow only its public frontend
D.Retain the service endpoint, add a NAT Gateway, and deny Internet outbound traffic
Correct Answer: Create a private endpoint, configure private DNS, and disable public network access
Explanation:
A service endpoint still accesses the service's public endpoint using optimized Azure routing. Private Link assigns a private endpoint IP, while private DNS directs clients to it and disabling public network access closes public paths.
Incorrect! Try again.
54Azure Activity Log entries are visible for only the platform's standard retention period, but an auditor requires queryable records for three years. Which configuration is appropriate?
Monitor services
Hard
A.Create an Azure Monitor alert rule that preserves every matching log entry
B.Increase the Activity Log retention property on each Azure subscription
C.Enable VM insights and set each virtual machine heartbeat retention to three years
D.Export the Activity Log through a diagnostic setting to a Log Analytics workspace
Correct Answer: Export the Activity Log through a diagnostic setting to a Log Analytics workspace
Explanation:
A subscription diagnostic setting can export Activity Log categories to Log Analytics, where workspace or table retention can be configured. Alerts evaluate records but are not a long-term archive, and VM insights does not retain subscription control-plane events.
Incorrect! Try again.
55Azure Monitor Agent is installed on a VM, but a custom application log is not arriving in Log Analytics. Heartbeats from the VM are present. Which configuration should be inspected first?
Monitor services
Hard
A.The Network Watcher topology and connection monitor test group
B.The VM boot diagnostics storage account and screenshot retention
C.The data collection rule and its association with the virtual machine
D.The subscription Activity Log diagnostic setting and event categories
Correct Answer: The data collection rule and its association with the virtual machine
Explanation:
Azure Monitor Agent uses a data collection rule to define sources, transformations, and destinations, and the rule must be associated with the VM. Heartbeats show that the agent communicates, but they do not prove the custom log source is configured.
Incorrect! Try again.
56An alert must fire when more than five distinct AKS nodes stop sending heartbeats during a ten-minute window. Which Azure Monitor design most directly expresses this requirement?
Monitor services
Hard
A.A service health alert scoped to the AKS resource provider
B.A metric alert on the cluster's average CPU percentage over ten minutes
C.An Activity Log alert for virtual machine deallocation operations
D.A scheduled query alert that summarizes missing heartbeat data by node
Correct Answer: A scheduled query alert that summarizes missing heartbeat data by node
Explanation:
The condition depends on log records, time-window analysis, grouping by node, and a distinct-count threshold. A scheduled query alert can express those operations; CPU, Activity Log, and Service Health signals do not directly represent missing node heartbeats.
Incorrect! Try again.
57An Azure VM application must call Azure Resource Manager without storing credentials. The VM may be deleted and recreated, but the application's Azure identity and role assignments must remain unchanged. Which identity should be used?
Authentication services
Hard
A.A service principal whose client secret is stored in VM metadata
B.A user-assigned managed identity attached to each replacement VM
C.A system-assigned managed identity enabled on each replacement VM
D.A device identity registered through Microsoft Entra join
Correct Answer: A user-assigned managed identity attached to each replacement VM
Explanation:
A user-assigned managed identity has an independent lifecycle and can be reattached to replacement resources while retaining its principal and role assignments. A system-assigned identity is deleted with its VM.
Incorrect! Try again.
58A workload uses a managed identity to request a token for Azure Storage successfully, but Blob data access returns HTTP 403. The identity has the Contributor role on the storage account. What is the most likely correction?
Authentication services
Hard
A.Assign the Reader role at the subscription scope to the managed identity
B.Add the identity as an owner of the Microsoft Entra tenant
C.Regenerate both storage account access keys and restart the workload
D.Assign an appropriate Storage Blob Data role to the managed identity
Correct Answer: Assign an appropriate Storage Blob Data role to the managed identity
Explanation:
The Contributor role grants management-plane permissions but does not grant Blob data-plane access through Microsoft Entra ID. A role such as Storage Blob Data Reader or Storage Blob Data Contributor is required.
Incorrect! Try again.
59An AKS cluster uses its kubelet managed identity to pull images from a private Azure Container Registry. The registry disables local admin credentials, and image pulls return 401 Unauthorized. Network connectivity is confirmed. Which action is required?
Manage Azure Container Registry
Hard
A.Enable the registry admin account and store its password in every namespace
B.Grant the kubelet identity the registry's image-pull data-plane role
C.Grant each application's service account Reader on the registry resource
D.Grant the control-plane identity Contributor on the AKS resource group
Correct Answer: Grant the kubelet identity the registry's image-pull data-plane role
Explanation:
AKS image pulls are performed by the kubelet identity, which needs the applicable ACR pull permission, commonly AcrPull in registries using the classic RBAC model. Application service accounts and the control-plane identity do not perform the node image pull.
Incorrect! Try again.
60A security team enables a private endpoint for Azure Container Registry and disables public network access. Clients resolve myregistry.azurecr.io privately, but image layer downloads fail because the registry's data endpoint resolves publicly. What DNS configuration is missing?
Manage Azure Container Registry
Hard
A.A public CNAME that maps the registry endpoint directly to the client subnet
B.Private DNS records for both the registry endpoint and its regional data endpoint
C.A reverse DNS zone containing PTR records for every registry image layer
D.A private DNS record only for the Azure Resource Manager management endpoint
Correct Answer: Private DNS records for both the registry endpoint and its regional data endpoint
Explanation:
ACR Private Link requires private resolution for the registry login endpoint and the applicable regional data endpoint used to transfer image content. Resolving only the login endpoint can allow authentication while layer operations still follow an unusable public path.
Incorrect! Try again.
Did this save you a night before the exam?
LPU Notes is free, and it stays free. Ads cover part of the server bill.
The rest comes out of a student's own pocket: the domain, the storage,
and keeping the site up through the weeks everyone needs it at once.
The payment button didn't load. An ad blocker or a filtered network is the usual reason.
to try again.
Nothing here is ever locked, and nothing unlocks. Chip in only if it was worth it.
What it pays for →