BONUS!!! JPTestKing AI-102ダンプの一部を無料でダウンロード:https://drive.google.com/open?id=1CA5oKOmKct3EnvlZOUpHBMghjurTZ8Mt
AI-102試験の準備をするとき、がむしゃらにITに関連する知識を学ぶのは望ましくない勉強法です。実際は試験に合格するコツがあるのですよ。もし試験に準備するときに良いツールを使えば、多くの時間を節約することができるだけでなく、楽に試験に合格する保障を手にすることもできます。どんなツールかと聞きたいでしょう。それはもちろんJPTestKingのAI-102問題集ですよ。
Microsoft AI-102試験は、Microsoft AzureでAIソリューションを設計および実装するために認定されたプロフェッショナルを目指す人を対象としています。この試験は、Azure AI Engineer Associate認定トラックの一部であり、AzureサービスとAIコンセプトの基本的な理解を持つ候補者を対象としています。
>> Microsoft AI-102シュミレーション問題集 <<
JPTestKingのMicrosoftのAI-102トレーニング資料は完璧な資料で、世界的に最高なものです。これは品質の問題だけではなく、もっと大切なのは、JPTestKingのMicrosoftのAI-102試験資料は全てのIT認証試験に適用するもので、ITの各領域で使用できます。それはJPTestKingが受験生の注目を浴びる理由です。受験生の皆様は我々を信じて、依頼しています。これもJPTestKingが実力を体現する点です。我々の試験トレーニング資料はあなたが買いてから友達に勧めなければならない魅力を持っています。本当に皆様に極大なヘルプを差し上げますから。
Microsoft AI-102試験は、AIおよび機械学習の分野でキャリアアップを目指す個人に最適です。この認定は、世界的に認められ、雇用主から高く評価されています。Azureサービスおよびツールを使用してAIソリューションを実装する企業は、これらのソリューションを設計および実装する知識とスキルを持つ個人を常に求めています。
質問 # 399
You are developing an application that includes language translation.
The application will translate text retrieved by using a function named getTextToBeTranslated. The text can be in one of many languages. The content of the text must remain within the Americas Azure geography.
You need to develop code to translate the text to a single language.
How should you complete the code? To answer, select the appropriate options in the answer area.
NOTE: Each correct selection is worth one point.
正解:
解説:
Explanation:
You are building an application that:
* Uses Azure Translator service to translate text.
* The text comes from getTextToBeTranslated().
* The text can be in many languages.
* Requirement: the content must remain within the Americas Azure geography.
* Output: must translate text into a single language (English in this case).
* The Translator service provides region-specific endpoints.
* For Americas geography, you must use the North America (NAM) endpoint:
* https://api-nam.cognitive.microsofttranslator.com/translate
* Other options like api-apc (Asia Pacific) or api-nam.../detect are incorrect because:
* /detect is used to identify the source language, not translate.
* /transliterate is for script conversion, not translation.
* We need the /translate path.
* To specify the target language, you must use the to query string parameter. Example:
* ?to=en
* Options like from=en or suggestedFrom=en are not correct here, because:
* The text can be in many languages # we don't know the source language in advance.
* Translator automatically detects the source if from is not specified.
* We only need to define the target language.
var endpoint = "https://api-nam.cognitive.microsofttranslator.com/translate"; var apiKey = "YOUR_SUBSCRIPTION_KEY"; var text = getTextToBeTranslated(); var body = "[{'Text':'" + text + "'}]"; var client = new HttpClient(); client.DefaultRequestHeaders.Add("Ocp-Apim-Subscription-Key", apiKey); var uri = endpoint + "?to=en"; HttpResponseMessage response; var content = new StringContent(body, Encoding.UTF8, "application/json"); response = await client.PutAsync(uri, content);
* Endpoint: https://api-nam.cognitive.microsofttranslator.com/translate
* URI: ?to=en
* Translator v3.0 Reference
* Region-specific Translator endpoints
質問 # 400
You are building a customer support chatbot.
You need to configure the bot to identify the following:
* Code names for internal product development
* Messages that include credit card numbers
The solution must minimize development effort.
Which Azure Cognitive Service for Language feature should you use for each requirement? To answer, drag the appropriate features to the correct requirements. Each feature may be used once, more than once, or not at all. You may need to drag the split bar between panes or scroll to view content NOTE: Each correct selection is worth one point.
正解:
解説:
質問 # 401
You are planning the product creation project.
You need to build the REST endpoint to create the multilingual product descriptions.
How should you complete the URI? To answer, select the appropriate options in the answer area.
NOTE: Each correct selection is worth one point.
正解:
解説:
Reference:
https://docs.microsoft.com/en-us/azure/cognitive-services/translator/reference/v3-0-translate
Topic 2, Contoso, Ltd.
Infrastructure
Contoso has the following subscriptions:
* Azure
* Microsoft 365
* Microsoft Dynamics 365
Azure Active (Azure AD) Directory
Contoso has Azure Active Directory groups for securing role-based access. The company uses the following group naming conventions:
* ICountryJ-[Levell-[Role]
* [Level]-[Role]
Intellectual Property
Contoso has the intellectual property shown in the following table.
Text-based content is provided only in one language and is not translated.
Planned Projects
Contoso plans to develop the following:
* A document processing workflow to extract information automatically from PDFs and images of financial documents
* A customer-support chatbot that will answer questions by using FAQs
* A searchable knowledgebase of all the intellectual property
Technical Requirements
Contoso identifies the following technical requirements:
* All content must be approved before being published.
* All planned projects must support English, French, and Portuguese.
* All content must be secured by using role-based access control (RBAC).
* RBAC role assignments must use the principle of least privilege.
* RBAC roles must be assigned only to Azure Active Directory groups.
* Al solution responses must have a confidence score that is equal to or greater than 70 percent.
* When the response confidence score of an Al response is lower than 70 percent, the response must be improved by human input.
Chatbot Requirements
Contoso identifies the following requirements for the chatbot:
* Provide customers with answers to the FAQs.
* Ensure that the customers can chat to a customer service agent.
* Ensure that the members of a group named Management-Accountants can approve the FAQs.
* Ensure that the members of a group named Consultant-Accountants can create and amend the FAQs.
* Ensure that the members of a group named the Agent-CustomerServices can browse the FAQs.
* Ensure that access to the customer service agents is managed by using Omnichannel for Customer Service.
* When the response confidence score is low. ensure that the chatbot can provide other response options to the customers.
Document Processing Requirements
Contoso identifies the following requirements for document processing:
* The document processing solution must be able to process standardized financial documents that have the following characteristics:
* Contain fewer than 20 pages.
* Be formatted as PDF or JPEG files.
* Have a distinct standard for each office.
* The document processing solution must be able to extract tables and text from the financial documents.
* The document processing solution must be able to extract information from receipt images.
* Members of a group named Management-Bookkeeper must define how to extract tables from the financial documents.
* Members of a group named Consultant-Bookkeeper must be able to process the financial documents.
Knowledgebase Requirements
Contoso identifies the following requirements for the knowledgebase:
* Supports searches for equivalent terms
* Can transcribe jargon with high accuracy
* Can search content in different formats, including video
* Provides relevant links to external resources for further research
質問 # 402
Select the answer that correctly completes the sentence.
正解:
解説:
質問 # 403
You have a factory that produces cardboard packaging for food products. The factory has intermittent internet connectivity.
The packages are required to include four samples of each product.
You need to build a Custom Vision model that will identify defects in packaging and provide the location of the defects to an operator. The model must ensure that each package contains the four products.
Which project type and domain should you use? To answer, drag the appropriate options to the correct targets.
Each option may be used once, more than once, or not at all. You may need to drag the split bar between panes or scroll to view content NOTE: Each correct selection is worth one point.
正解:
解説:
Explanation
質問 # 404
......
AI-102復習問題集: https://www.jptestking.com/AI-102-exam.html
P.S. JPTestKingがGoogle Driveで共有している無料かつ新しいAI-102ダンプ:https://drive.google.com/open?id=1CA5oKOmKct3EnvlZOUpHBMghjurTZ8Mt