ExamGecko
Question list
Search
Search

List of questions

Search

Related questions











Question 86 - AZ-204 discussion

Report
Export

You develop Azure solutions.

A .NET application needs to receive a message each time an Azure virtual machine finishes processing data. The messages must NOT persist after being processed by the receiving application.

You need to implement the .NET object that will receive the messages.

Which object should you use?

A.
QueueClient
Answers
A.
QueueClient
B.
SubscriptionClient
Answers
B.
SubscriptionClient
C.
TopicClient
Answers
C.
TopicClient
D.
CloudQueueClient
Answers
D.
CloudQueueClient
Suggested answer: D

Explanation:

A queue allows processing of a message by a single consumer. Need a CloudQueueClient to access the Azure VM.

Incorrect Answers:

B, C: In contrast to queues, topics and subscriptions provide a one-to-many form of communication in a publish and subscribe pattern. It's useful for scaling to large numbers of recipients.

Reference:

https://docs.microsoft.com/en-us/azure/service-bus-messaging/service-bus-queues-topics-subscriptions

asked 02/10/2024
Kristian Gutierrez
47 questions
User
Your answer:
0 comments
Sorted by

Leave a comment first