0
0
Azurecloud~20 mins

Azure Front Door overview - Practice Problems & Coding Challenges

Choose your learning style9 modes available
Challenge - 5 Problems
🎖️
Azure Front Door Mastery
Get all challenges correct to earn this badge!
Test your skills under time pressure!
service_behavior
intermediate
2:00remaining
How does Azure Front Door handle incoming user requests?

Azure Front Door is a service that helps deliver your web applications faster and more securely. When a user sends a request to your website, how does Azure Front Door decide where to send that request?

AIt sends the request to the closest backend server based on the user's geographic location and health of the backend.
BIt sends the request to the backend server with the highest CPU usage to balance load.
CIt randomly picks any backend server regardless of location or health status.
DIt always sends the request to the first backend server listed in the configuration, ignoring location or health.
Attempts:
2 left
💡 Hint

Think about how a service can improve speed and reliability by choosing the best server.

Architecture
intermediate
2:00remaining
Which Azure Front Door feature helps protect your web app from malicious attacks?

Azure Front Door offers several features to secure your web applications. Which feature specifically helps block common web attacks like SQL injection or cross-site scripting?

AWeb Application Firewall (WAF)
BLoad Balancer
CContent Delivery Network (CDN)
DVirtual Network Gateway
Attempts:
2 left
💡 Hint

Think about a shield that filters harmful web traffic.

Configuration
advanced
2:00remaining
What is the effect of enabling session affinity in Azure Front Door?

Session affinity ensures that a user's requests are always sent to the same backend server during a session. What happens when you enable session affinity in Azure Front Door?

AUser requests are routed to the backend server with the least network latency regardless of previous requests.
BUser requests are routed to the same backend server based on a cookie, improving session consistency.
CUser requests are distributed randomly to any backend server to balance load evenly.
DUser requests are blocked if the backend server is busy, forcing retries.
Attempts:
2 left
💡 Hint

Think about how websites keep you logged in during a visit.

Best Practice
advanced
2:00remaining
Which practice improves Azure Front Door performance for global users?

You want to optimize your Azure Front Door setup to serve users worldwide with minimal delay. Which practice best achieves this?

ASet a very high time-to-live (TTL) for DNS records to avoid updates.
BDisable health probes to reduce backend server load.
CUse only one backend server in a single region to simplify management.
DEnable caching at Azure Front Door to store static content closer to users.
Attempts:
2 left
💡 Hint

Think about how storing copies of files near users can speed up delivery.

security
expert
2:00remaining
What is the impact of configuring Azure Front Door with HTTPS only and redirect HTTP to HTTPS?

You configure Azure Front Door to accept only HTTPS traffic and to redirect all HTTP requests to HTTPS. What is the main impact of this configuration?

AAzure Front Door blocks all HTTP requests without redirecting, causing errors.
BUsers can access the site using HTTP without encryption, which improves speed.
CAll user traffic is encrypted, improving security and preventing data interception.
DOnly backend servers need to support HTTPS; user requests can use HTTP.
Attempts:
2 left
💡 Hint

Think about how HTTPS protects data between users and your site.