Implement natural language processing solutions1 / 5
You need to translate 500 documents from English to French while preserving their original layout and formatting. The documents are stored in Azure Blob Storage. Which Azure Translator feature should you use?
CorrectIncorrect
Alex
Asynchronous batch document translation (the option “Asynchronous batch document translation”) is the correct answer. Azure Translator's asynchronous document translation feature is specifically designed to translate whole documents in bulk while preserving the original document structure, formatting, and layout. It works directly with Azure Blob Storage containers — you specify a source container with your documents and a target container for the translated output. This is ideal for translating 500 documents stored in Azure Blob Storage.
Why each incorrect option is wrong:
- A) Custom Translator training — Custom Translator is used to build customized translation models tailored to your specific terminology and style. It is a training feature, not a translation execution feature. You would use it to improve translation quality for domain-specific content, not to perform the actual batch translation of documents.
- B) Text Translation API — The Text Translation API translates plain text strings in real time. It does not handle whole documents, does not preserve document formatting/layout, and is not designed for bulk file-based translation from Blob Storage. You would need to extract text, translate it, and reconstruct documents manually.
- C) Synchronous document translation — Synchronous document translation translates a single document at a time and returns the result immediately in the response. While it does preserve formatting, it is not suitable for translating 500 documents in bulk. The asynchronous batch approach is specifically designed for large-scale, multi-document translation scenarios.
(Source: https://learn.microsoft.com/en-us/azure/ai-services/translator/document-translation/overview)
Sourcelearn.microsoft.com
Follow-up answers are available in the app. Create a free account — no credit card required.
Question 1 of 5
Create a free account