According to the Microsoft Azure AI Fundamentals (AI-900) official study guide and the Microsoft Learn module “Identify capabilities of Azure Cognitive Services for Language”, the Azure Translator service is a cloud-based machine translation service used to translate text or entire documents between languages in real time. It uses REST APIs or client libraries to translate text input, detect languages, and support multiple target languages in a single request.
“The following service call will accept English text as an input and output Italian and French text: /translate?from=en & to=it,fr – Yes.This URL format is correct because the Translator service API allows multiple target languages to be specified in a single to parameter separated by commas. In this case, from=en defines the source language (English), and to=it,fr requests translations into Italian (it) and French (fr). The API would return results in both target languages simultaneously. This syntax is officially documented in Microsoft Learn as the valid format for multi-language translation.
“The following service call will accept English text as an input and output Italian and French text: /translate?from=en & to=fr & to=it – No.This format is incorrect, as the Translator API does not support repeating the to parameter multiple times. Only one to parameter is valid, and multiple target languages must be provided as a comma-separated list within the same to parameter.
“The Translator service can be used to translate documents from English to French.” – Yes.This statement is true. The Translator service supports both text translation and document translation. The document translation capability allows the translation of whole files such as Word, PowerPoint, or PDF documents while preserving formatting and structure. This feature is included in the official Translator API under “Document Translation.”
In summary, the AI-900 study content clarifies that:
✅ Translator can translate full documents between languages
Contribute your Thoughts:
Chosen Answer:
This is a voting comment (?). You can switch to a simple comment. It is better to Upvote an existing comment if you don't have anything to add.
Submit