[2026年03月03日]200-901日本語試験問題集でリアル試験と100%同じ問題と解答 [Q37-Q62]

Share

[2026年03月03日]200-901日本語試験問題集でリアル試験と100%同じ問題と解答

200-901日本語テストエンジン問題集トレーニングには484問あります

質問 # 37
下部のコードを、コードが欠落しているボックスにドラッグ アンド ドロップして、REST API リクエストを呼び出す Python スクリプトを作成します。Python スクリプトは、効果的なプロジェクト管理を目的として、ToDo リストからタスクのリストを取得します。すべてのオプションが使用されるわけではありません。

正解:

解説:


質問 # 38
特性を左から右の対応するソフトウェア開発方法論にドラッグアンドドロップしますか?

正解:

解説:


質問 # 39
ドラッグアンドドロップの質問
Cisco DNA Center API を使用して認証トークンを取得するには、下部のコードを、コードが欠落しているボックスにドラッグ アンド ドロップします。すべてのオプションが使用されるわけではありません。

正解:

解説:


質問 # 40
Git コマンド git merge を使用すると、開発でどのアクションを実行できますか?

  • A. 変更をリモートリポジトリにプッシュする
  • B. ブランチを切り替える
  • C. ブランチの作成、一覧表示、名前変更、削除
  • D. 複数のコミットシーケンスを 1 つの統合された履歴に結合します。

正解:D

解説:
Reference:
The git merge command is used to combine the changes from one branch into another. This command takes the contents of a source branch and integrates it with the target branch, effectively merging the history of commits from both branches into one unified history.
Cisco DevNet Associate Certification Guide: Chapter on Source Control with Git, specifically on branch management and merging.
Git documentation: git merge command usage and examples.


質問 # 41
左側のFinesse APIの要素を、右側の機能の説明にドラッグアンドドロップします。

正解:

解説:

Explanation

1 - D, 2 - F, 3 - A, 4 - E, 5 - B, 6 - G, 7 - C


質問 # 42
ドラッグアンドドロップの質問
展示を参照してください。


左側のコードを右側の項目番号にドラッグ アンド ドロップして Meraki コードを完成させ、このネットワークを使用したクライアントのリストを取得します。

正解:

解説:


質問 # 43
バージョン管理を使用する場合、コードレビューはどのプロセスの前に実行されますか?

  • A. Checkout of code
  • B. Branching code
  • C. Committing code
  • D. Merge of code

正解:C


質問 # 44
空白を埋めてPythonスクリプトを完成させ、Pythonリクエストライブラリのインポートリクエストを使用してルームのWebex Teamsメンバーシップを更新します

正解:

解説:
request, headers , payload


質問 # 45
ドラッグアンドドロップの質問
左側のステップを右側の順序にドラッグ アンド ドロップして、共通の CI/CD パイプライン プロセスを作成します。すべてのオプションが使用されるわけではありません。

正解:

解説:


質問 # 46

展示を参照してください。開発者は、ソース コードがパブリック GitHub リポジトリでホストされているオープン ソース プロジェクトに取り組んでいるチームの一員です。アプリケーションの構築中、セキュリティ上の懸念に対処するため、サーバー上の認証情報を暗号化しました。数か月後、開発者はハッカーがアカウントにアクセスできたことに気付きました。展示には、ログイン プロセスのソース コードの一部が含まれています。なぜ攻撃者は開発者のアカウントにアクセスできたのでしょうか。

  • A. 認証に TLS プロトコルの代わりに SSL 証明書が使用されました。
  • B. 資格情報はソース コード内で暗号化されました。
  • C. アプリケーションはサーバーとの通信を暗号化していませんでした。
  • D. エンコードされた資格情報はソース コードで利用可能でした。

正解:D

解説:
The exhibit shows that the credentials are base64 encoded and included in the source code. Base64 encoding is not a secure method of protecting credentials as it can be easily decoded. Therefore, an attacker who gains access to the source code can decode the credentials and gain unauthorized access to the account. Proper security practices should involve storing credentials securely, such as using environment variables or secure vaults, and not hardcoding them in the source code.
References:
* OWASP - Storing Passwords Securely
* Cisco DevNet Associate Certification Guide


質問 # 47
展示を参照してください。

どの JSON スニペットが YANG モデルに従って新しいインターフェースを構成しますか?

  • A.
  • B.
  • C.
  • D.

正解:C

解説:
To determine the correct JSON snippet for configuring a new interface according to the YANG model, we need to carefully examine both the YANG model definitions and the provided JSON snippets. Here's a step-by-step explanation:
* YANG Model Analysis:
* The ietf-interfaces YANG module defines a container interfaces with a list interface.
* Each interface has the following important leaves: name, enabled, and description.
* The ietf-ip YANG module augments the interface list with a container ipv4, which includes a list address. Each address has the ip and netmask leaves.
* Key Elements in JSON:
* To configure an interface, the JSON must include the name of the interface, its enabled status, and the IP address configuration.
* The structure should reflect the hierarchy defined by the YANG models.
* Options Analysis:
* Option A:
json
Copy code
"ietf-interfaces:interface": {
"name": "Loopback100",
"enabled": true,
"ietf-ip:ipv4": {
"address": [
{
"ip": "10.255.254.1",
"netmask": "255.255.255.0"
}
]
}
}
* This option correctly follows the hierarchy specified in the YANG model. The interface includes name and enabled leaves and augments with ietf-ip:ipv4 which includes the address list with ip and netmask.
* Option B:
"ietf-interfaces": {
"interface": {
"name": "Loopback100",
"enabled": true,
"ietf-ip": {
"ipv4": {
"address": [
{
"ip": "10.255.254.1",
"netmask": "255.255.255.0"
}
]
}
}
}
}
* This option incorrectly nests interface directly under ietf-interfaces, which does not match the YANG model's structure.
* Option C:
"interface": {
"name": "Loopback100",
"enabled": true,
"ipv4": {
"address": [
{
"ip": "10.255.254.1",
"netmask": "255.255.255.0"
}
]
}
}
* This option misses the namespace prefixes ietf-interfaces and ietf-ip required by the YANG model.
* Option D:
"ietf-interfaces:interface": {
"name": "Loopback100",
"enabled": true,
"ietf-ip:ipv4:address": [
{
"ip": "10.255.254.1",
"netmask": "255.255.255.0"
}
]
}
* This option incorrectly uses ietf-ip:ipv4:address directly, which does not align with the proper hierarchy where address should be nested inside ipv4.
Correct Explanation:
* Option A correctly adheres to the YANG model hierarchy and namespace specifications.
* It properly nests address within ipv4, which is itself nested within ietf-ip augmentation to interface.
* This structure is consistent with how the YANG models define the relationships between the elements.
References:
* Understanding of YANG models and their use: Cisco DevNet YANG Introduction
* YANG Data Models in NETCONF: RFC 6020


質問 # 48
展示を参照してください。


開発者は、指定された API ドキュメントと cURL コマンドを使用して、指定された API の API のトラブルシューティングを行っています。この問題の原因は何ですか?

  • A. 指定されたAPIトークンの有効期限が切れています
  • B. ユーザーは自分のアカウントからメッセージを投稿することはできません
  • C. 認証ヘッダーが欠落しているか不完全です
  • D. リクエスト本文が欠落しているか不完全です

正解:C

解説:
The error message in the cURL response indicates that the request requires a valid access token set in the Authorization request header. This error is common when the authorization header is either missing or the token provided is incorrect or expired.
To resolve this issue, ensure the correct Bearer token is included in the Authorization header, formatted as follows:
-H "Authorization: Bearer YOUR_ACCESS_TOKEN"
Reference:
Cisco DevNet Associate Exam Topics: Security and Access Management (understanding how to handle API tokens and authorization) Cisco Webex API Documentation (details on how to properly format API requests and handle authorization)


質問 # 49
ルーティングプロトコルトラフィックはどのネットワークプレーンで処理されますか?

  • A. データプレーン
  • B. 認証プレーン
  • C. コントロールプレーン
  • D. 管理プレーン

正解:C

解説:
Routing protocol traffic is handled on the control plane of a network device. The control plane is responsible for the exchange of routing information, the computation of the best paths, and the creation of the routing table. Protocols such as OSPF, BGP, and EIGRP operate at the control plane level to ensure that routers have the necessary information to make forwarding decisions. The data plane, on the other hand, is responsible for the actual forwarding of packets based on the routing table created by the control plane. More information on network planes can be found in the Cisco Networking Basics.


質問 # 50
ネットワークオートメーションインターフェイスを左側から、右側でサポートされているトランスポートプロトコルにドラッグアンドドロップします。

正解:

解説:


質問 # 51
展示を参照してください。

このAnsibleプレイブックを実行した結果はどうなりますか?

  • A. PlaybookはCISCO_ROUTER_01の実行中の構成をバックアップします。
  • B. プレイブックは新しい起動構成をCISCO_ROUTER_01にコピーします。
  • C. プレイブックはCISCO_ROUTER_01に新しい実行構成をコピーします。
  • D. プレイブックは、C1SCO_ROUTER_01の起動構成をバックアップします。

正解:D


質問 # 52
下部のコードを、コードが欠落しているボックスにドラッグ アンド ドロップして、REST API リクエストを呼び出す Python スクリプトを作成します。すべてのオプションが使用されるわけではありません。

正解:

解説:

Explanation:
The Python script provided is designed to make a POST request to a REST API to create a new task in a to-do list application. Here's a step-by-step explanation of the script:
* Import the requests library to handle HTTP requests.
* Define the task dictionary with summary and description.
* Use the requests.post method to send a POST request to the specified URL, passing the task data as
* JSON and setting the appropriate Content-Type header.
* Check if the response status code is not 201 (which indicates successful creation). If it's not, raise an ApiError with the status code.
* Print the created task's ID from the JSON response.
The provided code options are:
* requests: the library used for making HTTP requests.
* status_code: used to check the HTTP response status.
* Content-Type: a header specifying the media type of the resource.
* raise: used to raise an exception if the status code is not as expected.
* return is not used in this context.
References:
* Cisco DevNet Associate Certification Guide
* Python Requests Library Documentation


質問 # 53
展示を参照してください。

このYANGモジュールには何が表されていますか?

  • A. トポロジ
  • B. OpenFlow
  • C. BGP
  • D. インターフェース管理

正解:D


質問 # 54
172.16.0.0のサブネットを含み、マスクが
255.255.0.0?

  • A. クラス C
  • B. クラス B
  • C. クラスA
  • D. クラスD

正解:B

解説:
RFC 1918 defines private IP address ranges for use within private networks. The address space 172.16.0.0 to
172.31.255.255 is designated as private and falls under class B.
* Class B Address Space: The range 172.16.0.0 to 172.31.255.255 is a private IP address range designated for class B networks.
* Subnet Mask: A subnet mask of 255.255.0.0 (/16) is commonly used within this range to create subnets.
References:
* RFC 1918 Address Allocation: RFC 1918


質問 # 55

展示を参照してください。コード スニペットを下部からコード内の空白にドラッグ アンド ドロップして、FastEthernet 2/0 インターフェイスのキープアライブを有効にします。すべてのオプションが使用されるわけではありません。

正解:

解説:


質問 # 56
Bashシェルを使用する場合、devnetコマンドの出力が「output.txt」という名前のタイルにどのように保存されますか?

  • A. devnet & output.txt
  • B. devnet > output.txt
  • C. devnet I output.txt
  • D. devnet < output.txt

正解:B

解説:
In the Bash shell, the output of a command can be redirected to a file using the > operator. This operator takes the standard output (stdout) of the command and writes it to the specified file.
* Option B (devnet > output.txt): This redirects the output of the devnet command to a file named output.txt.
* Option A (devnet & output.txt): This is not a valid redirection operator.
* Option C (devnet < output.txt): This uses the file output.txt as input to the devnet command, which is not the requirement.
* Option D (devnet I output.txt): This is not a valid redirection operator.
Reference: Linux Shell Redirection


質問 # 57
展示を参照してください。この Dockerfile からイメージをビルドするときに、EXPOSE 行はどの機能を実行しますか?

  • A. この Docker イメージで起動されたコンテナのローカル ポート 8080 には、共同ホストされたコンテナと外部クライアントからアクセスできます。
  • B. ローカル ポート 8080 は、この Docker イメージで起動されたコンテナーと同じ Docker ホスト上で実行されている他のコンテナーからアクセスできます。
  • C. この Docker イメージで起動されたコンテナのローカル ポート 8080 は、外部クライアントからアクセスできます。
  • D. Dockerfile の EXPOSE コマンドで IP アドレスが指定されていないため、ローカル ポート 8080 にはまったくアクセスできません。

正解:B

解説:
The EXPOSE instruction informs Docker that the container listens on the specified network ports at runtime.
The EXPOSE instruction does not actually publish the port. It functions as a type of documentation between the person who builds the image and the person who runs the container, about which ports are intended to be published. To actually publish the port when running the container, use the -p flag on docker run to publish and map one or more ports, or the -P flag to publish all exposed ports and map them to high-order ports.
Regardless of the EXPOSE settings, you can override them at runtime by using the -p flag.
https://docs.docker.com/engine/reference/builder/


質問 # 58
NETCONFはデフォルトでどのポートで動作しますか?

  • A. 0
  • B. 1
  • C. 2
  • D. 3

正解:B

解説:
NETCONF (Network Configuration Protocol) is an IETF standard protocol used for managing network devices. By default, NETCONF operates over the SSH protocol on port 830. This default port is defined to separate NETCONF traffic from other types of SSH traffic, providing a dedicated channel for network configuration tasks.


質問 # 59

展示を参照してください。この応答になる RESTCONF 要求はどれですか?

  • A.
  • B.
  • C.
  • D.

正解:A


質問 # 60
展示を参照してください。

YANGモジュールの定義とCisco IOc XEデバイスに送信されるRESTCONFクエリが表示されます。 RESTCONFインターフェースが204ステータスコードで応答する場合、正しいステートメントはどれですか。

  • A. クエリにより、ログの70レベルが更新されたか、デバイスに存在しない場合は作成されました。
  • B. クエリはログ記録70レベルを取得しました。
  • C. ロギング70レベルの取得でクエリが失敗しました。
  • D. パスが無効なため、クエリはログの70レベルを設定できませんでした。

正解:A

解説:
Reference:
https://www.cisco.com/c/en/us/td/docs/ios-xml/ios/prog/configuration/1611/b_1611_programmability_cg/restcon


質問 # 61
どの 2 つのコマンドが Git リポジトリに新しいブランチを作成しますか? (2 つ選択してください。)

  • A. git チェックアウト
  • B. git ブランチ
  • C. git ブランチ
  • D. git チェックアウト -b
  • E. git チェックアウト

正解:B、D


質問 # 62
......

200-901日本語練習テストPDF試験材料:https://jp.fast2test.com/200-901J-premium-file.html


弊社を連絡する

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

我々の働いている時間: ( GMT 0:00-15:00 )
月曜日から土曜日まで

サポート: 現在連絡 

English Deutsch 繁体中文 한국어