Introduction to Cobol Programming
I. Course Prefix/Number: CIS 123
Course Name: Introduction to Cobol Programming
Credits: 4 (3 lecture; 2 lab)
II. Prerequisite
Recommended: CIS 101 and CSC 155 or CSC 156 or comparable programming knowledge.
III. Course (Catalog) Description
Course introduces programming using the COBOL programming language to solve business related problems. Content includes program development and design using arithmetic calculations, decision making, looping, reports, subroutines, data validation and sequential file systems.
IV. Learning Objectives
Upon completion of this course, the student will be able to demonstrate proficiency in the COBOL language by writing programs for a wide variety of
business data processing applications. The programs will be efficiently structured, using the techniques of subroutines and modular design.
Specifically, the types of problems to be solved are:
The student will be able to process data using both unit record and mass storage devices. In addition he/she will be able to explain:
Finally, (s)he will be able to debug problem programs with the aid of the COBOL debugging tools, and prepare complete, comprehensible documentation.
- Report listings with headings and totals
- Multilevel total reports
- Single and multilevel tables - using subscripting
- Elementary multi-file input reports
The student will be able to process data using both unit record and mass storage devices. In addition he/she will be able to explain:
- The functions and purpose of all the divisions of a COBOL program.
- The different types of internal data representation and the advantage of each.
- The relationships of symbolic device assignments within the COBOL program to the operating system being used.
Finally, (s)he will be able to debug problem programs with the aid of the COBOL debugging tools, and prepare complete, comprehensible documentation.
V. Academic Integrity
Students and employees at Oakton Community College are required to demonstrate academic integrity
and follow Oakton's Code of Academic Conduct. This code prohibits:
• cheating,
• plagiarism (turning in work not written by you, or lacking proper citation),
• falsification and fabrication (lying or distorting the truth),
• helping others to cheat,
• unauthorized changes on official documents,
• pretending to be someone else or having someone else pretend to be you,
• making or accepting bribes, special favors, or threats, and
• any other behavior that violates academic integrity.
There are serious consequences to violations of the academic integrity policy. Oakton's policies and procedures provide students a fair hearing if a complaint is made against you. If you are found to have violated the policy, the minimum penalty is failure on the assignment and, a disciplinary record will be established and kept on file in the office of the Vice President for Student Affairs for a period of 3 years.
Details of the Code of Academic Conduct can be found in the Student Handbook.
• cheating,
• plagiarism (turning in work not written by you, or lacking proper citation),
• falsification and fabrication (lying or distorting the truth),
• helping others to cheat,
• unauthorized changes on official documents,
• pretending to be someone else or having someone else pretend to be you,
• making or accepting bribes, special favors, or threats, and
• any other behavior that violates academic integrity.
There are serious consequences to violations of the academic integrity policy. Oakton's policies and procedures provide students a fair hearing if a complaint is made against you. If you are found to have violated the policy, the minimum penalty is failure on the assignment and, a disciplinary record will be established and kept on file in the office of the Vice President for Student Affairs for a period of 3 years.
Details of the Code of Academic Conduct can be found in the Student Handbook.
VI. Sequence of Topics
A. Basic composition of a COBOL Program
1. Structure
a. Division
b. Sections
c. Paragraphs
d. Sentences
2. Organization of elements
3. Purpose of each element
B. Program Design
1. Structured/modular program design
a. Building subroutines
b. Using indicators (flags)
2. An introduction to linear design
C. Problem Classifications
1. Creating reports with title lines and page breaks
2. Data validation
3. Output editing
4. Control Breaks - single and multilevel
5. Table handling - single and multilevel tables using subscripting
6. Multi input file merging
D. Documentation
1. Systems flowchart
2. Program flowchart
3. Problem definition
4. Processing information
5. Input/output layout forms
E. Debugging Techniques
1. Using debugging statement within the program
2. Using the COBOL debugging options (CBL statement)
F. Introduction to the Operating System
1. Relationship of COBOL STATEMENTS TO I/O device assignments
2. Using the System libraries
3. Program execution
G. Data Representation and Storage descriptions
1. Internal date representation
a. Display format
b. Computational-3 format
c. Types of data
1) Alpha
2) Alphanumeric
3) numeric
4) signed numbers
2. Data description
a. Levels of data - 01; 77; 88
b. Value clause
3. Storage layout
a. Group items
b. Elementary items
c. Redefines
d. Occurs
H. Instructions for the Procedure Division
1. Imperative
a. Input/output instructions
1) open
2) close
3) read - read into
4) write - write from
a) advancing option
b) positioning option
c) invalid - for use with mass storage files
5) accept
6) display
b. Arithmetic operations
1) add
2) subtract
3) multiply
4) divide
5) compute
6) 'on size error' clause
7) 'rounding' option
c. Data manipulation
1) move - move corresponding
2) Inspect - tallying/replacing
d. Procedure branching
1) perform
a) perform # times
b) perform thru
c) perform until
d) perform varying
2) go to
e. Debugging
1) ready trace
2) reset trace
3) exhibit
a) named clause
b) changed clause
2. Conditional - The 'IF' statement
a. simple 'if'
b. nested 'if s'
c. using logical operators
1) and
2) or
3) not
1. Structure
a. Division
b. Sections
c. Paragraphs
d. Sentences
2. Organization of elements
3. Purpose of each element
B. Program Design
1. Structured/modular program design
a. Building subroutines
b. Using indicators (flags)
2. An introduction to linear design
C. Problem Classifications
1. Creating reports with title lines and page breaks
2. Data validation
3. Output editing
4. Control Breaks - single and multilevel
5. Table handling - single and multilevel tables using subscripting
6. Multi input file merging
D. Documentation
1. Systems flowchart
2. Program flowchart
3. Problem definition
4. Processing information
5. Input/output layout forms
E. Debugging Techniques
1. Using debugging statement within the program
2. Using the COBOL debugging options (CBL statement)
F. Introduction to the Operating System
1. Relationship of COBOL STATEMENTS TO I/O device assignments
2. Using the System libraries
3. Program execution
G. Data Representation and Storage descriptions
1. Internal date representation
a. Display format
b. Computational-3 format
c. Types of data
1) Alpha
2) Alphanumeric
3) numeric
4) signed numbers
2. Data description
a. Levels of data - 01; 77; 88
b. Value clause
3. Storage layout
a. Group items
b. Elementary items
c. Redefines
d. Occurs
H. Instructions for the Procedure Division
1. Imperative
a. Input/output instructions
1) open
2) close
3) read - read into
4) write - write from
a) advancing option
b) positioning option
c) invalid - for use with mass storage files
5) accept
6) display
b. Arithmetic operations
1) add
2) subtract
3) multiply
4) divide
5) compute
6) 'on size error' clause
7) 'rounding' option
c. Data manipulation
1) move - move corresponding
2) Inspect - tallying/replacing
d. Procedure branching
1) perform
a) perform # times
b) perform thru
c) perform until
d) perform varying
2) go to
e. Debugging
1) ready trace
2) reset trace
3) exhibit
a) named clause
b) changed clause
2. Conditional - The 'IF' statement
a. simple 'if'
b. nested 'if s'
c. using logical operators
1) and
2) or
3) not
VII. Methods of Instruction
Methods of presentation include lecture and class discussion covering the syntactical rules of COBOL as well as the COBOL instruction set.
Course may be taught as face-to-face, media-based, hybrid or online course.
Course may be taught as face-to-face, media-based, hybrid or online course.
VIII. Course Practices Required
Designing, coding, testing, and debugging at least 6 programs, using on-line terminals. Taking quizzes/exams as required by the individual instructor. Creating at least 3 sets of written documentation.
IX. Instructional Materials
Please contact program coordinator for book information.
X. Methods of Evaluating Student Progress
Evaluation of programming assignments demonstrating typical business oriented problems, evaluation of documentation, and grades on quizzes/exams.
XI. Other Course Information
Course - ID changed from DPR 123 to CIS 123, Fall, 1992
If you have a documented learning, psychological, or physical disability you may be entitled to reasonable academic accommodations or services. To request accommodations or services, contact the ASSIST office in the Learning Center. All students are expected to fulfill essential course requirements. The College will not waive any essential skill or requirement of a course or degree program.
If you have a documented learning, psychological, or physical disability you may be entitled to reasonable academic accommodations or services. To request accommodations or services, contact the ASSIST office in the Learning Center. All students are expected to fulfill essential course requirements. The College will not waive any essential skill or requirement of a course or degree program.















