nerdexam
Microsoft

AZ-204 · Question #481

Drag and Drop Question You are developing an application to store millions of images in Azure blob storage. The images are uploaded to an Azure blob storage container named companyimages contained…

The correct answer is companymedia; companyimages; Status = Final. The correct URI construction uses 'companymedia' as the storage account name, 'companyimages' as the container name, and 'Status = Final' as the tag filter expression. The Azure Blob Storage Find Blobs by Tags API uses the format…

Submitted by amina.ke· Mar 30, 2026Develop solutions that use Azure Blob Storage - specifically constructing REST API requests to filter blobs using index tags in Azure Blob Storage

Question

Drag and Drop Question You are developing an application to store millions of images in Azure blob storage. The images are uploaded to an Azure blob storage container named companyimages contained in an Azure blob storage account named companymedia. The stored images are uploaded with multiple blob index tags across multiple blobs in the container. You must find all blobs whose tags match a search expression in the container. The search expression must evaluate an index tag named status with a value of final. You need to construct the GET method request URI. How should you complete the URI? To answer, drag the appropriate parameters to the correct request URI targets. Each parameter may be used once, more than once, or not at all. You may need to drag the split bar between panes or scroll to view content. Answer:

Answer Area

Drag items

Status = FinalStatus <= FinalCompanymediacompanyimages

Correct arrangement

  • companymedia
  • companyimages
  • Status = Final

Explanation

The correct URI construction uses 'companymedia' as the storage account name, 'companyimages' as the container name, and 'Status = Final' as the tag filter expression. The Azure Blob Storage Find Blobs by Tags API uses the format: https://{account}.blob.core.windows.net/{container}?restype=container&comp=blobs&where={filter}, where the filter expression uses an equality operator (=) to match the exact tag value 'Final' for the index tag 'Status'.

Topics

#Azure Blob Storage#Blob Index Tags#REST API#Storage Queries

Community Discussion

No community discussion yet for this question.

Full AZ-204 Practice