Explain fixed length record in cobol? with suitable example
Answer / jai ho
Fixed length record can be created by giving
example
FD IN-FILE
RECORDING MODE IS F
RECORD CONTAINS M CHARACTERS
CORRECT ME
| Is This Answer Correct ? | 7 Yes | 0 No |
can we redefine 77 level item is it possible
Why we need to use redefine clause when we can define the variable seperately... what is actual need....
Explain how you can characterize tables in cobol?
What is an in-line perform ?
State the various causes of s0c1, s0c5 and s0c7.
What are the different rules to perform a Search?
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
created cluster using IDCAMS ..that is empty ..when i write a program for read using Input ..wil it open the cluster or gives any error?
whats the difference between search and search all?
What is rmode(24)
How can we increase the size of an existing PDS to include more no. of modules.
here is my requirement A1 is alphanumeric with value 'A1B2C3D4' as defined below 05 A1 PIC X(8) VALUE IS 'A1B2C3D4' but i need to have A2,A3 as ABCD & 1234 repectively...... A2 = ABCD A3 = 1234 Can you please explain me what are the different ways to do it?