Use the following commands to verify their operation in Cisco IOS:

a. What happens when you enter a ? at the switch# prompt?
b. What information is displayed when you enter show flash at the switch$ prompt?
c. What command can you use to view the switch’s uptime?
d. How long has the switch been up?
e. What version of the Cisco IOS software is running on this simulator?
f. What command can you use to view the past entries on this switch?
g. What happens when you press the up/down keys on your keyboard?


a. This will display the available commands in the privileged EXEC mode.
b.
```
Shows the version of flash installed and the Vlan.dat information.
SW1# show flash
1 drwx 192 Mar 1 1993 00:05:59 +00:00 c2960nm-lanbasek9-mz.122-
35.SE
2 -rwx 616 Mar 1 1993 00:20:08 +00:00 Vlan.dat
32514048 bytes total (13055488 bytes free)
Switch#
```
c.
```
SW1# show version
Cisco IOS Software, C2960 Software (C2960-LANBASEK9-M), 12.2(25)SEE2,
RELEASE SOFTWARE (fc1)
Copyright (c) 1986-2006 by Cisco Systems, Inc.
Compiled Fri 28-Jul-06 11:57 by yenanh
Image text-base: 0x00003000, data-base: 0x00BB7944
ROM: Bootstrap program is C2960 boot loader
BOOTLDR: C2960 Boot Loader (C2960-HBOOT-M) Version 12.2(25r)SEE1, RELEASE
SOFTWARE (fc1)
Switch uptime is 3116 hours,minutes 28
System returned to ROM by power-on
System image file is “flash:c2960-lanbase-mz.122-25.SEE2/c2960-lanbasek9-
mz.122-25.SEE2/c2960-lanbasek9-mz.122-25.SEE2.bin”
* *
* *
Configuration register is 0x2102
SW1#
```
d. Switch uptime is 3116 hours, 28 minutes.
e. Cisco IOS Software, C2960 Software (C2960-LANBASEK9-M), 12.2(25)SEE2,
RELEASE SOFTWARE (fc1)
f. SW1# show history
g. This lets you cycle through the previously entered commands.

Computer Science & Information Technology

You might also like to view...

Analyze the following two programs:

``` A: public class Test { public static void main(String[] args) { xMethod(5); } public static void xMethod(int length) { if (length > 1) { System.out.print((length - 1) + " "); xMethod(length - 1); } } } B: public class Test { public static void main(String[] args) { xMethod(5); } public static void xMethod(int length) { while (length > 1) { System.out.print((length - 1) + " "); xMethod(length - 1); } } } ``` a. The two programs produce the same output 5 4 3 2 1. b. The two programs produce the same output 1 2 3 4 5. c. The two programs produce the same output 4 3 2 1. d. The two programs produce the same output 1 2 3 4. e. Program A produces the output 4 3 2 1 and Program B prints 4 3 2 1 1 1 .... 1 infinitely.

Computer Science & Information Technology

If you do not assign a format to a cell or cells in a column, the column width will remain ____ characters.

A. 7 B. 8 C. 9 D. 10

Computer Science & Information Technology

Match the following terms to their meanings:

I. Standalone macro II. Condition III. Action IV. Macro V. Argument A. Series of actions grouped as a single command B. A self-contained instruction that can be combined with others to automate tasks C. An object that displays under Macros in the Navigation Pane D. A value that provides information to the action such as a specified condition E. Specifies that certain criteria must be met before the macro executes

Computer Science & Information Technology

The New Certificate Rule identifies software according to its signing ________

Fill in the blank(s) with correct word

Computer Science & Information Technology