Exam AZ-204 All QuestionsBrowse all questions from this exam
Question 330

A company is developing a solution that allows smart refrigerators to send temperature information to a central location.

The solution must receive and store messages until they can be processed. You create an Azure Service Bus instance by providing a name, pricing tier, subscription, resource group, and location.

You need to complete the configuration.

Which Azure CLI or PowerShell command should you run?

    Correct Answer: D

    To complete the configuration for receiving and storing messages in an Azure Service Bus instance until they can be processed, you need to create a Service Bus namespace. The command `az servicebus namespace create --resource-group fridge-rg --name fridge-ns --location fridge-loc` establishes this namespace. Once the namespace is created, you can then proceed to create queues or topics within it. Therefore, the correct command to run is the one that creates the Service Bus namespace.

Discussion
Joengi

how is this question in the catalogue with 20 different sets of answers?

Jobalos009

This question is amazing !

james2033Option: B

az servicebus queue create --resource-group fridge-rg --namespace-name fridge-ns --name fridge-q

kotireddy4120

answer is correct