All Coursera Quiz Answers

Create Serverless Applications Week 4 Test prep Quiz Answers

In this article i am gone to share Coursera Course: Create Serverless Applications by Microsoft | Create Serverless Applications Week 4 Test prep Quiz Answers with you..

Enrol Link:  Create Serverless Applications

Create Serverless Applications Week 4 Test prep Quiz Answers

 

Question 1)
You’re developing an HTTP-triggered Azure Function app to process Azure Storage blob data. The app is triggered using an output binding on the blob. The app continues to time out after four minutes. The app must process the blob data. You need to ensure the app does not time out and processes the blob data.
Solution: Use the Durable Function async pattern to process the blob data.
Does the solution meet the goal?

  • Yes
  • No

Question 2)
You are developing an order processing application named Application1. You plan to develop Application1 using Azure Functions. The order processing system contains different tasks such as checking the inventory, charging the customer, and creating a shipment. Each task should be developed separately.
Which Azure function type should you create?

  • Entity
  • Client
  • Activity
  • Orchestrator

Question 3)
You are developing an application that will execute a sequence of activities in a specific order. You have to deploy your application in a serverless compute environment.
Which of the below services should you create to deploy your application?

  • Azure Functions
  • Azure App Service
  • Durable Functions

Question 4)
You develop a serverless application using several Azure Functions. The functions connect to data from within the code. You want to configure tracing for an Azure Function App project. You need to change configuration settings in the host.json file.
Which tool should you use?

  • Azure Functions Core Tools (Azure CLI)
  • Azure PowerShell
  • Azure Portal
  • Visual Studio

Question 5)
You are developing an application that should execute a sequence of activities in a specific order. You plan to achieve that by creating a Durable function.
Which three actions should you perform in sequence to do this?

  • Create an Azure Function with Consumption Plan. Install durable functions npm package. Create a durable function.
  • Create an Azure Function with Durable Plan. Install durable functions npm package. Create a durable function.
  • Create an Azure Function with App Service Plan. Install durable functions npm package. Create a durable function

Question 6)
You plan on successfully publishing your functions project to Azure using Core Tools. Which three things must be done before?
Select all options that apply.

  • Create a virtual network in Azure Portal.
  • Test your function using func start in the command line.
  • Create a function app in the Azure Portal.
  • Make sure your function app has the same runtime language as your function project.
  • Create a web app in the Azure Portal

Question 7)
True or False?
Azure Functions tools for Visual Studio enable you to deploy an Azure Function directly from Visual Studio.

  • True
  • False