You need to store data by using Azure Table storage.
What should you create first?
Click on the arrows to vote for the correct answer
A. B. C. D.B
First create an Azure storage account, then use Table service in the Azure portal to create a table.
Note: An Azure storage account contains all of your Azure Storage data objects: blobs, files, queues, and tables.
https://docs.microsoft.com/en-us/azure/storage/tables/table-storage-quickstart-portal https://docs.microsoft.com/en-us/azure/storage/common/storage-account-createTo store data in Azure Table Storage, you need to create a storage account first.
A storage account provides a unique namespace to store and access your Azure data objects such as blobs, files, queues, tables, and disks.
Once you create a storage account, you can create an Azure Table within that storage account. Azure Table Storage is a NoSQL data store that provides a key-value-based data structure that enables the storage of structured data.
To create a table in Azure Table Storage, you will need to follow these steps:
After you create a table, you can insert, update, delete, and query data using Azure Table Storage APIs, including REST APIs, .NET client libraries, and other client libraries.
In summary, the correct answer is B. a storage account, as it is the first step to create and manage various Azure data objects, including Azure Table Storage.