AI-102 · Question #138
Which Azure Storage service implements the key/value model?
The correct answer is C. Azure Table. Azure Table storage is the Azure Storage service that implements a key/value NoSQL data model for storing large amounts of structured non-relational data.
Question
Options
- AAzure Files
- BAzure Blob
- CAzure Table
- DAzure Queue
How the community answered
(25 responses)- A4% (1)
- B8% (2)
- C88% (22)
Why each option
Azure Table storage is the Azure Storage service that implements a key/value NoSQL data model for storing large amounts of structured non-relational data.
Azure Files provides fully managed file shares in the cloud, accessible via SMB or NFS protocols, and is not a key/value store.
Azure Blob storage is optimized for storing massive amounts of unstructured object data, such as text or binary data, but it uses containers and blobs, not a key/value data model at the primary storage level.
Azure Table storage is a NoSQL key/attribute store that uses a schema-less design, where data is organized as tables and rows, and each row is uniquely identified by a combination of PartitionKey and RowKey, forming a key/value structure.
Azure Queue storage is used for storing large numbers of messages that can be accessed from anywhere in the world, acting as a message queue service, not a persistent key/value data store.
Concept tested: Azure Table Storage data model
Source: https://learn.microsoft.com/en-us/azure/storage/tables/table-storage-overview
Topics
Community Discussion
No community discussion yet for this question.