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 |
Consider the following code: 77 A PIC 99V99 VALUE 55.35 77 B PIC 99V999 VALUE 32.754 ADD B TO A ON SIZE ERROR DISPLAY "ERROR!!!" What will be the result ? (a) A=88.10, B=32.754 (b) A=87.00 B=32.754 (c) A=87.10 B=32.754 (d) ERROR!!! will be DISPLAYed on the screen.
) How do you access the migrate the data from production region to development region
what is the use of keep and pass in disp
I have files that contains both duplicates files(occur more than twice) and non-duplicate files.The file is already sorted by a key.I want to determine those records that are duplicate and will be move to a duplicate file and non- duplicate files to be move to a valid file.thank you.help please
How to retain the Duplicates in the one records?
In an EVALUATE statement, can I give a complex condition on a when clause?
Suppose i have a Cobol field of 10 byte. it contains a decimal sign.How to know where is the point location?
have in 100 records in a flat file i want to move records like 1,3,5,7,9,11,.. to Output file1 and 2,4,6,8,10,12,14 .. records moved to Output file2..Pls Provide real time answer..
If we use GO BACK instead of STOP RUN in cobol?
How you can delete a record from a ps file in cobol?
What will happen if we move SPACES to numeric field and ZEROES to alphabetic field?
What is an in-line perform ?