You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: learn-pr/wwl-azure/discover-azure-message-queue/9-knowledge-check.yml
+46-2Lines changed: 46 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -13,5 +13,49 @@ metadata:
13
13
ms.custom:
14
14
- N/A
15
15
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."
Copy file name to clipboardExpand all lines: learn-pr/wwl-azure/discover-azure-message-queue/includes/8a-send-receive-messages-queue-storage.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -17,7 +17,7 @@ To complete the exercise, you need:
17
17
18
18
## Get started
19
19
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:
0 commit comments