Skip to main content

DOS And Your Keyboard

Keyboards vary with the brand of computer. However, almost all computer keyboards have similarities. Here, the categories of keys used by computer keyboards are described.

Keyboard Layout    The keyboard layout of two typical personals computers are shown in Figure 1-1.

                                           Figure 1-1    Typical Keyboard Layout

Standard Typing Keys: The standard typing keys are the same as those used on a conventional typewriter. These include letter and number keys, the Tab key, and the Shift keys. The Shift key is used to type uppercase letters and the symbols above the upper row of number keys, just as soon as on a typewriter. The Caps Lock key lets you type in uppercase without pressing Shift key. When the Caps Lock is on, pressing Shift produces lowercase characters. There are also several special character keys available to you on the computer keyboard, such as the vertical bar, back slash, tilde, and grave(accent mark) symbols:

Description                                                     Symbols
Vertical Bar                                                          |
Back Slash                                                           \
Tilde                                                                    ~
Grave                                                                   `
Greater Than                                                       >
Less Than                                                            <
Open Bracket                                                       [
Close Bracket                                                       ]
Open Brace                                                          {
Close Brace                                                          }

Special Control Keys: Special control keys send special codes to your computer. These codes are used frequently to perform special (flashing bar or block) left,right,up or down. Some programs use the Ins and Del keys to insert and delete characters.

Expressions like Ctrl-X and Alt-X, where X is any keyboard character, indicate that the Ctrl or Alt key is pressed and held while the indicated characters key is typed. This is done in the same way that capital letters are typed using Shift key. Keystrokes that you press or type in procedures are boldfaced as in Ctrl-KB or Enter.

The ↲ key is used like a carriage return key on a typewriter to end a line or complete a command. "Enter" is used throughout this book.
There are also function keys F1 through F12 and other keys, such as Ins, Del, Num Lock, the Arrow keys, and more. Some keys are engraved with special symbols instead of words; use the following table to see how they are named in this book.

Symbols                                                             Key
    ↲                                                             Enter or <CR>
   ←                                                               Backspace
   ↹                                                                    Tab
   ⇑                                                                    Shift
   ↦                                                             Right Arrow 
   ↤                                                               Up Arrow
   ↑                                                                Up Arrow 
   ↓                                                              Down Arrow
 |____|                                                          Space bar
[F1]-[F12]                                       Function Key F1 through F12


Comments

Popular posts from this blog

Making, Changing, and Removing Directories

You used the DIR (directory) command in Section 3 to display a list of filenames on the screen. You can create and name multiple disk directories on a disk to allow for the subdivision of your files. This feature lets you group common files into separate directories. This is similar to subdividing information into file cabinet drawers and file folders. This is particularly convenient when you use a fixed disk containing hundreds or even thousands of files. Instead of listing all files in one directory, you can list files in smaller, more manageable sub directories. Lock at the following directory commands. Command                                      Purpose                   MKDIR or MD                                Make a new directory        ...

Filenames

It is important to understand DOS file naming conventions and their use. Here, filenames and some special filename "tools" called wild cards and literals are described. What is a File name?   Every program and data file is given a name to differentiate it from other programs and data files. A program is one or more computer instructions collected into a file. A data file is normally a collection of characters (or data) that make up a document, like a letter, or a database, like a collection of accounting transactions or customer records. Descriptive filenames are normally used. For example, if you create and save a letter to Mom, you might give it the filename MOM.LTR. A letter to Dad could be called DAD.LTR. A word processing program file might have the filename WP.COM. Examine these filenames a little closer. First, notice that each filename is meaningful. This is important if you want to know what is in a file by looking at its name. Obscure filenames are of little u...