AWS Exams GCP Exams Azure Exams GitHub Exams Jira Exams ISC2 Exams

Video: You are developing a text processing solution azure video

Question 1 Be Honest
« Back   Next ai-102-ai-engineer-assoc Question »
Answer

Full Certification Question

You are developing a text processing solution. You develop the following method. def get_key_phrases(text_analytics_client, text): response = text_analytics_client.extract_key_phrases(text, language = "en") print("keyphrases") for keyphrase in response.key_phrases: print(f' {keyphrase}') You call the method by using the following code. get_key_phrases(text_analytics_client, "the cat sat on the mat") Select Yes if the statement is True. Otherwise, select No. Statement: The call will output key phrases from the input string to the console.