Question 156:
Your organization has a requirement to analyze documents that are written in multiple different languages. You are tasked to detect the language using the Detect Language API of Text Analytics in Azure. While you analyze the JSON output for the documents, you realize that the results are ambiguous. Here is an example of the JSON output:
<pre class="brush:java;">{
"documents": [
{
"id": "1",
"detectedLanguage": {
"name": "(Unknown)",
"iso6391Name": "(Unknown)",
"confidenceScore": 0.0
},
"warnings": []
}
],
}
</pre>
Which input parameter would you use in your code to remove this ambiguity in detecting language when you identify the origin of the text is not known or same words are used in the different languages?
Answer options:
A.detectedLanguage B.iso6391Name C.countryHint D.name