It is important for an Auditor to have an understanding of basic computer information.

| [ Audit System Manual- TOC ] [ Ch 1 - Introduction ] [ Ch 2 - Preparing for an Audit ] [ Ch 3 - Conducting the Audit ] [ Ch 4 - Completing the Audit Forms and Schedules ] [ Ch 5 - Audit System Screens ] [ Ch 6 - Miscellaneous ] [ Ch 7 - USDOL - Tax Performance System ] [ Ch 8 - Computer Fundamentals & Hardware ] [ Appendix ] | |
| [ 8.1 - Computer Hardware ] [ 8.2 - Computer Fundamentals ] [8.3 - Computer Terminology ] | |
Chapter 8: Computer Fundamentals and Hardware |
comments to: Tax Department |
It is important for an Auditor to have an understanding of basic computer information.
The operating speed, storage capacity, number of support devices, and system capabilities are all different measurements of a computer. An Auditor will come across all types and sizes of computers from a PC (personal computer) to a large mainframe computer system.
There are three elements involved in processing records or data. They are input, processing, and
output.
INPUT. The data or source information entering the system to be processed by a computer. Input
may also be computer programs that will process the data.
PROCESSING. The orderly planned actions taken by the computer (sorting, classifying, calculating,
and other data operations) with the information or data that is entered into the system.
OUTPUT. The results of processed data or information. The output may be data, information,
or programs. The output may be sent to a diskette, CD, tape, or printer. It may be in an easily understood
format, or it may be put into a form acceptable as magnetic input for further processing.
Magnetic storage media for data may be a cartridge, tape, diskette, CD, hard disk.
Other types of storage media include microfilm, which is a photograph of documents or transactions,
and microfiche, which is a photograph of documents or transactions on small (4 inches x 4 inches)
plastic cards. Magnetic tape and cartridges are the principal input/output media on large mainframe
computers and diskettes.
Information on magnetic tape data is:
In EBCDIC coding, columns on magnetic tape may be magnetized in nine (tracks) areas denoting or
symbolizing a different character on each column. Each magnetized spot is considered a bit and a
set of magnetized bits on one column is one byte.
Data is stored in bytes. One thousand (1000) bytes are called one K. For example: 64k is the same
as 64000 bytes of memory.
Parity: Track number one (1) on magnetic tape is considered the parity check track. Parity may be "odd" or "even" and
controls the number of magnetized spots per byte. If information is stored in "even" parity
and a byte indicates an odd number of bits, then the computer is able to detect a problem in the
stored information.
ASCII and EBCDIC coding formats are the most commonly used. ASCII has seven tracks plus the parity
check track number one and is commonly utilized for diskettes. EBCDIC has eight tracks plus the parity
check track number one and is generally used on cartridges and magnetic tapes.
The definition of binary coding indicates the presence of two possible conditions.
Symbols convey information, but the symbol itself is not the information - it only represents something
that is information. Any method used to represent data is known as a code, or coding system. These
codes represent alphabetic, numeric, and special characters.
The binary system uses only two symbols, 0 and 1. The symbols are called bits which is short for
binary digits. The 0 represents the absence of an assigned value. The 1 represents the presence of
an assigned value.
The values of the binary digits are determined by their position in a multi-digit symbol. The designer
of the computer determines these values.
Types of Binary Coding
There are three basic types of binary coding that may be encountered when auditing a computerized
employer.
A picture clause is a description of a character and its position by a symbol representing the properties of the character.
A usage clause indicates the storage format of the data in each byte. The most common storage formats are display, computational, or computational-3.
ILLUSTRATION OF COMP-3 (PACKED FIELD) - Conversion of numeric data from Display format to Comp-3 format. The "F" indicates the hexadecimal symbol for a signed field. The positive number 1234567 is shown below.
Display (before conversion)
F 1 F 2 F 3 F 4 F 5 F 6 F7
Comp-3 (after conversion)
1 2 3 4 5 6 7 F
The example above illustrates that one byte before conversion can hold two characters, the sign symbol and the digit. When a field is converted to comp-3, all of the sign positions of the bytes are dropped except for the low-order sign which is the sign of the field. The digits are then packed into the sign blank positions resulting in a "Packed" field. The example shows the conversion of the number 1234567 to a "Packed" field format -from requiring seven bytes storage space to four bytes of storage space. The main purpose of a "Packed" field is to save on storage space.
An operating system is a collection of programs that allows a data processing system to supervise its own operations. It acts as a gatekeeper to automatically call its programs, routines, languages, and data as needed, so that there can be a continuous uninterrupted series of jobs.
An Auditor may encounter any of these types of operating systems.
JCL is a language used to write job-control statements that tell large computer systems what kind of jobs and job steps are to be run. The statements link the data and devices together for processing.
JCL is used to:
The different statements in the JCL are:
FB = Fixed Block.
FBA = Fixed Block ASA.
FMB = Fixed Block Machine.
VB = Variable Block.