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

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: B

    To complete the configuration for allowing smart refrigerators to send temperature information to a central location, you must create a queue in the Azure Service Bus. The CLI command 'az servicebus queue create' is specifically used for creating a queue within a given namespace in Azure Service Bus. This queue will receive and store messages until they can be processed. The command in option B includes the necessary parameters: the resource group, the namespace name, and the queue name, making it the correct choice.

Discussion
LJNZ2049

I've seen this question at least 5 times in topic 6

f559357Option: B

5th time this question...

james2033Option: B

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

CiupazOption: B

Correct answer, you have to create the queue.