WGU D306
Leave the first rating Students also studied Terms in this set (145) Save AWS Certified Solutions Architect - ...Teacher 388 terms cphi381Preview D337 - Internet of Things (IoT) and I...207 terms kickinwing-Preview Developing Solutions for Microsoft ...156 terms Mjblount95Preview Az-204 14 terms Mjb 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
- multiple choice options
- multiple choice options
- multiple choice options
- multiple choice options
- multiple choice options
Which log level in Azure Service App will result in the lowest volume of logs?Error
An Azure administrator needs to view the logs for an Azure App Service application in near-real time.Which Azure CLI command should this administrator use?az webapp log tail
Which folder contains web server logs in W3C extended log format for a website hosted on Azure App Service?/LogFiles/http/RawLogs
Which two transfer protocols are supported when uploading code to an Azure App Service web app?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.[FunctionName("ResizeImage")]public static void Run([BlobTrigger("images/{name}")] Stream image,[Blob("thumbnails/{name}", FileAccess.Write)] Stream imageSmall){}
- multiple choice options
An Azure Function App code is written in C#, with SQL
Server binding:
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
- multiple choice options
- multiple choice options
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?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", "?TABASE_CONNECTION_STRING%" ],"
": "app"
} } }Which
- multiple choice options
- multiple choice options
A developer wants an Azure Functions handler to work 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?enableForwardingHttpRequest
An Azure Resource Manager (ARM) template for deploying resources includes a storage account. The users of the template need to specify an environment- specific storage account when scripting different environments.Which ARM template section should be used to provide this environment-specific configuration?Parameters
- multiple choice options
- multiple choice options
- multiple choice options
- multiple choice options
- multiple choice options
- multiple choice options
- multiple choice options
- multiple choice options
- multiple choice option
- multiple choice options
Which resource provider is used in an Azure Resource Manager (ARM) template to deploy a virtual machine?Microsoft.Compute
Which data format is used to define the contents of an Azure Resource Manager (ARM) template?
JSON
Which command should be used to mount an Azure file share as a persistent data volume for Azure Container Instances containers?docker run -v
A developer is defining the partitioning scheme for data stored in Cosmos DB. The developer identifies that none of the properties of the items are appropriate for the partition keys.Which kind of key should this developer create?Synthetic key
Which C# class is used to start interaction with Azure Cosmos DB to access graph data?GremlinServer
What is the default consistency level of Azure Cosmos DB?Session
Which Azure Cosmos DB consistency level has the highest latency of writes?Strong
A developer needs to process information provided by an Azure Cosmos DB change feed.Which two types of item-related events trigger change feed notifications?Choose 2 answers.Insert & Upsert
A blob needs to be copied from a storage account to a different storage account using Shared Access Signatures (SAS). Public/anonymous access to both storage accounts is disabled.Where do the SAS tokens need to be used to make the copy succeed?In both the source and destination blob URLs
Which action should be taken after a blob is copied to complete the move of the blob between storage accounts?Delete the source blob from its container
- multiple choice options
- multiple choice options
- multiple choice options
- multiple choice options
- multiple choice options
- multiple choice options
- multiple choice options
- multiple choice option
- multiple choice options
- multiple choice options
An Azure developer needs to get exclusive write and delete access to a blob in Azure Blob Storage.Which operation should this developer use?Lease Blob
Which source-to-destination tier blob copy operation requires blob rehydration?Archive to cool
Which portion of a JSON Web Token (JWT) or its payload specifies the algorithm used for signing the token?Header
Which type of credential is used in OAuth by the client to represent the approved authorization?Access token
What is the largest scope of assignment supported by Azure role-based access control (RBAC)?Management group
An Azure AD object needs to be used to grant Azure resource permission to other Azure resources. The solution must eliminate the need to maintain credentials.Which type of object should be used?Managed identity
n organization has created an internal website on Azure App Service for selected employees. For authentication, the website uses Azure AD (Basic license).A developer needs to implement multifactor authentication and allow only trusted IPs, as the website will be used to view sensitive data.What are the two options to achieve this?Choose 2 answers.Create a new conditional access policy in Azure AD & Upgrade to Azure AD Premium
What is the maximum number of stored access policies that can be applied to a container, table queue, or file share of an Azure Storage account at any given time?5
An Azure developer needs to manually configure an ASP.NET application such that it will automatically upload its telemetry to an Azure Application Insights resource.Which settings should this developer include in the configuration to allow the application to connect to the Azure Application Insights resource?Instrumentation key