合格保証付きクイズ2024年最新の実際に出る検証済みのAZ-220日本語無料試験問題集
無料Microsoft Certified: Azure IoT Developer Specialty AZ-220日本語究極な学習ガイド(更新されたのは205問があります)
質問 # 115
Windows 10 IoTEnterpriseを実行する新しいデバイスにAzureIoTEdgeランタイムをインストールする必要があります。
アクションを実行する順序はどれですか?回答するには、適切なアクションをアクションのリストから回答領域に移動し、正しい順序で配置します。
正解:
解説:
Explanation:
Step 1: From Azure IoT hub, create an IoT Edge device
In the Azure Cloud Shell, enter the following command to create a device named myEdgeDevice in your hub.
az iot hub device-identity create --device-id myEdgeDevice --edge-enabled --hub-name {hub_name} View the connection string for your device, which links your physical device with its identity in IoT Hub. Copy the value of the connectionString key from the JSON output and save it. This value is the device connection string. You'll use this connection string to configure the IoT Edge runtime in the step 3.
Step 2: From an elevated PowerShell prompt, run the Deploy-IoTEdge cmdlet.
Install the Azure IoT Edge runtime on your IoT Edge device.
Run PowerShell as an administrator.
Run the Deploy-IoTEdge command, which performs the following tasks:
- Checks that your Windows machine is on a supported version.
- Turns on the containers feature.
- Downloads the moby engine and the IoT Edge runtime.
Step 3: From an elevated PowerShell prompt, run the Initialize-IoTEdge cmdlet Step 4: Enter the IoT Edge device connection string.
Configure the IoT Edge device with a device connection string.
Reference:
https://docs.microsoft.com/en-us/azure/iot-edge/quickstart
質問 # 116
Azure IoT ハブを含む Azure IoT ソリューションを構築し、Azure Stream Analytics を使用して複数階建ての建物の環境データを処理します。ソリューションの IoT デバイスは、次のデータを提供します。
* 温度
* 建物
* 部屋
* 床
IoT デバイスがデータを配列として送信するために使用できるデータ形式を特定する必要があります。何を特定する必要がありますか?
- A. XML のみ
- B. アブロのみ
- C. JSON のみの OC。
- D. Avro と JSON のみ
- E. アブロ、JSON。および XML
正解:C
質問 # 117
メッセージエンリッチメントを使用して、報告された温度がクリティカルしきい値を超えたときに、IoTゲートウェイデバイスから送信されるメッセージにデバイス情報を追加する必要があります。
エンリッチメッセージの値をどのように設定する必要がありますか?回答するには、回答領域で適切なオプションを選択します。
注:それぞれの正しい選択は1ポイントの価値があります。
正解:
解説:
Reference:
https://docs.microsoft.com/bs-cyrl-ba/azure/iot-hub/iot-hub-message-enrichments-overview
質問 # 118
次のクエリを持つAzureStreamAnalyticsジョブを作成します。
ジョブは、Azure IoTHubの入力とAzure関数への出力を持つように構成されています。
次の各ステートメントについて、ステートメントがtrueの場合は、[はい]を選択します。それ以外の場合は、[いいえ]を選択します。
注:正しい選択はそれぞれ1ポイントの価値があります。
正解:
解説:
Explanation
Box 1: Yes
All time handling operations in Azure Stream Analytics are in UTC.
Box 2: No
Tumbling windows are a series of fixed-sized, non-overlapping and contiguous time intervals.
Box 3: Yes
Reference:
https://docs.microsoft.com/en-us/stream-analytics-query/time-management-azure-stream-analytics
質問 # 119
プロトタイプから本番環境に移行するAzure IoTハブがあります。
IoTデバイスをIoTハブに接続する予定です。デバイスにはハードウェアセキュリティモジュール(HSM)があります。デバイスとIoTハブの間で最も安全な認証方法を使用する必要があります。会社のポリシーでは、内部で生成された証明書の使用を禁止しています。
どの認証方法を使用する必要がありますか?
- A. ルート証明機関(CA)によって署名されたX.509証明書。
- B. 証明書の拇印
- C. 対称鍵
- D. X.509自己署名証明書
正解:A
解説:
Explanation
Purchase X.509 certificates from a root certificate authority (CA). This method is recommended for production environments.
The hardware security module, or HSM, is used for secure, hardware-based storage of device secrets, and is the most secure form of secret storage. Both X.509 certificates and SAS tokens can be stored in the HSM Reference:
https://docs.microsoft.com/en-us/azure/iot-dps/concepts-security
質問 # 120
注:この質問は、同じシナリオを提示する一連の質問の一部です。シリーズの各質問には、述べられた目標を達成する可能性のある独自の解決策が含まれています。一部の質問セットには複数の正しい解決策がある場合がありますが、他の質問セットには正しい解決策がない場合があります。
このセクションの質問に回答した後は、その質問に戻ることはできません。その結果、これらの質問はレビュー画面に表示されません。
標準層のAzureIoTハブとIoTデバイスのフリートがあります。
デバイスは、Message Queuing Telemetry Transport(MQTT)またはAdvanced Message Queuing Protocol(AMQP)のいずれかを使用してIoTハブに接続します。
IoTデバイスにデータを送信する必要があり、各デバイスが応答する必要があります。各デバイスは、データを処理して応答するのに3分かかります。
解決策:クラウドからデバイスへのメッセージを使用し、クラウドからデバイスへのフィードバックエンドポイントを監視して確認応答が成功するかどうかを確認します。
これは目標を達成していますか?
- A. いいえ
- B. はい
正解:A
解説:
IoT Hub provides three options for device apps to expose functionality to a back-end app:
Twin's desired properties for long-running commands intended to put the device into a certain desired state. For example, set the telemetry send interval to 30 minutes.
Direct methods for communications that require immediate confirmation of the result. Direct methods are often used for interactive control of devices such as turning on a fan.
Cloud-to-device messages for one-way notifications to the device app.
Reference:
https://docs.microsoft.com/en-us/azure/iot-hub/iot-hub-devguide-c2d-guidance
質問 # 121
注:この質問は、同じシナリオを提示する一連の質問の一部です。シリーズの各質問には、指定された目標を達成できる独自のソリューションが含まれています。一部の質問セットには複数の正しい解決策がある場合がありますが、他の質問セットには正しい解決策がない場合があります。
この質問の質問に回答した後は、その質問に戻ることはできません。その結果、これらの質問はレビュー画面に表示されません。
Azure IoTハブ、デバイスプロビジョニングサービスインスタンス、および1,000の接続されたIoTデバイスを含むAzure IoTソリューションがあります。
すべてのIoTデバイスは、1つの登録グループを使用して自動的にプロビジョニングされます。 IoTハブへの接続からIoTデバイスを一時的に無効にする必要があります。
解決策:デバイスプロビジョニングサービスから、登録グループを無効にし、IoTデバイスがプロビジョニングされるIoTハブのIDレジストリのデバイスエントリを無効にします。
ソリューションは目標を達成していますか?
- A. はい
- B. いいえ
正解:A
解説:
You may find it necessary to deprovision devices that were previously auto-provisioned through the Device Provisioning Service.
In general, deprovisioning a device involves two steps:
1. Disenroll the device from your provisioning service, to prevent future auto-provisioning. Depending on whether you want to revoke access temporarily or permanently, you may want to either disable or delete an enrollment entry.
2. Deregister the device from your IoT Hub, to prevent future communications and data transfer. Again, you can temporarily disable or permanently delete the device's entry in the identity registry for the IoT Hub where it was provisioned.
Reference:
https://docs.microsoft.com/bs-latn-ba/azure/iot-dps/how-to-unprovision-devices
質問 # 122
Azure IoTハブをデプロイします。
IoTハブがデバイスからメッセージを受信できることを示す必要があります。
どの3つのアクションを順番に実行する必要がありますか?回答するには、適切なアクションをアクションのリストから回答領域に移動し、正しい順序に並べます。
正解:
解説:
1 - Register a device in IoT Hub
2 - Configure the device connection string on a device client.
3 - Trigger a new send event from a device client.
Reference:
https://docs.microsoft.com/en-us/azure/iot-edge/how-to-register-device
質問 # 123
次の図に示すように、モジュールがトラフィックをルーティングするように、Azure IoTEdgeモジュールルーティングを構成する必要があります。
IoT Edgeモジュールのルートをどのように完了する必要がありますか?回答するには、回答領域で適切なオプションを選択します。
注:正しい選択はそれぞれ1ポイントの価値があります。
正解:
解説:
Reference:
https://docs.microsoft.com/en-us/azure/iot-edge/tutorial-machine-learning-edge-06-custom-modules
質問 # 124
複数のIoTEdgeデバイスを含むAzureIoTEdgeソリューションを展開しています。
モジュール間ルーティングを構成する必要があります。
デプロイメントマニフェストのどのセクションにルートを追加する必要がありますか?
- A. $edgeHub
- B. systemModules
- C. storeAndForwardConfiguration
- D. modules
正解:A
解説:
Routes are declared in the $edgeHub desired properties.
Reference:
https://docs.microsoft.com/en-us/azure/iot-edge/module-composition
質問 # 125
Device1という名前のデバイスで実行されるSampleModuleという名前のAzureIoTEdgeモジュールがあります。
Microsoft Visual Studio Codeを使用して、SampleModuleのコードを変更します。
コードをコンテナレジストリにプッシュしてから、モジュールをDevice1にデプロイする必要があります。
Visual Studio Codeから実行する必要がある2つのアクションはどれですか?それぞれの正解は、解決策の一部を示しています。
注:正しい選択はそれぞれ1ポイントの価値があります。
- A. SampleModuleコードをビルドしてレジストリにプッシュします。
- B. 単一のデバイスの展開を作成します。
- C. デバイス1の共有アクセス署名(SAS)トークンを生成します。
- D. loTEdgeソリューションを構築します。
- E. デプロイメントマニフェストを生成します。
正解:B、E
解説:
C: Configure a deployment manifest. A deployment manifest is a JSON document that describes which modules to deploy, how data flows between the modules, and desired properties of the module twins.
B: You deploy modules to your device by applying the deployment manifest that you configured with the module information.
Reference:
https://docs.microsoft.com/en-us/azure/iot-edge/how-to-deploy-modules-vscode
質問 # 126
Azure Time Series Insightsのデプロイを計画しています。
Time Series Insightsを展開する前に、iothub1で何を作成する必要がありますか?
- A. 新しい消費者グループ
- B. 新しい共有アクセスポリシー
- C. IPフィルター規則
- D. 新しいメッセージルート
正解:A
解説:
Explanation
Create a dedicated consumer group in the IoT hub for the Time Series Insights environment to consume from.
Each Time Series Insights event source must have its own dedicated consumer group that isn't shared with any other consumer. If multiple readers consume events from the same consumer group, all readers are likely to exhibit failures.
Reference:
https://docs.microsoft.com/en-us/azure/time-series-insights/time-series-insights-how-to-add-an-event-source- iothub
質問 # 127
カスタムデバイステンプレートを持つAzure IoT Centralアプリケーションがあります。
次のアクティビティをサポートするには、デバイステンプレートを設定する必要があります。
*報告された消費電力を返します。
*必要なファン速度を設定します。
*デバイスのリセットルーチンを実行します。
*ファンのシリアル番号を読み取ります。
各アクティビティにどのオプションを使用する必要がありますか?それぞれの正解は、ソリューションの一部を示しています。
注:それぞれの正しい選択は1ポイントの価値があります。
正解:
解説:
Explanation
Box 1: Measurement
Telemetry/measurement is a stream of values sent from the device, typically from a sensor. For example, a sensor might report the ambient temperature.
Box 2: Property
The template can provide a writeable fan speed property
Properties represent point-in-time values. For example, a device can use a property to report the target temperature it's trying to reach. You can set writeable properties from IoT Central.
Box 3: Settings
Box 4: Command
You can call device commands from IoT Central. Commands optionally pass parameters to the device and receive a response from the device. For example, you can call a command to reboot a device in 10 seconds.
Reference:
https://docs.microsoft.com/en-us/azure/iot-central/core/howto-set-up-template
質問 # 128
注:この質問は、同じシナリオを提示する一連の質問の一部です。シリーズの各質問には、述べられた目標を達成する可能性のある独自の解決策が含まれています。一部の質問セットには複数の正しい解決策がある場合がありますが、他の質問セットには正しい解決策がない場合があります。
このセクションの質問に回答した後は、その質問に戻ることはできません。その結果、これらの質問はレビュー画面に表示されません。
AzureIoTハブから入力を受信して出力をAzureBlobストレージに送信するAzureStreamAnalyticsジョブがあります。このジョブには、互換性レベル1.1と6つのストリーミングユニットがあります。
ジョブに対して次のクエリがあります。
ストリーミングユニット数を12に増やす予定です。
追加のストリーミングユニットを利用してスループットを向上させるには、ジョブを最適化する必要があります。
解決策:ジョブの互換性レベルを1.2に変更します。
これは目標を達成していますか?
- A. いいえ
- B. はい
正解:A
解説:
Max number of Streaming Units with one step and with no partitions is 6.
Reference:
https://docs.microsoft.com/en-us/azure/stream-analytics/stream-analytics-parallelization
質問 # 129
Azure Time Series Insightsのインスタンスと、IoTデバイスからストリーミングテレメトリを受信するAzure IoTハブがあります。
デバイスからテレメトリを受信するには、Time Series Insightsを構成する必要があります。
どの3つのアクションを順番に実行する必要がありますか?回答するには、適切なアクションをアクションのリストから回答領域に移動し、正しい順序に並べます。
正解:
解説:
Explanation:
Step 1: Create a dedicated consumer group..
Add a consumer group to your IoT hub.
Applications use consumer groups to pull data from Azure IoT Hub. To reliably read data from your IoT hub, provide a dedicated consumer group that's used only by this Time Series Insights environment.
Step 2: Add a new Time Series Insights event source.
Add a new event source
Sign in to the Azure portal.
In the left menu, select All resources. Select your Time Series Insights environment.
Under Settings, select Event Sources, and then select Add.
In the New event source pane, for Event source name, enter a name that's unique to this Time Series Insights environment. For example, enter event-stream.
Step 3: Configure the Time Series event source to connect to an existing IOT hub Step 4: For Source, select IoT Hub.
Step 5: Select a value for Import option:
If you already have an IoT hub in one of your subscriptions, select Use IoT Hub from available subscriptions. This option is the easiest approach.
Reference:
https://docs.microsoft.com/en-us/azure/time-series-insights/time-series-insights-how-to-add-an-event-source-iothub
質問 # 130
Azure Digital Twins クエリを作成しています。
Twin1 の ID を持つデジタル ツインとの包含関係を持つすべてのデジタル ツインを返す必要があります。
クエリをどのように完了する必要がありますか? 回答するには、回答エリアで適切なオプションを選択します。 注: 正しい選択はそれぞれ 1 ポイントの価値があります。
正解:
解説:
質問 # 131
Azure IoTハブがあります。
次の表に示すように、3種類のIoTデバイスを接続する予定です。
デバイスごとに適切な通信プロトコルを選択する必要があります。
あなたは何を選ぶべきですか?回答するには、適切なプロトコルを正しいデバイスにドラッグします。各プロトコルは、1回、複数回、またはまったく使用しない場合があります。ペイン間で分割バーをドラッグするか、コンテンツを表示するにはスクロールする必要がある場合があります。
注:それぞれの正しい選択は1ポイントの価値があります。
正解:
解説:
Reference:
https://docs.microsoft.com/en-us/azure/iot-hub/iot-hub-devguide-protocols
質問 # 132
Windows 10 IoTEnterpriseを実行する新しいデバイスにAzureIoTEdgeランタイムをインストールする必要があります。
アクションを実行する順序はどれですか?回答するには、適切なアクションをアクションのリストから回答領域に移動し、正しい順序で配置します。
正解:
解説:
Explanation
Step 1: From Azure IoT hub, create an IoT Edge device
In the Azure Cloud Shell, enter the following command to create a device named myEdgeDevice in your hub.
az iot hub device-identity create --device-id myEdgeDevice --edge-enabled --hub-name {hub_name} View the connection string for your device, which links your physical device with its identity in IoT Hub.
Copy the value of the connectionString key from the JSON output and save it. This value is the device connection string. You'll use this connection string to configure the IoT Edge runtime in the step 3.
Step 2: From an elevated PowerShell prompt, run the Deploy-IoTEdge cmdlet.
Install the Azure IoT Edge runtime on your IoT Edge device.
* Run PowerShell as an administrator.
* Run the Deploy-IoTEdge command, which performs the following tasks:
- Checks that your Windows machine is on a supported version.
- Turns on the containers feature.
- Downloads the moby engine and the IoT Edge runtime.
Step 3: From an elevated PowerShell prompt, run the Initialize-IoTEdge cmdlet Step 4: Enter the IoT Edge device connection string.
Configure the IoT Edge device with a device connection string.
Reference:
https://docs.microsoft.com/en-us/azure/iot-edge/quickstart
質問 # 133
Azure IoTハブをデプロイします。
IoTハブがデバイスからメッセージを受信できることを示す必要があります。
どの3つのアクションを順番に実行する必要がありますか?回答するには、適切なアクションをアクションのリストから回答領域に移動し、正しい順序に並べます。
正解:
解説:
Explanation
Step 1: Register a device in IoT Hub
Before you can use your IoT devices with Azure IoT Edge, you must register them with your IoT hub. Once a device is registered, you can retrieve a connection string to set up your device for IoT Edge workloads.
Step 2: Configure the device connection string on a device client.
When you're ready to set up your device, you need the connection string that links your physical device with its identity in the IoT hub.
Step 3: Trigger a new send event from a device client.
Reference:
https://docs.microsoft.com/en-us/azure/iot-edge/how-to-register-device
質問 # 134
100台のIoTデバイスを監視するAzureIoTCentralアプリケーションがあります。
デバイスの温度が100度を超えたときにアラートを生成する必要があります。ソリューションは、次の要件を満たす必要があります。
コストを最小限に抑える
展開時間を最小限に抑える
あなたは何をするべきか?
- A. メールアクションを使用するルールを作成します。
- B. Azure Blobストレージへのデータエクスポートを実行し、Azure関数を作成します。
- C. デバイステンプレートにメールプロパティを作成します。
- D. Azure ServiceBusへのデータエクスポートを実行します。
正解:A
解説:
Explanation
You can create rules in IoT Central that trigger actions, such as sending an email, in response to telemetrybased conditions, such as device temperature exceeding a threshold.
Reference:
https://docs.microsoft.com/en-us/azure/iot-central/core/howto-configure-rules-advanced
質問 # 135
Azure Time Series Insightsのデプロイを計画しています。
Time Series Insightsを展開する前に、iothub1で何を作成する必要がありますか?
- A. 新しい消費者グループ
- B. 新しい共有アクセスポリシー
- C. IPフィルター規則
- D. 新しいメッセージルート
正解:A
解説:
Explanation
Create a dedicated consumer group in the IoT hub for the Time Series Insights environment to consume from.
Each Time Series Insights event source must have its own dedicated consumer group that isn't shared with any other consumer. If multiple readers consume events from the same consumer group, all readers are likely to exhibit failures.
Reference:
https://docs.microsoft.com/en-us/azure/time-series-insights/time-series-insights-how-to-add-an-event-source- iothub
Topic 1, Contoso
Case Study
This is a case study. Case studies are not timed separately. You can use as much exam time as you would like to complete each case. However, there may be additional case studies and sections on this exam. You must manage your time to ensure that you are able to complete all questions included on this exam in the time provided.
To answer the questions included in a case study, you will need to reference information that is provided in the case study. Case studies might contain exhibits and other resources that provide more information about the scenario that is described in the case study. Each question is independent of the other question on this case study.
At the end of this case study, a review screen will appear. This screen allows you to review your answers and to make changes before you move to the next sections of the exam. After you begin a new section, you cannot return to this section.
To start the case study
To display the first question on this case study, click the button. Use the buttons in the left pane to explore the content of the case study before you answer the questions. Clicking these buttons displays information such as business requirements, existing environment, and problem statements. If the case study has an All Information tab, note that the information displayed is identical to the information displayed on the subsequent tabs. When you are ready to answer a question, click the button to return to the question.
Existing Environment. Current State of Development
Contoso produces a set of Bluetooth sensors that read the temperature and humidity. The sensors connect to IoT gateway devices that relay the data.
All the IoT gateway devices connect to an Azure IoT hub named iothub1.
Existing Environment. Device Twin
You plan to implement device twins by using the following JSON sample.
Existing Environment. Azure Stream Analytics
Each room will have between three to five sensors that will generate readings that are sent to a single IoT gateway device. The IoT gateway device will forward all the readings to iothub1 at intervals of between 10 and 60 seconds.
You plan to use a gateway pattern so that each IoT gateway device will have its own IoT Hub device identity.
You draft the following query, which is missing the GROUP BY clause.
SELECT
AVG(temperature),
System.TimeStamp() AS AsaTime
FROM
Iothub
You plan to use a 30-second period to calculate the average temperature reading of the sensors.
You plan to minimize latency between the condition reported by the sensors and the corresponding alert issued by the Stream Analytics job.
Existing Environment. Device Messages
The IoT gateway devices will send messages that contain the following JSON data whenever the temperature exceeds a specified threshold.
The level property will be used to route the messages to an Azure Service Bus queue endpoint named criticalep.
Existing Environment. Issues
You discover connectivity issues between the IoT gateway devices and iothub1, which cause IoT devices to lose connectivity and messages.
Requirements. Planning Changes
Contoso plans to make the following changes:
* Use Stream Analytics to process and view data.
* Use Azure Time Series Insights to visualize data.
* Implement a system to sync device statuses and required settings.
* Add extra information to messages by using message enrichment.
* Create a notification system to send an alert if a condition exceeds a specified threshold.
* Implement a system to identify what causes the intermittent connection issues and lost messages.
Requirements. Technical Requirements
Contoso must meet the following requirements:
* Use the built-in functions of IoT Hub whenever possible.
* Minimize hardware and software costs whenever possible.
* Minimize administrative effort to provision devices at scale.
* Implement a system to trace message flow to and from iothub1.
* Minimize the amount of custom coding required to implement the planned changes.
* Prevent read operations from being negatively affected when you implement additional services.
質問 # 136
次の表に示すデバイスがあります。
Azure IoTソリューションの概念実証(POC)を実装しています。
POCの一部としてAzure IoT Edgeデバイスをデプロイする必要があります。
どの2つのデバイスにIOTエッジを展開できますか?それぞれの正解は完全なソリューションを示します。
注:それぞれの正しい選択は1ポイントの価値があります。
- A. デバイス4
- B. デバイス1
- C. デバイス3
- D. デバイス2
正解:C、D
解説:
Explanation
Azure IoT Edge runs great on devices as small as a Raspberry Pi3 to server grade hardware.
Tier 1.
The systems listed in the following table are supported by Microsoft, either generally available or in public preview, and are tested with each new release.
Reference:
https://docs.microsoft.com/en-us/azure/iot-edge/support
質問 # 137
Azure IoTハブのトラブルシューティングを行っています。
一部のテレメトリメッセージがダウンストリーム処理に到達する前にドロップされることがわかります。 IoT Hubスロットリングが根本的な原因であると思われます。
IoTエラーハブの診断設定のどのログを使用して、調整エラーイベントをキャプチャする必要がありますか?
- A. Connections
- B. Routes
- C. C2DCommands
- D. DeviceTelemetry
正解:D
解説:
Explanation
The device telemetry category tracks errors that occur at the IoT hub and are related to the telemetry pipeline.
This category includes errors that occur when sending telemetry events (such as throttling) and receiving telemetry events (such as unauthorized reader). This category cannot catch errors caused by code running on the device itself.
Note: The metric d2c.telemetry.ingress.sendThrottle is the number of throttling errors due to device throughput throttles.
Reference:
https://docs.microsoft.com/en-us/azure/iot-hub/iot-hub-monitor-resource-health
質問 # 138
温度モジュールを5つのIoTEdgeデバイスにデプロイするD1という名前のAzureIoTEdge自動デプロイメントがあります。
D1の展開優先度は10で、次のモジュール構成があります。
ReportingModeという名前の新しいツインプロパティを追加する新しいレイヤー展開を作成する必要があります。新しい展開では、D1によって設定された既存のモジュール構成を上書きしてはなりません。
展開をどのように構成する必要がありますか?回答するには、回答領域で適切なオプションを選択します。
注:正しい選択はそれぞれ1ポイントの価値があります。
正解:
解説:
Reference:
https://docs.microsoft.com/en-us/azure/iot-edge/module-deployment-monitoring
質問 # 139
......
今すぐトップクラスを試そうAZ-220日本語練習試験問題:https://jp.fast2test.com/AZ-220J-premium-file.html