| |
contents |
keyword |
|
Chapter 1 Program
structure and
how to describe |
 |
|
・Learning COBOL program definition and structure
of each part,
and how to describe programs. |
・IDENTIFICATION DIVISION
・ENVIRONMENT DIVISION
・DATA DIVISION
・PROCEDURE DIVISION |
 |
Chapter 2
Posting and
four arithmetic operations |
|
|
・Learning posting and four arithmetic operations
which are most frequently used in COBOL
language. |
・MOVE
・ADD
・SUBSTRACT
・MULTIPLY
・DIVIDE
・COMPUTE
・INITIALIZE
・STOP |
 |
Chapter 3 Condition and recursion |
|
|
・COBOL language enables various processes
by freely manipulating condition and recursion
other than
posting and four arithmetic operations |
・IF
・EVALUATE
・GO TO
・PERFORM |
 |
Chapter 4 Table operation |
|
|
・It is the most important technique in COBOL
language
to take advantage of "table" and freely manipulate
data.
Develop a thorough understanding of "table". |
・OCCURS PHRASE
・INDEXED DEFINITION
・SET STATEMENT
・REDEFINES PHRASE
・SEARCH STATEMENT (sequential table
lookup、dual table lookup) |
 |
| Chapter 5 String operation |
|
|
・COBOL language can maniputate various string
operations
such as string replacement, appearance
inspection, partial reference, etc. |
・PARTIAL REFERENCE
・INSPECT
・REPLACING
・STRING
・UNSTRING |
 |
|
・File operation is essential to process vast
quantities of data
where COBOL language's home ground.
Master file operation for sure
which is the basic function of COBOL language. |
<ENVIRONMENT DIVISION>
・SELECT PHRASE
・ORGANIZATION PHRASE
・ACCESS MODE PHRASE
・ASSIGN PHRASE
<DATA DIVISION>
・RECORD STRUCTURE
(FILE DESCRIPTOR(FD)
<PROCEDURE DIVISION>
・OPEN
・READ
・WRITE
・REWRITE
・DELETE
・START
・CLOSE |
|