最新の100-490日本語試験のリアル試験問題 本日無料更新されました [Q33-Q57]

Share

最新の100-490日本語試験のリアル試験問題 本日無料更新されました

100-490日本語リアル試験問題解答は更新された[2025年01月06日]

質問 # 33
RJ-45ケーブルプラグのピンには、1〜8の番号が付けられています。プラグの金属ピンが手前を向いている場合、ピン1が一番左のピンです。 RJ-45 56Kループバックプラグでループするピンの2つのセットはどれですか。 (2つ選択してください。)

  • A. ピン1および4
  • B. ピン2および5
  • C. ピン1および7
  • D. ピン2および8
  • E. ピン2および7

正解:C、D

解説:
Loopback plugs are used to test the physical connections and configurations of network equipment. In a 56K modem loopback plug, the following pins are looped to create a test signal:
Pins 1 and 7 (Transmit): Looping the transmit pins back to each other allows the device to test its own signal transmission.
Pins 2 and 8 (Receive): Looping the receive pins back to each other allows the device to test its ability to receive its own signal.
Understanding RJ-45 Wiring:
RJ-45 connectors are standardized and have a specific pinout for various applications like Ethernet networking and analog telephony connections. You can find resources online that show the standard RJ-45 color coding and pin assignments.


質問 # 34
ESDは、直接的な接触または静電場によって引き起こされる、電位が異なる2つのオブジェクト間を流れる突然の瞬間的な電流です。 ESDを回避するために使用される3つのツールはどれですか? (3つ選択してください。)

  • A. 帯電防止マット
  • B. 負の静的バッグ
  • C. 帯電防止バッグ
  • D. 負の静的マット
  • E. ESDリストストラップ
  • F. ラテックス手袋

正解:A、C、E


質問 # 35
WAN接続の2つのコンポーネントは何ですか? (2つ選択してください。)

  • A. switch
  • B. router
  • C. bridge
  • D. CSU/DSU
  • E. hub

正解:B、D


質問 # 36
CLI管理目的でルーターへのダイヤルインアクセスに使用され、通常は通常のネットワークトラフィックを通過させないルーターポートはどれですか。

  • A. AUX
  • B. ファストイーサネット
  • C. チャネライズドシリアル
  • D. ギガビットイーサネット

正解:A


質問 # 37
RJ-45ストレートケーブルを使用するLANイーサネットデバイスの2つのペアはどれですか。 (2つ選択してください。)

  • A. スイッチからルーター
  • B. サーバーへの切り替え
  • C. スイッチからハブ
  • D. ルーター間
  • E. スイッチ間

正解:A、B


質問 # 38
Windowsコマンドプロンプトから、どのコマンドがコンピューターのローカルIPアドレスを表示しますか?

  • A. ip config
  • B. ipconfig
  • C. ipconfiguration
  • D. ip configuration

正解:B


質問 # 39
シスコでは、現場交換可能な部品の返品承認の追跡に何を使用していますか?

  • A. シリアル番号
  • B. RMA番号
  • C. FRU番号
  • D. 製品番号

正解:B


質問 # 40
Cisco IOSイメージのCiscoデバイスへのコピーを開始するコマンドはどれですか。

  • A. copy flash tftp
  • B. copy tftp flash
  • C. copy tftp nvram
  • D. copy xmodem flash

正解:B

解説:
The copy tftp flash command is used to download a Cisco IOS image from a TFTP (Trivial File Transfer Protocol) server and store it in the Flash memory of the Cisco device. Here's the breakdown of the command:
copy: Indicates a file transfer operation.
tftp: Specifies the use of the TFTP protocol.
flash: Specifies the destination as the flash memory of the Cisco device.
Why other options are incorrect:
copy tftp nvram: This would attempt to copy a file from a TFTP server to the NVRAM of the device. NVRAM is typically not the desired location for storing IOS images.
copy flash tftp: This command would copy a file from the local flash memory to a TFTP server (uploading).
copy xmodem flash: This would use the XMODEM protocol for the transfer, which is slower and less reliable than TFTP for Cisco IOS images.
https://en.wikipedia.org/wiki/Trivial_File_Transfer_Protocol


質問 # 41
シスコの設定などの単純なテキストドキュメントを操作するには、どのWindowsベースのテキストエディタが適していますか?

  • A. Microsoft Excel
  • B. Microsoft Word
  • C. Microsoft Access
  • D. Microsoft Notepad

正解:D

解説:
Microsoft Notepad is the preferred text editor for working with Cisco configuration files and other simple text documents for several reasons:
Plain Text Focus: Notepad is designed specifically for plain text editing. It does not add any formatting, hidden characters, or metadata that could interfere with the configuration file's structure.
Cisco Syntax Compatibility: Cisco configurations rely on specific syntax and spacing. Notepad preserves these elements accurately.
Universality: Notepad is a basic text editor included in all versions of Windows, ensuring accessibility and eliminating the need for additional software.
Why other options are not ideal:
Microsoft Word: Word is a word processor and includes formatting, fonts, and other features that are not compatible with Cisco configuration files. This formatting can corrupt the configuration.
Microsoft Access: Access is a database management system, not suited for text file editing.
Microsoft Excel: Excel is a spreadsheet application and adds its own structure and formatting that conflicts with configuration file formats.


質問 # 42
Telnet と SSH が機能する 2 つの方法とは何ですか? (2つお選びください。)

  • A. SSH は、ネットワーク デバイスへの安全なリモート アクセス接続を提供するプロトコルです。
  • B. ルータが再起動すると、Telnet ネットワーク管理接続が切断されます。
  • C. SSH は通信に既知の TCP ポート 23 を使用します。
  • D. セキュリティ上の理由から、SSH よりも Telnet が優先されます。
  • E. Telnet は、ネットワーク デバイスへの安全なリモート アクセス接続を提供するプロトコルです。

正解:A、B

解説:
* A. SSH...secure remote access: This is correct. SSH (Secure Shell) is designed specifically for secure remote access. It utilizes strong encryption to protect data transmissions, including login credentials and commands.
* B. Telnet...secure remote access: This is incorrect. Telnet is inherently insecure as it transmits all data, including sensitive passwords, in cleartext.
* C. SSH uses...TCP port 23: This is incorrect. SSH uses TCP port 22 by default, while Telnet uses TCP port 23.
* D. Telnet preferred...security reasons: This is incorrect. SSH is vastly preferred over Telnet due to its strong security features.
* E. Telnet connection...router reboots: This is correct. Telnet connections are not persistent, so a router reboot disrupts them. This re-enforces their lack of suitability for critical management tasks.
Key Points:
* Security: SSH is the recommended protocol for remote access to network devices due to its strong encryption and authentication mechanisms.
* Persistence: Telnet connections are temporary and get disrupted on events like router reboots.


質問 # 43
ギガビットイーサネットポートは通常どのタイプの物理コネクタを使用しますか?

  • A. RJ-45
  • B. DB-25
  • C. RJ-9
  • D. RJ-11

正解:A

解説:

The typical physical connector used for a Gigabit Ethernet port is an RJ-45. This connector is standard for network cabling and provides the necessary performance for Gigabit Ethernet, which is also known as 1000BASE-T. RJ-45 connectors are used because they can support higher data rates compared to other connectors like RJ-11 or RJ-9, which are commonly used for telephone connections, and DB-25, which is an older serial port connector not suitable for high-speed Ethernet connections1.
Reference :=
2: Ethernet Alliance - The Physical Layer of Ethernet 3: Altium - Gigabit Ethernet 101: Basics to Implementation 1: Ascent Optics - All You Need to Know About RJ45 Cables: Connectors, Interfaces, and... 4: Hardware Secrets - Gigabit Ethernet and How it works (a 2022 Guide)


質問 # 44
TFTPは、Cisco IOSや設定ファイルなどのファイルをデバイス間で転送するための単純なプロトコルです。どのデバイスをTFTPサーバーとして構成できますか?

  • A. Cisco Content Engine
  • B. modem
  • C. Cisco router
  • D. CSU/DSU

正解:C

解説:
Cisco routers can be readily configured to act as TFTP servers, allowing them to provide Cisco IOS images or configuration files to other devices. Here's why this is the correct answer:
Software Support: Cisco IOS includes built-in support for the TFTP protocol, making it easy to set up a TFTP server on a router.
Storage Capacity: Routers typically have flash memory where IOS images and other files can be stored, making them suitable repositories for TFTP transfers.
Network Accessibility: Routers play a central role in networks, making them an accessible location for TFTP file transfers.
Why other options are incorrect:
Cisco Content Engine: Content Engines are specialized network appliances designed for caching and accelerating web content delivery. They typically don't have functionality for acting as generic TFTP servers.
Modem: Modems primarily modulate/demodulate signals to facilitate communication over traditional telephone lines. They lack the software capabilities to run a TFTP server.
CSU/DSU: Channel Service Unit/Data Service Units are devices used to interface with digital leased lines. They don't possess the necessary software to run a TFTP server.


質問 # 45
USBサムドライブの2つの目的は何ですか? (2つ選択してください。)

  • A. ルーターのハードウェア情報を保存する
  • B. システムメモリサイズを増やす
  • C. PCとの間で構成ファイルをコピーする
  • D. IOSイメージをPCとの間でコピーします
  • E. システムログを保存する

正解:C、D


質問 # 46
コンフィギュレーションレジスタの値を設定する2つのコマンドはどれですか。 (2つ選択してください。)

  • A. rommon>confreg 0x2102
  • B. router(config)#configuration-register 0x2102
  • C. rommon>config-register 0x2102
  • D. router(config)#confreg 0x2102
  • E. router(config)#config-register 0x2102

正解:A、E

解説:
The configuration register on Cisco routers and switches controls specific bootup behaviors. Here's how to modify it:
1. In ROMmon Mode:
rommon>confreg 0x2102 : This command is used when the device is in ROMmon mode (a basic operating system loaded when the full Cisco IOS cannot be found). ROMmon offers limited functionality and is often used for troubleshooting or password recovery.
2. In Global Configuration Mode:
router(config)#config-register 0x2102 : This command is used from within the Cisco IOS itself when you have normal access to the router. You would enter privileged EXEC mode and then global configuration mode to use it.
Importance of Configuration Register Settings:
The most common reasons to modify the configuration register are:
Password Recovery: Setting the configuration register to 0x2142 tells the router to ignore the startup configuration (stored in NVRAM), allowing you to bypass password protection.
Changing Boot Behavior: Settings can control the boot sequence, such as specifying where the Cisco IOS image should be loaded from.
Reference:
Cisco Configuration Register: https://www.cisco.com/c/en/us/support/docs/routers/10000-series-routers/50421-config-register-use.html Understanding the Configuration Register (Cisco): https://networklessons.com/cisco/ccna-routing-switching-icnd1-100-105/configuration-register-cisco-ios


質問 # 47
ケーブルの一端のカラーワイヤーは、ケーブルの他端のカラーワイヤーと逆の順序になっています。この構成はどのケーブルを示していますか?

  • A. ロール
  • B. 同軸
  • C. クロスオーバー
  • D. ストレートスルー

正解:C


質問 # 48
キャリアネットワーク、携帯サイト、利用可能なサービスに関する情報を表示するコマンドはどれですか。

  • A. 携帯電話の無線を表示
  • B. セルラーユニットネットワークを表示
  • C. セルラーユニットのハードウェアを表示
  • D. セルラーユニットプロファイルを表示

正解:B

解説:
Reference:
https://www.cisco.com/c/en/us/td/docs/solutions/Verticals/EE/IG-WAN/EE-WAN-IG/EE-WAN- IGch2.html


質問 # 49
OSIモデルのどのレイヤーが、送信用のデータのフォーマット方法と物理メディアへのアクセスの制御方法を定義していますか?

  • A. プレゼンテーション
  • B. 輸送
  • C. ネットワーク
  • D. データリンク

正解:D

解説:
Reference:
https://itcertzone.wordpress.com/2011/01/24/the-seven-layers-of-the-osi-model/#:~:text=Layer% 202%3A%20The%20Data%20Link,reliable%20delivery%20of%20the%20data.


質問 # 50
FTP の 2 つの説明は何ですか? (2つお選びください。)

  • A. ルーターは FTP サーバーとして機能できます。
  • B. copy running-config ftp: コマンドは、FTP サーバから実行コンフィギュレーションにコンフィギュレーション ファイルをコピーします。
  • C. FTP はトランスポート プロトコルとして UDP を使用します。
  • D. FTP では通常認証が必要なため、Cisco ルーターは適切なユーザー名とパスワードを設定する必要があります。
  • E. FTP は Cisco IOS ソフトウェアを ROMMON モードでルータにロードします。

正解:B、D

解説:
1. It is built on a client-server model architecture and uses separate control and data connections between the client and the server2. Here are the explanations for the correct answers:
* B: The copy running-config ftp: command is used to copy the running configuration from a router to an FTP server or vice versa. This is a common method for backing up and restoring configurations on Cisco devices1.
* E: FTP typically requires authentication, which means a Cisco router acting as an FTP client must be configured with the appropriate username and password to access an FTP server. This ensures secure file transfer and access control1.
The other options are incorrect because:
* A: FTP is not used to load Cisco IOS Software to a router in ROMMON mode; this is typically done using TFTP or Xmodem.
* C: While a router can act as an FTP server, this is not a description of FTP itself.
* D: FTP uses TCP as its transport protocol, not UDP. FTP needs the reliability that TCP provides because it ensures the complete and accurate transfer of files1.


質問 # 51
RJ-45 56K ループバック プラグでループされている 2 つのピン セットはどれですか? (2つお選びください。)

  • A. ピン 1 と 7
  • B. ピン 1 と 4
  • C. ピン 2 と 5
  • D. ピン 2 と 7
  • E. ピン 2 と 8

正解:B、C

解説:
An RJ-45 56K loopback plug is used to test the functionality of network ports, particularly for T1/56K lines. The correct loopback wiring for such a plug involves looping pins 1 and 4, as well as pins 2 and 5. This configuration allows the device to send and receive signals on the same wire pairs, effectively testing the transmit and receive paths of the port1.


質問 # 52
UTPケーブルには銅線のペアがいくつありますか?

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

正解:B

解説:
A standard UTP (Unshielded Twisted Pair) cable contains 4 pairs of copper wires, which are twisted together to help cancel out electromagnetic interference and support data transmission across various networking and telecommunications applications1. Each pair consists of two individual copper cables twisted around each othe


質問 # 53
ラップトップをCiscoルータのイーサネットポートに接続するために使用されるポートのタイプはどれですか。

  • A. fiber
  • B. straight-through
  • C. crossover
  • D. rollover

正解:B


質問 # 54
400 Gbps イーサネット ポートをサポートする 2 つの Cisco Nexus 3400 シリーズ スイッチはどれですか? (2つお選びください。)

  • A. Cisco Nexus 34180YC
  • B. Cisco Nexus 3408-S
  • C. Cisco Nexus 34200YC-SM
  • D. Cisco Nexus 3464C
  • E. Cisco Nexus 3432D-S

正解:B、E

解説:
The Cisco Nexus 3432D-S and Cisco Nexus 3408-S are part of the Cisco Nexus 3400 Series switches that support 400-Gbps Ethernet ports. The Cisco Nexus 3432D-S is designed with 32 ports of 400G, providing high-density and high-throughput capabilities1. The Cisco Nexus 3408-S offers flexibility with 100G or 400G Line-Card Expansion Modules (LEMs), allowing for configurations with 32 ports of 400G2. These switches are engineered for data centers requiring high performance, low latency, and power efficiency, with the Cisco Nexus 3432D-S offering industry-leading performance-per-watt power efficiency at low latency1.


質問 # 55
Cisco IOS ソフトウェアを永続的に保存するために使用されるメモリのタイプはどれですか?

  • A. flash
  • B. DRAM
  • C. SRAM
  • D. NVRAM

正解:A

解説:
The type of memory used to store Cisco IOS Software permanently is flash memory. Flash memory is non-volatile, meaning it retains its content even after the device is powered down or restarted. It is commonly used in Cisco devices to store one or more Cisco IOS software images, as well as other files such as backup configuration files. This allows the device to reload the operating system after a reboot without the need to retransfer the IOS image


質問 # 56
ギガビットイーサネットポートは通常どのタイプの物理コネクタを使用しますか?

  • A. RJ-45
  • B. DB-25
  • C. RJ-9
  • D. RJ-11

正解:A


質問 # 57
......

最新の100-490日本語学習ガイド2025年最新の- 提供するのはテストエンジンとPDF:https://www.passtest.jp/Cisco/100-490J-shiken.html