AZ-203日本語 無料問題集「Microsoft Developing Solutions for Microsoft Azure (AZ-203日本語版)」

:165ドラッグドロップ
自律輸送システム用のソフトウェアソリューションを開発しています。このソリューションでは、大規模なデータセットとAzure Batch処理を使用して、車両全体のナビゲーションセットをシミュレートします。
Azure Batchでソリューションの計算ノードを作成する必要があります。
あなたは何をするべきか?
アクションを正しい順序に並べます。
正解:

Explanation

With .NET:
Step 1: In the Azure portal, create a Batch account.
First we create a batch account.
Step 2: In a .NET method, call the method: BatchClient.PoolOperations.CreatePool Now that you have a Batch account, create a sample pool of Windows compute nodes for test purposes. To create a Batch pool, the app uses the BatchClient.PoolOperations.CreatePool method to set the number of nodes, VM size, and a pool configuration.
Step 3: In a .NET method, call the method: BatchClient.PoolOperations.CreateJob Now that you have a pool, create a job to run on it. A Batch job is a logical group for one or more tasks. A job includes settings common to the tasks, such as priority and the pool to run tasks on. Initially the job has no tasks. The app uses the BatchClient.JobOperations.CreateJob method to create a job on your pool.
Step 4: In a .NET method, call the method: batchClient.JobOperations.AddTask Now create sample tasks to run in the job. Typically you create multiple tasks that Batch queues and distributes to run on the compute nodes. The app adds tasks to the job with the AddTask method, which queues them to run on the compute nodes.
For example: batchClient.JobOperations.AddTask(JobId, tasks);
References:
https://docs.microsoft.com/en-us/azure/batch/quick-create-portal
https://docs.microsoft.com/en-us/azure/batch/quick-run-dotnet
あなたの会社は会社のロゴ画像を使用するいくつかのウェブサイトを持っています。静的イメージを格納するには、Azureコンテンツ配信ネットワーク(CDN)を使用します。
CDNとPoint of Presence(POP)サーバーがイメージを配布し、アイテムを正しい順序でリストする方法の正しいプロセスを決定する必要があります。
アクションはどの順序で発生しますか?回答するには、すべての行動を行動のリストから回答領域に移動し、正しい順序で並べます。
正解:

Explanation

Step 1: A user requests the image..
A user requests a file (also called an asset) by using a URL with a special domain name, such as <endpoint name>.azureedge.net. This name can be an endpoint hostname or a custom domain. The DNS routes the request to the best performing POP location, which is usually the POP that is geographically closest to the user.
Step 2: If no edge servers in the POP have the..
If no edge servers in the POP have the file in their cache, the POP requests the file from the origin server. The origin server can be an Azure Web App, Azure Cloud Service, Azure Storage account, or any publicly accessible web server.
Step 3: The origin server returns the..
The origin server returns the file to an edge server in the POP.
An edge server in the POP caches the file and returns the file to the original requestor (Alice). The file remains cached on the edge server in the POP until the time-to-live (TTL) specified by its HTTP headers expires. If the origin server didn't specify a TTL, the default TTL is seven days.
Step 4: Subsequent requests for..
Additional users can then request the same file by using the same URL that the original user used, and can also be directed to the same POP.
If the TTL for the file hasn't expired, the POP edge server returns the file directly from the cache. This process results in a faster, more responsive user experience.
References:
https://docs.microsoft.com/en-us/azure/cdn/cdn-overview
注:この質問は同じシナリオを提示する一連の質問の一部です。連載の各質問には、記載されている目標を達成できる可能性のある固有の解決策が含まれています。他の人が正しい解決策を持っていないかもしれない間、いくつかの質問セットは複数の正しい解決策を持つかもしれません。
このセクションで質問に回答した後は、それに戻ることはできません。その結果、これらの質問はレビュー画面に表示されません。
認証イベントがポリシーに従って起動され処理されるようにする必要があります。
解決策:新しいAzure Event Gridトピックを作成してイベントの購読を追加します。
解決策は目標を満たしていますか?

解説: (JPNTest メンバーにのみ表示されます)
通知待ち時間の問題を解決する必要があります。
どの2つのアクションを実行する必要がありますか?それぞれの正しい答えは解決策の一部を表しています。
注:それぞれ正しい選択は1ポイントの価値があります。

正解:A、C 解答を投票する
解説: (JPNTest メンバーにのみ表示されます)
会社は、Azure Service Busを使用して、パブリッシュ/サブスクライブ(Pub / Sub)メッセージングコンポーネントを実装しています。最初のサブスクリプションアプリケーションを開発しています。
Azureポータルで、各トピックのサブスクリプションにメッセージが送信されていることがわかります。正しい詳細を指定してサブスクリプションクライアントオブジェクトを作成および初期化しますが、サブスクリプションアプリケーションはまだメッセージを消費していません。
サブスクリプションクライアントのソースコードを完了する必要があります
あなたは何をするべきか?

解説: (JPNTest メンバーにのみ表示されます)
Azure Kubernetes Service(AKS)クラスターにアプリケーションをデプロイする準備をしています。
アプリケーションは、クラスターを含むVNet内からのみ使用可能でなければなりません。
アプリケーションをデプロイする必要があります。
YAMLの展開をどのように完了する必要がありますか? 答えるには、適切なYAMLセグメントを正しい場所にドラッグします。 各YAMLセグメントは、1回、複数回、またはまったく使用できません。 コンテンツを表示するには、ペイン間で分割バーをドラッグするか、スクロールする必要がある場合があります。
注:それぞれの正しい選択には1ポイントの価値があります。
正解:

Explanation

To create an internal load balancer, create a service manifest named internal-lb.yaml with the service type LoadBalancer and the azure-load-balancer-internal annotation as shown in the following example:
YAML:
apiVersion: v1
kind: Service
metadata:
name: internal-app
annotations:
service.beta.kubernetes.io/azure-load-balancer-internal: "true"
spec:
type: LoadBalancer
ports:
- port: 80
selector:
app: internal-app
References:
https://docs.microsoft.com/en-us/azure/aks/internal-lb
Event Gridを使用して他のサービスと接続するアプリを作成しています。アプリのイベントデータは、コンプライアンスをチェックするサーバーレス機能に送信されます。この機能はあなたの会社によって維持されています。
あなたはあなたのリソースの範囲で新しいイベント購読を書きます。イベントは3特定期間後に無効化されなければなりません。セキュリティを確保するためにEvent Gridを設定する必要があります。
あなたは何を実装すべきですか?回答するには、[回答エリア]で適切なオプションを選択します。
注:それぞれ正しい選択は1ポイントの価値があります。
正解:

Explanation

Box 1: SAS tokens
Custom topics use either Shared Access Signature (SAS) or key authentication. Microsoft recommends SAS, but key authentication provides simple programming, and is compatible with many existing webhook publishers.
In this case we need the expiration time provided by SAS tokens.
Box 2: ValidationCode handshake
Event Grid supports two ways of validating the subscription: ValidationCode handshake (programmatic) and ValidationURL handshake (manual).
If you control the source code for your endpoint, this method is recommended.
一般向けのニュースAPI用のゲートウェイソリューションを開発します。ニュースAPIバックエンドはRESTfulサービスとして実装されており、OpenAPI仕様を使用しています。
Azure API Managementサービスインスタンスを使用してニュースAPIにアクセスできることを確認する必要があります。
どのAzure PowerShellコマンドを実行しますか?

解説: (JPNTest メンバーにのみ表示されます)
Azure Cosmos DB SQL APIを使用して、Azure Cosmos DBソリューションを開発しています。 データには数百万のドキュメントが含まれます。 各ドキュメントには、数百のプロパティが含まれる場合があります。
ドキュメントのプロパティには、パーティション化のための個別の値は含まれていません。 Azure Cosmos DBは、時間とともにすべてのパーティションにワークロードを均等に分散することにより、データベース内の個々のコンテナーをスケーリングして、アプリケーションのパフォーマンスニーズを満たす必要があります。
パーティションキーを選択する必要があります。
どの2つのパーティションキーを使用できますか? それぞれの正解は完全な解決策を提示します。
注:それぞれの正しい選択には1ポイントの価値があります。

正解:A、D 解答を投票する
解説: (JPNTest メンバーにのみ表示されます)
AzureでホストされているLinux仮想マシン(VM)に新しいアプリケーションをデプロイする予定です。
業界標準の暗号化技術を使用して組織のセキュリティおよびコンプライアンス要件に対応することにより、VM全体を安全に保護する必要があります。
VM用にAzure Disk Encryptionを構成する必要があります。
Azure Cliコマンドをどのように完了する必要がありますか?回答するには、回答エリアで適切なオプションを選択します。
注:それぞれの正しい選択には1ポイントの価値があります。
正解:

Explanation


Box 1: keyvault
Create an Azure Key Vault with az keyvault create and enable the Key Vault for use with disk encryption.
Specify a unique Key Vault name for keyvault_name as follows:
keyvault_name=myvaultname$RANDOM
az keyvault create \
--name $keyvault_name \
--resource-group $resourcegroup \
--location eastus \
--enabled-for-disk-encryption True
Box 2: keyvault key
The Azure platform needs to be granted access to request the cryptographic keys when the VM boots to decrypt the virtual disks. Create a cryptographic key in your Key Vault with az keyvault key create. The following example creates a key named myKey:
az keyvault key create \
--vault-name $keyvault_name \
--name myKey \
--protection software
Box 3: vm
Create a VM with az vm create. Only certain marketplace images support disk encryption. The following example creates a VM named myVM using an Ubuntu 16.04 LTS image:
az vm create \
--resource-group $resourcegroup \
--name myVM \
--image Canonical:UbuntuServer:16.04-LTS:latest \
--admin-username azureuser \
--generate-ssh-keys \
Box 4: vm encryption
Encrypt your VM with az vm encryption enable:
az vm encryption enable \
--resource-group $resourcegroup \
--name myVM \
--disk-encryption-keyvault $keyvault_name \
--key-encryption-key myKey \
--volume-type all
Note: seems to an error in the question. Should have enable instead of create.
Box 5: all
Encrypt both data and operating system.
References:
https://docs.microsoft.com/bs-latn-ba/azure/virtual-machines/linux/encrypt-disks

弊社を連絡する

我々は12時間以内ですべてのお問い合わせを答えます。

オンラインサポート時間:( UTC+9 ) 9:00-24:00
月曜日から土曜日まで

サポート:現在連絡