What are different file OPEN modes available in COBOL?
Answers were Sorted based on User's Feedback
In Sequential File Organization, File Opening Modes are
Output,I-O, input,extend.
In Indexed File Orgainsation, File Opening Modes are
Output,I-O, input
Is This Answer Correct ? | 13 Yes | 4 No |
why we are using set in searchall?
what if any ,is the syntex error in the following piece of code 01 B PIC A(7) 02 C PIC 9(4) ........ IF(B NUMERIC) ADD 10 TO C a.the condition in the if statement is wrong b.noting is wrong c.because C is initialised.ADD 10 TO C is wrong d.both B and C shoud have same size.
what is the difference between start and startbr?
What is IMPACT analysis?
COMP-3 field occupy ?
where did you see the information regarding abend codes in jcl?
S9(5)V9(2) occupies how many bytes memory ?
What does MAXCC 3 means? It is used in one my codes.
If a file has 1000 records.. if i have to replace the first and last characters of the file with another character. how it can be done....
I have a files containing both duplicate and non-duplicate records.The file is already sorted by a key.I want to determine those records that are duplicate and records that are non-duplicate.If duplicate the record is move to a duplicate file and if non-duplicate that will be move to valid file.thank you
WORKING-STORAGE SECTION. 01 VAR1 COMP-2 VALUE 0. PROCEDURE DIVISION. MOVE 10.2115 TO VAR1. DISPLAY 'VAR1 =' VAR1. GOBACK. 10.2115 is stored as .10211499999999996E 02 in OS VS Cobol 10.2115 is stored as .10211500000000000E 02 in ecobol. Any reason why?
How did the release of cobol/370 version 1.3 improve the performance of release 1.1?