nerdexam
Microsoft

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.

Submitted by dimitri_ru· Mar 30, 2026Plan and manage an Azure AI solution

Question

Which Azure Storage service implements the key/value model?

Options

  • AAzure Files
  • BAzure Blob
  • CAzure Table
  • DAzure Queue

How the community answered

(25 responses)
  • A
    4% (1)
  • B
    8% (2)
  • C
    88% (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.

AAzure Files

Azure Files provides fully managed file shares in the cloud, accessible via SMB or NFS protocols, and is not a key/value store.

BAzure Blob

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.

CAzure TableCorrect

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.

DAzure Queue

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

#Azure Storage Services#Key-Value Model#Azure Table Storage

Community Discussion

No community discussion yet for this question.

Full AI-102 Practice