A company needs to store large amounts of unstructured data. Which Azure service is most suitable?
AAzure SQL Database
BAzure Blob Storage
CAzure Table Storage
DAzure Cosmos DB
Explanation
Azure Blob Storage is optimized for unstructured data, unlike the relational or structured options.
Q132
What happens when you set a timeout of 10 seconds on an Azure Function?
AFunction terminates after 10 seconds
BFunction runs indefinitely
CFunction is automatically retried
DFunction logs an error
Explanation
The function terminates if it exceeds the timeout limit, rather than retrying or continuing execution.
Q133
Which Azure service provides a fully managed Kubernetes environment?
AAzure Kubernetes Service
BAzure Container Instances
CAzure Functions
DAzure Logic Apps
Explanation
Azure Kubernetes Service (AKS) simplifies deploying managed Kubernetes; the others do not provide a full Kubernetes experience.
Q134
A company needs to ensure that their application only accesses SQL Database from certain IP addresses. How can this be accomplished?
AService Endpoints
BAzure Policies
CNetwork Security Groups
DIP Firewall Rules
Explanation
IP Firewall Rules can restrict access to specific IPs; the other options do not directly control IP addresses.
Q135
You are configuring an Azure Function for an event-driven architecture. What happens when there are no incoming events?
AThe function times out
BIt consumes no resources
CIt enters a paused state
DIt generates log errors
Explanation
Azure Functions in Consumption Plan use no resources when idle; the other options incorrectly suggest activity or resource consumption.
Q136
Which service provides a serverless compute experience in Azure?
AAzure Functions
BAzure VMs
CAzure App Service
DAzure Kubernetes Service
Explanation
Azure Functions offers a serverless architecture, while the others are traditional compute services.
Q137
A company needs to store sensitive customer data securely in Azure. What should they use to manage access and encryption?
AAzure Key Vault
BBlob Storage
CAzure SQL Database
DAzure Blob Lifecycle Management
Explanation
Azure Key Vault secures access to secrets and keys, whereas the others focus on storage functionalities.
Q138
You are configuring an Azure Function App. What is the maximum number of hosts you can configure in a Consumption plan?
A15
B100
CNever limited
D1
Explanation
In the Consumption plan, the number of hosts is dynamically allocated based on demand, with no hard limit.
Q139
You are configuring Azure Functions for a solution that needs to handle HTTP requests. Which of the following is the best way to expose an HTTP endpoint?
AUse an Azure Function of type HTTP Trigger
BConfigure a Virtual Machine with a Web Server
CSet up Azure API Management
DUse Azure Logic Apps for HTTP calls
Explanation
An HTTP Trigger in Azure Functions is designed specifically for handling HTTP requests, while the other options do not directly serve this purpose.
Q140
A company needs to ensure its Azure application can scale automatically based on demand. Which Azure service allows this?
AAzure Logic Apps
BAzure App Service Autoscale
CAzure Virtual Machine Scale Sets
DAzure Kubernetes Service (AKS)
Explanation
Azure App Service Autoscale automatically adjusts resources according to demand, while the other options require more management for auto-scaling.