- | P a g e
WGU D306 AZURE DEVELOPER ASSOCIATE
OBJECTIVE ASSESSMENT EXAM NEWEST 2025
ACTUAL EXAM COMPLETE 100 QUESTIONS
AND CORRECT DETAILED ANSWER S
(VERIFIED ANSWER S) |ALREADY GRADED A+
- A website is expected to experience high traffic volumes after
it is published in Azure. It has the following requirements: The
website remains available and responsive, the cost is minimized, it is easy to manage. The resource should be configured to automatically scale when the CPU load is high. Which option should be used?
- Deploying the website to an App Service that uses the
standard service tier
- The correct ANSWER is: Deploying the website to an App
Service that uses the standard service tier
- Which log level in Azure Service App will result in the
- Error
lowest volume of logs?
- The correct ANSWER is: Error
- | P a g e
- An Azure administrator needs to view the logs for an Azure
- az webapp log tail
App Service application in near-real time. Which Azure CLI command should this administrator use?
- The correct ANSWER is: az webapp log tail
- Which folder contains web server logs in W3C extended log
- /LogFiles/http/RawLogs
format for a website hosted on Azure App Service?
- The correct ANSWER is: /LogFiles/http/RawLogs
- Which two transfer protocols are supported when uploading
- FTP & FTPS
code to an Azure App Service web app?
- The correct ANSWER is: FTP & FTPS
- A developer needs to create an Azure Functions app named
ResizeImage. This app will be triggered when an image is uploaded to the image container in the Blob storage. The app then resizes the image to create thumbnails.
- | P a g e
- [FunctionName("ResizeImage")] public static void
Run([BlobTrigger("images/{name}")] Stream image, [Blob("thumbnails/{name}", FileAccess.Write)] Stream imageSmall) {}
- The correct ANSWER is: [FunctionName("ResizeImage")]
public static void Run([BlobTrigger("images/{name}")] Stream image, [Blob("thumbnails/{name}", FileAccess.Write)] Stream imageSmall) {}
- An Azure Function App code is written in C#, with SQL
Server binding: public static class SqlFunction1 {
[FunctionName("SqlFunction1")] public static IActionResult Run([HttpTrigger(AuthorizationLevel.Function, "get", Route = "addtodo")] HttpRequest req, ILogger log, [Sql("dbo.Product", ConnectionStringSetting = "SqlConnectionString")] out Product newProduct) { // code removed } } What does this function do with respect to the Product table in an SQL Server database?
- Writes one record
- The correct ANSWER is: Writes one record
- A software application running on Azure needs to implement
stateful serverless custom code using C# and integrate with Azure Blob Storage. Which Azure service should be used?
- | P a g e
- Azure Durable Functions
- The correct ANSWER is: Azure Durable Functions
- A custom handler is defined by configuring the host.json file
with details on how to run the web server via the customHandler section. { "version": "2.0", "customHandler": { "description": { "defaultExecutablePath": "app/handler.exe", "arguments": [ "-- database-connectionstring",
"%DATABASE_CONNECTION_STRING%" ], "":
"app" } } } Which
- workingDirectory
- The correct ANSWER is: workingDirectory
- A developer wants an Azure Functions handler to work
- enableForwardingHttpRequest
directly with the webhook request and response instead of the custom handler request and response payloads for webhook- triggered functions with no additional bindings or outputs.Which setting should the developer use to configure this in a host.json file?