Skip to content

Commit a82c60e

Browse files
authored
changed files by pdets auto publish service, publishid[52bb4f25-0d20-4389-8c56-84b755671c08] and do [publish].
1 parent a019266 commit a82c60e

File tree

3 files changed

+47
-28
lines changed

3 files changed

+47
-28
lines changed

learn-pr/wwl-azure/discover-azure-message-queue/9-knowledge-check.yml

Lines changed: 46 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,5 +13,49 @@ metadata:
1313
ms.custom:
1414
- N/A
1515
durationInMinutes: 3
16-
content: |
17-
[!include[](includes/9-knowledge-check.md)]
16+
quiz:
17+
questions:
18+
- content: "What is a key consideration when choosing to use Service Bus queues over Storage queues?"
19+
choices:
20+
- content: "Your solution requires the queue to provide a guaranteed first-in-first-out (FIFO) ordered delivery."
21+
isCorrect: true
22+
explanation: "Correct. Service Bus queues provide a guaranteed first-in-first-out (FIFO) ordered delivery."
23+
- content: "Your application must store over 80 gigabytes of messages in a queue."
24+
isCorrect: false
25+
explanation: "Incorrect. This is a feature of Storage queues, not Service Bus queues."
26+
- content: "You require server side logs of all of the transactions executed against your queues."
27+
isCorrect: false
28+
explanation: "Incorrect. This is also a feature of Storage queues, not Service Bus queues."
29+
- content: "What is the main difference between Service Bus queues and topics with subscriptions?"
30+
choices:
31+
- content: "Queues allow processing of a message by a single consumer, while topics with subscriptions provide a one-to-many form of communication."
32+
isCorrect: true
33+
explanation: "Correct. A queue allows processing of a message by a single consumer. In contrast, topics and subscriptions provide a one-to-many form of communication."
34+
- content: "Queues allow processing of a message by multiple consumers, while topics with subscriptions provide a one-to-one form of communication."
35+
isCorrect: false
36+
explanation: "Incorrect. Queues offer First In, First Out (FIFO) message delivery to one or more competing consumers, but only one consumer processes each message."
37+
- content: "Topics with subscriptions allow processing of a message by a single consumer, while queues provide a one-to-many form of communication."
38+
isCorrect: false
39+
explanation: "Incorrect. Topics and subscriptions provide a one-to-many form of communication in a publish and subscribe pattern, scaling to large numbers of recipients."
40+
- content: "What is the role of the `ContentType` property in Service Bus message payloads?"
41+
choices:
42+
- content: "It encrypts the payload for secure transmission."
43+
isCorrect: false
44+
explanation: "Incorrect. The `ContentType` property doesn't encrypt the payload."
45+
- content: "It determines the size of the payload."
46+
isCorrect: false
47+
explanation: "Incorrect. The `ContentType` property doesn't determine the size of the payload."
48+
- content: "It enables applications to describe the payload, with the suggested format for the property values being a MIME content-type description."
49+
isCorrect: true
50+
explanation: "Correct. The `ContentType` property describes the payload, suggesting a MIME content-type format."
51+
- content: "What is the purpose of the 'QueueClient' class in Azure Queue Storage when using .NET?"
52+
choices:
53+
- content: "It manages the configuration files for client applications."
54+
isCorrect: false
55+
explanation: "Incorrect. The 'QueueClient' class is not used for managing configuration files, but for interacting with queues in Azure Queue Storage."
56+
- content: "It retrieves and manipulates queues stored in Azure Queue Storage."
57+
isCorrect: true
58+
explanation: "Correct. The 'QueueClient' class is used to interact with queues in Azure Queue Storage, including creating, retrieving, and deleting queues."
59+
- content: "It creates and manage messages within a specific queue."
60+
isCorrect: false
61+
explanation: "Incorrect. While 'QueueClient' does interact with messages, it is primarily used to retrieve and manipulate queues, not individual messages."

learn-pr/wwl-azure/discover-azure-message-queue/includes/8a-send-receive-messages-queue-storage.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ To complete the exercise, you need:
1717

1818
## Get started
1919

20-
Select the **Launch Exercise** button, it opens the exercise instructions in a new browser window. When you're finished with the exercise, return here to:
20+
Select the **Launch Exercise** button to open the exercise instructions in a new browser window. When you're finished with the exercise, return here to:
2121

2222
> [!div class="checklist"]
2323
> * Complete the module

learn-pr/wwl-azure/discover-azure-message-queue/includes/9-knowledge-check.md

Lines changed: 0 additions & 25 deletions
This file was deleted.

0 commit comments

Comments
 (0)