0
0
Azurecloud~20 mins

AKS with Azure Load Balancer - Practice Problems & Coding Challenges

Choose your learning style9 modes available
Challenge - 5 Problems
🎖️
AKS Load Balancer Mastery
Get all challenges correct to earn this badge!
Test your skills under time pressure!
Architecture
intermediate
2:00remaining
Understanding AKS Load Balancer Integration

In an AKS cluster, which component is responsible for provisioning the Azure Load Balancer to expose services externally?

AThe Azure Resource Manager (ARM) template manually deployed by the user
BThe Kubernetes kube-proxy running on each node
CThe Azure Load Balancer operator running as a pod inside the cluster
DThe Azure cloud controller manager integrated with AKS
Attempts:
2 left
💡 Hint

Think about which component communicates between Kubernetes and Azure infrastructure.

scaling
intermediate
2:00remaining
Scaling AKS Services with Azure Load Balancer

You have an AKS service exposed via an Azure Load Balancer. When you scale the number of pods for this service, what happens to the Load Balancer's backend pool?

AThe backend pool automatically updates to include the new pod IPs
BThe backend pool updates to include the node IPs where pods run, not pod IPs
CThe Load Balancer creates a new backend pool for each pod
DThe backend pool remains unchanged until manually updated
Attempts:
2 left
💡 Hint

Consider how Azure Load Balancer routes traffic to pods in AKS.

tradeoff
advanced
2:00remaining
Choosing Between Basic and Standard Azure Load Balancer for AKS

Which of the following is a key advantage of using the Standard Azure Load Balancer over the Basic one in an AKS cluster?

AStandard Load Balancer supports zone redundancy and higher scale
BStandard Load Balancer is free of charge while Basic is paid
CBasic Load Balancer supports more backend pool instances
DBasic Load Balancer supports inbound NAT rules, Standard does not
Attempts:
2 left
💡 Hint

Think about availability and scale features in Azure Load Balancer SKUs.

🧠 Conceptual
advanced
2:00remaining
Request Flow in AKS with Azure Load Balancer

In an AKS cluster exposed via an Azure Load Balancer, what is the correct sequence of components a client request passes through before reaching a pod?

A1,2,3,4
B1,3,2,4
C1,2,4,3
D2,1,3,4
Attempts:
2 left
💡 Hint

Follow the path from client to pod step-by-step.

estimation
expert
3:00remaining
Estimating Azure Load Balancer Capacity for AKS Cluster

You have an AKS cluster with 50 nodes and a service exposed via a Standard Azure Load Balancer. Each node runs 10 pods for this service. If the Load Balancer supports up to 1000 backend pool instances, what is the maximum number of pods that can be effectively load balanced by this service?

A50 pods, limited by the number of nodes in the cluster
B500 pods, since each node counts as 2 backend pool instances
C10000 pods, because Load Balancer backend pool limits the number of nodes, not pods
D5000 pods, since pods are directly registered in the backend pool
Attempts:
2 left
💡 Hint

Consider what the Load Balancer backend pool tracks: nodes or pods?