Coursera Answers

Microsoft Create Serverless Applications Coursera Quiz Answers

In this article i am gone to share Coursera Course: Microsoft Create Serverless Applications All Weeks Quiz Answers with you. | Microsoft Create Serverless Applications Coursera Quiz Answers

ENROL LINK:  Microsoft Create Serverless Applications

Microsoft Create Serverless Applications Coursera Quiz Answers


 

WEEK 1 QUIZ ANSWERS

Knowledge check

Question 1)
Which of the following terms best describe modeled business processes in software?

  • Workflows
  • Functions
  • Design-first technologies

Question 2)
Which of the following best describes Logic Apps?

  • A service that you can use to create workflows even when you have no development or IT Pro experience.
  • A service within Azure that allows you to run small pieces of code in the cloud, without having to worry about the infrastructure required to host that code.
  • A service within Azure that you can use to automate, orchestrate and integrate disparate components of a distributed application.

Question 3)
Which of the following are considered code-first technologies? Select all options that apply.

  • Logic Apps
  • Microsoft Power Automate
  • WebJobs
  • Azure Functions

Question 4)
Which of the following best describes Power Automate?

  • A service within Azure that you can use to automate, orchestrate and integrate disparate components of a distributed application.
  • A service that you can use to create workflows even when you have no development or IT Pro experience
  • A service within Azure that allows you to run small pieces of code in the cloud, without having to worry about the infrastructure required to host that code

Question 5)
You plan on designing and building a workflow for a bike maintenance process. Which technology should you use for development?

  • Azure App Service WebJobs
  • Azure Functions
  • Azure Logic Apps
  • Microsoft Power Automate

 

Knowledge check

Question 1)
Which of the following are characteristics of an Azure Functions serverless solution? Select all options that apply.

  • You are charged on reserved time
  • You have no servers to manage
  • You can use only JavaScript and C# to write your functions code
  • Automatic scaling

Question 2)
In terms of execution times, what are the default timeout and the configurable timeout of a function?

  • Default 10 mins, configurable 20 mins.
  • Default 5 mins, configurable 10 mins.
  • Default 5 mins, configurable 20 mins.

Question 3)
What makes a function execute in a workflow?

  • Triggers
  • Bindings
  • Manual execution

Question 4)
True or False?
Functions cannot be used in traditional compute environments.

  • False
  • True

Question 5)
Which of the following can you use to test your Azure Functions?

  • Azure Windows virtual machines
  • The Azure Portal itself
  • Azure Container Instances

 

VISIT THIS LINK:  Create Serverless Applications Week 1 Test prep Quiz Answers

 


 

WEEK 2 QUIZ ANSWERS

Knowledge check

Question 1)
When creating a timer trigger, what information do you need to provide? Select all options that apply.

  • An URL ID
  • A schedule via a CRON expression
  • A function key
  • A timestamp parameter name

Question 2)
You want to write a CRON expression that creates a trigger that executes every 10 minutes.
Which of the following is the correct string?

  • 0 */5 * * * *
  • 0 */10 * * * *
  • 0 * * */10 * * *
  • 0 10 * * * *

Question 3)
You plan to execute a function any time a document changes in a collection inside a database. Which type of trigger should you configure?

  • Timer
  • Azure Cosmos DB
  • HTTP
  • Queue

Question 4)
True or False?
You can create a timer trigger using Visual Studio Code.

  • True
  • False

Question 5)
You want to build a function app that does not run continuously. Which plan should you use to minimize costs and maintenance?

  • App service plan
  • Serverless
  • Premium plan

 

VISIT THIS LINK:  Create Serverless Applications Week 2 Test prep Quiz Answers

 


 

WEEK 3 QUIZ ANSWERS

Knowledge check

Question 1)
True or False?
When you are using bindings in your Azure functions, you also need to code specific connection logic to databases or services.

  • True
  • False

Question 2)
Which types of bindings can be used with AzureFunctions? Select all options that apply.

  • Output binding
  • Read binding
  • Write binding
  • Input binding

Question 3)
In which programming language is a binding defined?

  • Java
  • JSON
  • JavaScript

Question 4)
Which of the following services support only output bindings?

  • Cosmos DB
  • HTTP
  • Blob Storage
  • Event Hubs

Question 5)
Which of the following services support both input and output bindings?

  • Table Storage
  • Twilio
  • Service Bus

 

VISIT THIS LINK:  Create Serverless Applications Week 3 Test prep Quiz Answers

 


 

WEEK 4 QUIZ ANSWERS

Knowledge check

Question 1)
What are the benefits of using Durable Functions in your application? Select all options that apply.

  • You can orchestrate and coordinate functions.
  • You can chain functions together.
  • They enable you to write event-driven code.
  • The state is managed for you.

Question 2)
True or False?
Durable functions can be called synchronously, but not asynchronously.

  • True
  • False

Question 3)
Which types of durable functions are available for use? Select all options that apply.

  • Orchestrator
  • Activity
  • Dispatcher
  • Provider
  • Client

Question 4)
In this pattern, the workflow executes a sequence of functions in a specified order. The output of one function is applied to the input of the next function in the sequence. The output of the final function is used to generate a result. Which application pattern is presented above?

  • Monitor
  • Async HTTP APIs
  • Function chaining

Question 5)
Select two capabilities of Azure Durable Functions that differentiate it from Logic Apps.

  • Code-first (imperative)
  • Built-in binding types
  • Design-first (declarative)
  • Collection of connectors

 

Knowledge check

Question 1)
True or False?
When you start using a local development workflow based on the Core Tools, you can use the Azure Portal to make changes to your functions.

  • True
  • False

Question 2)
To create a new function in your project with the help of Core Tools, what cmdlet do you run in the command line?

  • func init
  • func release
  • func new
  • func install

Question 3)
Which command do you need to run in Core Tools to run a function locally?

  • func init
  • func start
  • func new

Question 4)
Which command do you need to run in Core Tools to publish a functions project to Azure?

  • func azure functionapp publish
  • az function app create
  • func init

Question 5)
True or False?
The Core Tools validate and test your functions code during publishing.

  • True
  • False

 

Knowledge check

Question 1)
True or False?
To be able to develop, test and deploy Azure Functions locally using Visual Studio, you also need to install the Azure Functions and Web Job Tools extension.

  • True
  • False

Question 2)
You are planning on creating a solution that will automatically run an Azure Function App when a file is uploaded or modified in an Azure Blob Storage. What type of trigger should you configure on the Azure Function App?

  • HTTP trigger
  • Blob trigger
  • Event Hub trigger

Question 3)
You are building a solution in which an Azure Function is triggered by an HTTP request. You want to ensure that the HTTP request includes in the header a specific key only for that function, that enables the Azure Function runtime to authorize the request. What type of level access rights should be configured on the Function App?

  • Admin
  • Anonymous
  • Function

Question 4)
You plan on setting up continuous deployment to maintain source control on your functions code. Which of the following deployment sources are a viable option in Azure?

  • Box
  • Github
  • OneDrive
  • Bitbucket

Question 5)
What is the Azure CLI command that permits zip deployment?

  • az functionapp create
  • az functionapp deployment
  • az functionapp zip

 

VISIT THIS LINK:  Create Serverless Applications Week 4 Test prep Quiz Answers

 


 

WEEK 5 QUIZ ANSWERS

Knowledge check

Question 1)
Which statement describes how a webhook can be of use in Azure Functions?

  • You can connect data and services to your function.
  • You can chain functions together.
  • You can be notified by a service when an event of interest happens.

Question 2)
True or False?
In GitHub, you can only set up webhooks at the organization level.

  • True
  • False

Question 3)
Through which two content types can webhooks be delivered? Select two options.

  • The application/x-www-form-urlencoded content type
  • The application/JSON content type
  • The application/java content type
  • The application/urlencoded content type

Question 4)
What is the name of the event in GitHub that is fired whenever a page is created or updated in the repository’s wiki?

  • Goliath
  • Gollum
  • Galileo

Question 5)
You have set a secret token in GitHub to create a hash signature for each payload. Which is the header in each request that passes along this hash signature?

  • x-hub-signature
  • sha1=
  • x-signature

 

VISIT THIS LINK:  Create Serverless Applications Week 5 Test prep Quiz Answers

 


 

WEEK 6 QUIZ ANSWERS

Knowledge check

Question 1)
True or False?
CORS is an HTTP feature that enables a web application running under one domain to access resources in another domain.

  • True
  • False

Question 2)
You are planning on developing a solution that will automatically manage the updates in a web application with the help of SignalR. How does SignalR handle connection management?

  • It manually broadcasts messages to all clients simultaneously.
  • It manually broadcasts messages to all clients separately.
  • It automatically broadcasts messages to all clients simultaneously.
  • It automatically broadcasts messages to all clients separately.

Question 3)
What are the benefits of using SignalR for an application? Select all options that apply.

  • Allows the app to gracefully degrade depending on the supported technologies of the client
  • Future-proofing the app
  • Improving the security layer

Question 4)
You are developing a new presentation website for a business. In order to be cost-efficient, as the website is static, you decide to host it on a Storage Account. To which container should you copy your files in order to make this happen?

  • webhost
  • $web
  • web
  • $webhost

Question 5)
You develop an application and you plan on limiting it to make requests only to other certain addresses. In order to achieve this, you decide on implementing CORS rules. In which file should you declare the JSON structure for the CORS configuration?

  • settings.json
  • settings.local.json
  • local.settings.json

 

Knowledge check

Question 1)
In order to unlock the potential of their data and services, to which type of developers can organizations publish APIs with the help of Azure API Management?

  • External developers
  • Partner developers
  • Internal developers

Question 2)
True or false?
Azure API Management (APIM) is a fully managed cloud service that you can use to publish, secure, transform, maintain, and monitor APIs.

  • True
  • False

Question 3)
Which consumption tier of Azure API Management is especially suited to microservice-based architecture and event-driven systems?

  • Premium Tier
  • Developer Tier
  • Consumption Tier

Question 4)
In what ways can the Azure API Management service help an organization?

  • Develop APIs
  • Publish APIs
  • Secure APIs
  • Monitor APIs

Question 5)
Which data format should you use if you want to define Azure API Management policies?

  • HTML
  • XML
  • JSON

 

 

VISIT THIS LINK:  Create Serverless Applications Week 6 Test prep Quiz Answers

 


 

WEEK 7 QUIZ ANSWERS

 

VISIT THIS LINK:  Create Serverless Applications Week 7 Course Practice Exam Answers