Which of the following are true regarding supported operations granted with an SAS token? (Choose three.) https://blogs.msdn.microsoft.com/windowsazurestorage/2012/06/12/introducing-table-sas-shared-accesssignature-queue-sas-and-update-to-blob-sas/

A.
You can grant read access to existing blobs.
B.
You can create new blob containers.
C.
You can add, update, and delete queue messages.
D.
You can add, update, and delete table entities.
E.
You can query table entities.
Explanation:
You can add or update but not delete queue messages.
C seems to be correct
SharedAccessQueuePermissions.ProcessMessages – Permission to get and delete messages granted.
https://docs.microsoft.com/en-us/dotnet/api/microsoft.windowsazure.storage.queue.sharedaccessqueuepermissions?view=azure-dotnet
0
0
Seem to me all options are available except B. Hopefully the exam question has more details.
0
0
The only invalid option is B, all the others are correct:
The following is a list of operations supported by SAS:
* Reading or writing blobs, blob properties, and blob metadata
* Leasing or creating a snapshot of a blob
* Listing blobs in a container
* Deleting a blob
* Adding, updating, or deleting table entities
* Querying tables
* Processing queue messages (read and delete)
* Adding and updating queue messages
* Retrieving queue metadata
* This section covers creating an SAS token to access storage services using the Storage Client Library.
Source
https://www.microsoftpressstore.com/articles/article.aspx?p=2315377&seqNum=4
4
0
maybe cannot update the message
1
1
Only B is incorrect, you can add, update and delete queue messages,
here is link:
https://docs.microsoft.com/en-us/rest/api/storageservices/Constructing-an-Account-SAS?redirectedfrom=MSDN#account-sas-permissions-by-operation
0
0
Question is outdated; you can now also create new blob containers. Therefore, all options are true.
0
0