Question 41:
You are tasked to use the Language Detection feature of Text Analytics in Azure. You provide the JSON inputs and receive two outputs, as given in code snippets below. The first output (Output 1) provides a confidence score of 1, whereas the second output (Output 2) returns a confidence score of 0. Review the scenario given above and complete the following code snippets. (Choose two options) Output 1: <pre>"documents":[ { "detectedLanguage":{ "confidenceScore":1.0, "iso6391Name":"fr", "name":"......................................" }, "id":"1", "warnings":[ ] } ] </pre> Output 2: <pre>"documents":[ { "detectedLanguage":{ "confidenceScore":0.0, "iso6391Name":"(Unknown)", "name":"..................................." }, "id":"1", "warnings":[ ] } ] </pre>
Answer options:
A.fr B.French C.countryHint D.(Unknown)