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 |
what happens if parmparameter passes zero bytes to the program
what will happen if pass values more than 100 using PARM parameter?
How to get the last record in vsam file in cluster? And how can you get the ksds file records into your cobol program?
What is Alternate Index ? How is it different from regular index ?
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.
i made it to stage 3 of an interview process wednessday they will quiz my knowledge again face to face for an analyst role recruiter said it will be based on Business requirements system is cobol and good ideas what they might ask etc
How to covert given string into ASCII value in COBOL/MF COBOL
01rec1. 05 a pic 999v99 value 123.12 05 b pic 99v9 value 45.9 02 rec2. 05 x pic 999v99 05 y pic 99v99 05 z pic x(3) value 'abc' if rec1 is moved to rec2 then what is the value of rec2?
How to remove the spaces at the end of each record in the output file of variable length, via cobol program?
What do you understand by passing by reference and passing by content?
How To Separate The Numerics From An Alphanumric Data Item Which Contains Both Alphabates And Numerics ?
How To move a value to an array using move verb?