Tagged Questions

COBOL 85 is a revision of ANSI COBOL 74 standard.

learn more… | top users | synonyms

24
votes
6answers
3k views

How can duplicates be removed from a file using COBOL?

The input file have records as: 8712351,8712353,8712353,8712354,8712356,8712352,8712355 8712352,8712355 Using COBOL I need to remove duplicates from the above file and write to an output file. I ...
8
votes
6answers
3k views

Why does COBOL have both `SECTION` and `PARAGRAPH`?

Why does COBOL have both SECTION and PARAGRAPH? Can anybody explain why the designers of COBOL created both SECTIONs and PARAGRAPHs? These have been around since the initial release of COBOL so I ...
5
votes
3answers
378 views

Is there a free/demo version of COBOL with multi-user support?

I have been using COBOL 85 for a long time, including work with merging COBOL and Z80 assembly. However traditional COBOL doesn't support multi-user/shareable (ie can run concurrently from various ...
1
vote
1answer
368 views

Dynamic READ …RECORD INVALID KEY not working properly in COBOL. How to fix it?

A Cobol program with file-control like so: SELECT D-FLAT-FILE ASSIGN TO DFLAT-FILE ORGANIZATION IS INDEXED ACCESS MODE IS SEQUENTIAL FILE STATUS IS RECORD-STAT RECORD KEY ...
0
votes
3answers
466 views

How do I prevent a Cobol program from going into an infinite loop if no match found on 2 flat files?

A Cobol program reads a record from a first flat file and compares it to the first record on a second flat file. However, because the first record from the first flat file does not match any records ...
0
votes
0answers
110 views

i want a program which displays 1 t0 100 numbers using arrays and perform in cobol [closed]

please give me the answer as fast as possible....
0
votes
3answers
771 views

Fujitsu COBOL 3.0

I'm new to Fujitsu COBOL 3.0 software. I tried executing a simple program. The code and errors are as follows. Everything in program appears to be correct. Can anyone help me out? Any ...