Question 62:
You have a requirement to translate the Italian language to the French language during Speech translation in Azure. Review the code below and complete it by choosing two answer choices.
<pre>static async Task TranslateSpeechAsync()
{
var translationConfig =
SpeechTranslationConfig.FromSubscription(SPEECH__SUBSCRIPTION__KEY, SPEECH__SERVICE__REGION);
………………………………….. = "it-IT";
…………………………………...("fr");
}
</pre>
Answer options:
A.translationConfig.SpeechRecognitionLanguage B.translationConfig.TranslationRecognizer C.translationConfig.AddTargetLanguage D.translationConfig.RemoveTargetLanguage