ExamGecko
Home Home / Cisco / 100-490

Cisco 100-490 Practice Test - Questions Answers

Question list
Search
Search

Which type of port is used to connect a laptop to an Ethernet port on a Cisco router?

A.

rollover

A.

rollover

Answers
B.

fiber

B.

fiber

Answers
C.

straight-through

C.

straight-through

Answers
D.

crossover

D.

crossover

Answers
Suggested answer: C

Explanation:

Straight-through cables are the most common type of Ethernet cable. They're used to connect dissimilar devices, such as a laptop to a router or a switch to a router. The internal wiring of the cable connects the transmit pins on one end to the receive pins on the other end, and vice versa.

Crossover cables were historically necessary to connect similar devices (e.g., router to router, or switch to switch). Modern devices often have auto MDI-X capabilities, allowing them to automatically detect and adjust to straight-through or crossover connections as needed.

Rollover cables have a reversed pinout and are primarily used for console access into Cisco routers and switches.

Fiber cables use fiber optic technology for high-speed, long-distance connectivity.

Cisco Networking Academy: Introduction to Networks Course

Which Xmodem option is used to enhance error checking of an image that is copied to flash memory?

A.

-e

A.

-e

Answers
B.

-r

B.

-r

Answers
C.

-c

C.

-c

Answers
D.

-x

D.

-x

Answers
Suggested answer: C

Explanation:

The -c option in Xmodem file transfers is used to enable CRC (Cyclic Redundancy Check) for enhanced error checking. Here's why it's the correct answer:

Error Detection: CRC is a more robust error detection mechanism compared to the standard checksum method used in Xmodem. It provides greater reliability in identifying file corruption during the transfer.

Flash Memory: Since flash memory on a Cisco router or switch stores critical data like configuration files or the IOS image, ensuring the integrity of transferred files is crucial.

Why other options are incorrect:

-e, -r, -x: These are not standard Xmodem options for error checking purposes. While some implementations may have custom flags, they are not universally applicable.

Important Note: Xmodem is a legacy protocol that is often replaced by more reliable options like TFTP in modern Cisco devices. However, understanding Xmodem options is still relevant for certain cases or older equipment.

Xmodem overview: https://en.wikipedia.org/wiki/XMODEM

Cyclic Redundancy Check (CRC): https://en.wikipedia.org/wiki/Cyclic_redundancy_check

Which two pieces of information about a neighboring device are displayed when you the CLI command show cdp neighbor? (Choose two.)

A.

platform

A.

platform

Answers
B.

uptime

B.

uptime

Answers
C.

device ID

C.

device ID

Answers
D.

Cisco IOS Software version

D.

Cisco IOS Software version

Answers
E.

IP address

E.

IP address

Answers
Suggested answer: A, C

Explanation:

Theshow cdp neighborcommand on Cisco devices displays various pieces of information about directly connected neighboring devices that support Cisco Discovery Protocol (CDP).Two key pieces of information displayed by this command are theplatformof the neighboring device, which indicates the hardware type, and thedevice ID, which is typically the hostname of the device1. The command does not display the uptime or the Cisco IOS Software version; these details can be seen with theshow cdp neighbor detailcommand.The IP address is also part of the detailed information and not displayed in the standardshow cdp neighboroutput1.

Which type of custom scripting has Cisco NX-OS added to help manage user networks?

A.

C++

A.

C++

Answers
B.

Collective

B.

Collective

Answers
C.

SQL

C.

SQL

Answers
D.

Python

D.

Python

Answers
Suggested answer: D

Explanation:

Cisco NX-OS has added support for Python scripting to help manage user networks. Python is a powerful and versatile scripting language that is widely used for automation tasks, including network management. Cisco NX-OS leverages Python to enable network administrators to write custom scripts and programs that can interact with the network operating system, automate repetitive tasks, and integrate with other systems and APIs. This support for Python scripting is part of Cisco's commitment to network programmability and automation, allowing for more efficient and flexible network operations12.

Which command displays the configuration register setting?

A.

show flash

A.

show flash

Answers
B.

show running-config

B.

show running-config

Answers
C.

show version

C.

show version

Answers
D.

show config-register

D.

show config-register

Answers
Suggested answer: C

Explanation:

The show version command on Cisco devices provides a variety of system information, including:

Cisco IOS version: The version of the Cisco IOS software running on the device.

Boot image: The location of the IOS image used during startup.

Hardware information: Model, processor type, memory details.

Interfaces: A list of the device's interfaces.

Configuration register: The current value of the configuration register, typically displayed near the end of the output.

Why other options are incorrect:

show flash: Displays the contents of flash memory, but not the configuration register.

show running-config: Displays the currently active configuration, but the configuration register setting is not directly part of the running configuration.

show config-register: This is not a standard Cisco IOS command.

Which type of memory is used to store Cisco IOS Software permanently?

A.

NVRAM

A.

NVRAM

Answers
B.

flash

B.

flash

Answers
C.

SRAM

C.

SRAM

Answers
D.

DRAM

D.

DRAM

Answers
Suggested answer: B

Explanation:

The type of memory used to store Cisco IOS Software permanently isflash 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

What is the default operating mode when you initially log in to a router?

A.

user EXEC

A.

user EXEC

Answers
B.

global configuration

B.

global configuration

Answers
C.

privileged EXEC

C.

privileged EXEC

Answers
D.

ROM monitor

D.

ROM monitor

Answers
Suggested answer: A

Explanation:

When you initially log in to a Cisco router, the default operating mode isuser EXEC mode. This mode provides a limited set of basic monitoring commands but does not allow for any configuration changes to the router's settings. To make configuration changes, you must enterprivileged EXEC mode(often accessed by theenablecommand), which offers a wider range of commands that allow for the viewing and modification of the configurationGlobal configuration modeis accessed from privileged EXEC mode to modify the router's configuration, andROM monitor modeis a low-level mode used mainly for recovery purposes1.

What are the choices for modes of operation when deploying Cisco Catalyst 3850 Series switches?

A.

Active mode and Standby mode

A.

Active mode and Standby mode

Answers
B.

Install mode and Bundle mode

B.

Install mode and Bundle mode

Answers
C.

Boot mode and Run mode

C.

Boot mode and Run mode

Answers
D.

Exec mode and User mode

D.

Exec mode and User mode

Answers
Suggested answer: B

Explanation:

When deploying Cisco Catalyst 3850 Series switches, there are two modes of operation to choose from: Install mode and Bundle mode. Install mode is the default mode for the switch and uses a package-provisioning file named packages.conf to boot the switch. It allows for a more complete set of features and requires fewer resources upon boot1. Bundle mode, on the other hand, is similar to using traditional monolithic Cisco IOS images to boot the switch. It consumes more memory than Install mode because the packages are extracted from the bundle and copied to the RAM2. Cisco recommends using Install mode for operation due to its efficiency and feature set2.

Which command displays a list of file systems that are available on Cisco devices?

A.

show memory

A.

show memory

Answers
B.

show directory

B.

show directory

Answers
C.

show file system

C.

show file system

Answers
D.

show version

D.

show version

Answers
Suggested answer: C

Explanation:

The commandshow file systemis used on Cisco devices to display a list of all the file systems available. This command provides information about each file system, including its name, size, free space, and file system type (such as flash or nvram). It's a useful command for network administrators to manage and navigate through different storage areas on Cisco devices, ensuring they can access and maintain the device's file structure effectively.Reference:=File System Commands on Cisco IOS XR Software - Cisco,Working with the Cisco IOS File System, Configuration Files, and Software Images

Which two pieces of information are displayed when the show ip interface brief command is used? (Choose two.)

A.

Layer 2 address

A.

Layer 2 address

Answers
B.

keepalive

B.

keepalive

Answers
C.

Layer 3 address

C.

Layer 3 address

Answers
D.

encapsulation type

D.

encapsulation type

Answers
E.

interface status

E.

interface status

Answers
Suggested answer: C, E

Explanation:

The show ip interface brief command provides a concise summary of the status and IP addressing configuration of interfaces on a Cisco router or switch. Here's what it displays:

Interface: The name of the interface (e.g., FastEthernet0/0, GigabitEthernet1/1).

IP Address: The Layer 3 IP address assigned to the interface (if any).

OK? Indicates the IP layer status of the interface (YES if operational, NO if not).

Method: How the IP address was configured (manual or DHCP).

Status: The Layer 1 status of the interface (up or down).

Protocol: The Layer 2 status of the interface (up or down).

Why other options are incorrect:

Layer 2 address: The show ip interface brief command does not directly display Layer 2 (MAC) addresses. You can use the show interface <interface-name> command for that.

Keepalive: Keepalives are used in some routing protocols but are not generally reflected in the output of the show ip interface brief command.

Encapsulation type: Encapsulation information is also not typically included in the show ip interface brief output.

Cisco IOS show ip interface brief command: [invalid URL removed]

Example output of show ip interface brief: https://www.cisco.com/E-Learning/bulk/public/tac/cim/cib/using_cisco_ios_software/cmdrefs/show_ip_interface.

Total 72 questions
Go to page: of 8