what are difference organizations in cobol and access mode
in cobol? can you expalin what organization means while
declaring for ksds,esds,rrds?
Answer / ashok kumar reddy nagrimadugu
organization is a class which is to specify the type of file.
org'n can be sequential,indexed,relative.
acess mode is used to acess the records in
seqential,random,dynamic.
KSDS:org'n is indexed
ESDS:org'n is SEQUENTIAL
RRDS:org'n is ,relative.
Is This Answer Correct ? | 17 Yes | 0 No |
can we redefine 77 level item is it possible
I have a File that has duplicate records. I need only those records that occur more than thrice.?
what is the difference between occurs and occurs depending on? i dont think so there is the difference in storage..then why we should use occurs depending on?
What are various search techniques in cobol? Explain.
What is an in-line perform ?
What care has to be taken to force program to execute above 16 Meg line?
Give some examples of command terminators?
How to read the 2nd last record of a VSAM file? (The file size is huge and we don't know the key)
What is the difference between CALL BY VALUE and CALL BY CONTENT?
What should be the sorting order for SEARCH ALL?
What is the difference between SEARCH and SEARCH ALL?
how many times PARA-A is performed : PERFORM PARA-A VARYING TIMES-COUNTER FROM 1 BY 1 UNTIL TIMES-COUNTER >0 PARA-A MOVE P TO Q MOVE H TO TIMES COUNTER a.10 b.1 c.11 d.0